@charset "UTF-8";
.fadeIn {
  opacity: 0;
}
.fadeIn.inview {
  transition: opacity 0.5s ease-in-out 0.1s;
  opacity: 1;
}
.fadeInUp {
  opacity: 0;
  transform: translateY(30px);
}
.fadeInUp.inview {
  transition: transform 1.5s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.5s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}
@keyframes maniStamp {
  0% {
    opacity: 0;
    transform: rotate(-10deg) translate(30px, -30px) scale(1.1);
  }
  40% {
    opacity: 1;
    transform: rotate(0) translate(30px, -30px) scale(1.2);
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes prdTextAnimation {
  0% {
    opacity: 0;
    transform: rotate(0) translate(30px, 30px) scale(1.1);
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes clipTpRight {
  0% {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
  }
  to {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes clipTpLeft {
  0% {
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  to {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes clipToBottom {
  0% {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0%, 0% 0%);
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0% 0%);
  }
  to {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes clipTpRightScale {
  0% {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
    transform: scale(1.3);
  }
  to {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transform: scale(1);
  }
}
@keyframes arrowBottom {
  0% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(4px);
  }
  to {
    transform: translateY(-2px);
  }
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes scaleUpLg {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  to {
    transform: scale(1);
  }
}
@keyframes shineAnimation {
  0% {
    opacity: 0;
    transform: translateZ(0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateZ(0) scale(1.2);
  }
  to {
    opacity: 0;
    transform: translateZ(0) scale(1);
  }
}
@keyframes shineAnimationSmall {
  0% {
    opacity: 0;
    transform: translateZ(0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateZ(0) scale(1);
  }
}
@keyframes maniStamp {
  0% {
    opacity: 0;
    transform: rotate(-10deg) translate(30px, -30px) scale(1);
  }
  40% {
    opacity: 1;
    transform: rotate(0) translate(30px, -30px) scale(1.05);
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes maniStampRev {
  0% {
    opacity: 0;
    transform: rotate(10deg) translate(-30px, -30px) scale(1.1);
  }
  40% {
    opacity: 1;
    transform: rotate(0) translate(-30px, -30px) scale(1.2);
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes storeBound {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1);
  }
  65% {
    transform: scale(1.05);
  }
  95% {
    transform: scale(1);
  }
  to {
    transform: scale(1);
  }
}
body {
  background-color: #fff100;
  z-index: 2;
  position: relative;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #231815;
  line-height: 1.6;
}
* {
  box-sizing: border-box;
  margin: 0;
  font-feature-settings: "palt" 1;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}
.pc_only_flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .pc_only_flex {
    display: none !important;
  }
}
.vjs-waiting {
  visibility: hidden;
  background: transparent;
}
.vjs-loading-spinner {
  display: none !important;
}
.fes-header {
  position: fixed;
  top: 0;
  background: white;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 17px 3vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(-100%);
}
@media screen and (max-width: 768px) {
  .fes-header {
    padding: 10px 3vw;
  }
}
.fes-header__list {
  display: flex;
}
.fes-header__item {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .fes-header__item {
    font-size: 12px;
  }
}
.fes-header__item:not(:first-child) {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .fes-header__item:not(:first-child) {
    margin-left: 14px;
  }
}
.fes-header__logo {
  width: 85px;
}
@media screen and (max-width: 768px) {
  .fes-header__logo {
    width: 60px;
  }
}
.fes-header__logo img {
  display: block;
}
.fes-header.inview {
  transform: none;
}
.osaka-2024 {
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .osaka-2024 {
    padding-top: 45px;
  }
}
.fv-fes {
  position: relative;
}
.fv-fes__img {
  height: 56.25vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv-fes__img {
    height: auto;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
  }
}
.fv-fes__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.fv-fes-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  gap: 4vw;
}
@media screen and (max-width: 768px) {
  .fv-fes-main {
    position: relative;
    flex-direction: column;
    row-gap: 10vw;
    padding-top: 12vw;
    padding-bottom: 10vw;
    top: 0;
    left: 0;
    transform: translate(0);
  }
}
.fv-fes-main__img {
  width: 35vw;
}
@media screen and (max-width: 768px) {
  .fv-fes-main__img {
    width: 73vw;
    margin-left: auto;
    margin-right: auto;
  }
}
.fes-about {
  position: relative;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .fes-about {
    padding: 60px 0;
  }
}
.fes-about__illust {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 45px;
}
.fes-about__content {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .fes-about__content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.fes-about__head {
  font-size: 34px;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .fes-about__head {
    font-size: 6vw;
    line-height: 1.4;
  }
}
.fes-about__desc {
  font-size: 18px;
  margin-top: 30px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .fes-about__desc {
    font-size: 4vw;
    line-height: 2;
  }
}
.desc {
  background: #fff;
  padding: 40px 0;
}
.desc-company-group {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .desc-company-group {
    display: block;
  }
}
.desc-company-head {
  font-size: 1rem;
  text-align: center;
}
.desc-company-head span {
  border: 2px solid black;
  border-radius: 30px;
  padding: 0 12px;
}
.desc .desc-company-item .desc-logo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.desc .desc-company-item .desc-logo-item.meetele img {
  height: 50px;
}
.desc .desc-company-item .desc-logo-item.nagoya img {
  height: 60px;
}
.desc .desc-company-item .desc-logo-item.aichi img {
  height: 70px;
}
.desc .desc-company-item .desc-logo-item.osakashi img {
  height: 50px;
}
@media screen and (max-width: 768px) {
  .desc .desc-company-item .desc-logo-item {
    margin: 3vw 5vw;
  }
  .desc .desc-company-item .desc-logo-item.play img,
  .desc .desc-company-item .desc-logo-item.design img {
    height: 20vw;
  }
  .desc .desc-company-item .desc-logo-item.meetele img {
    height: 13vw;
  }
  .desc .desc-company-item .desc-logo-item.nagoya img {
    height: 18vw;
  }
  .desc .desc-company-item .desc-logo-item.aichi img {
    height: 22vw;
  }
  .desc .desc-company-item .desc-logo-item.osakashi img {
    height: 18vw;
  }
}
.desc .desc-company-item .desc-logo-item:not(:first-child) {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .desc .desc-company-item .desc-logo-item:not(:first-child) {
    margin: 3vw 5vw;
  }
}
.desc .desc-company-item .desc-logo-item img {
  height: 60px;
  mix-blend-mode: darken;
}
@media screen and (max-width: 768px) {
  .desc .desc-company-item .desc-logo-item img {
    height: 17vw;
  }
}
.desc .desc-company-item:not(:first-child) {
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  .desc .desc-company-item:not(:first-child) {
    margin-left: 0;
    margin-top: 6vw;
  }
}
.fes-info {
  position: relative;
}
@media screen and (min-width: 769px) {
  .fes-info {
    padding-top: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-info {
    padding-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .fes-info {
    padding-top: 14vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-info {
    padding-top: 16vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-info {
    padding: 30px 0;
  }
}
.fes-info__button {
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  background: white;
  margin-top: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  border-radius: 100px;
}
.fes-info__button-wrap {
  text-align: center;
  margin-top: 30px;
}
.fes-info__button .tri {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #000;
  margin-right: 6px;
}
@media screen and (max-width: 768px) {
  .fes-info__button {
    font-size: 15px;
  }
}
.fes-info__rain {
  margin-top: 20px;
  font-size: 15px;
}
.fes-info__inner {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.fes-info__block:nth-child(1) {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .fes-info__block:nth-child(1) {
    width: 100%;
  }
}
.fes-info__block:nth-child(2) {
  margin-left: 10%;
  width: 45%;
}
@media screen and (max-width: 768px) {
  .fes-info__block:nth-child(2) {
    margin-left: 0;
    width: 100%;
    margin-top: 30px;
  }
}
.fes-info__block:nth-child(3) {
  width: 70%;
  background: white;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .fes-info__block:nth-child(3) {
    width: 100%;
    margin-top: 40px;
  }
}
.fes-info__block:nth-child(4) {
  width: 70%;
  background: white;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .fes-info__block:nth-child(4) {
    width: 100%;
    margin-top: 30px;
  }
}
.fes-info__head {
  font-size: 20px;
  padding-bottom: 6px;
  border-bottom: 2px solid #000;
}
.fes-info__name {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .fes-info__name {
    font-size: 24px;
  }
}
.fes-info__content {
  margin-top: 20px;
}
.fes-info__desc {
  font-size: 18px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .fes-info__desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  .fes-info__desc {
    gap: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-info__desc {
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .fes-info__desc {
    gap: 3.5vw;
  }
}
.fes-info__pic {
  margin-top: 20px;
  position: relative;
}
.fes-info__pic:before {
  content: "";
  display: block;
  padding-top: 60%;
}
.fes-info__pic iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.fes-info-covid {
  text-align: center;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .fes-info-covid {
    padding: 30px 0;
    font-size: 18px;
  }
}
.fes-info-covid__button {
  text-align: center;
  margin-top: 16px;
  width: 90%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.fes-info-covid__button .tri {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #000;
  margin-right: 6px;
}
.fes-info-covid__button a {
  font-size: 18px;
  background: #fff100;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  .fes-info-covid__button a {
    font-size: 14px;
  }
}
.fes-prj {
  position: relative;
  padding: 60px 0 100px;
}
@media screen and (max-width: 768px) {
  .fes-prj {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
.fes-prj .splide {
  padding: 0;
  margin: 0;
}
.fes-prj .splide-arrow {
  position: absolute;
  top: 46%;
  z-index: 10;
}
.fes-prj .splide-arrow-next {
  right: -20px;
}
.fes-prj .splide-arrow-prev {
  left: -20px;
}
.fes-prj__logos {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .fes-prj__logos {
    margin-top: 15vw;
  }
}
.fes-prj__inner {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .fes-prj__inner {
    width: 86%;
  }
}
.fes-prj__content {
  background: #fff;
  border-radius: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .fes-prj__content {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
.fes-prj__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .fes-prj__top {
    flex-direction: column;
    width: 86%;
  }
}
.fes-prj__icon {
  width: 26%;
}
@media screen and (max-width: 768px) {
  .fes-prj__icon {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .fes-prj__info {
    width: 94%;
  }
}
.fes-prj__head {
  font-size: 20px;
  text-align: center;
  border-bottom: 2px solid #000;
  width: 88%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .fes-prj__head {
    font-size: 5vw;
    width: 100%;
    padding-bottom: 3vw;
  }
}
.fes-prj__head span {
  background: #fff;
}
.fes-prj__desc {
  font-size: 15px;
  margin-top: 20px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .fes-prj__desc {
    font-size: 3.8vw;
    width: 100%;
  }
}
.fes-prj__pic {
  justify-content: space-between;
  flex-wrap: wrap;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fes-prj__pic {
    width: 100%;
  }
}
.fes-prj__pic img {
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .fes-prj__pic img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.fes-prj .common-moshimo-button {
  padding: 10px 50px;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .fes-prj .common-moshimo-button {
    font-size: 3.5vw;
  }
}
.fes-prj .common-moshimo-button-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  gap: 30px;
}
.common-moshimo-button {
  margin-left: auto;
  margin-right: auto;
  font-size: 22px;
  background: #fff100;
  margin-top: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 100px;
}
.common-moshimo-button-wrap {
  text-align: center;
}
.common-moshimo-button .tri {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #000;
  margin-right: 6px;
}
@media screen and (max-width: 768px) {
  .common-moshimo-button {
    font-size: 18px;
  }
}
.fes-prj-2 {
  position: relative;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .fes-prj-2 {
    padding: 40px 0 60px;
  }
}
.fes-prj-2__inner {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .fes-prj-2__inner {
    width: 85%;
  }
}
.fes-prj-2__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .fes-prj-2__content {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.fes-prj-2__pic {
  width: 45%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fes-prj-2__pic {
    order: 1;
    width: 100%;
    padding-top: 30px;
  }
}
.fes-prj-2__pic img {
  display: block;
  width: 55%;
  margin-left: auto;
  margin-right: 20%;
}
@media screen and (max-width: 768px) {
  .fes-prj-2__pic img {
    width: 70%;
    margin-right: auto;
  }
}
.fes-prj-2__info {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .fes-prj-2__info {
    order: 2;
    width: 100%;
  }
}
.fes-prj-2__head {
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .fes-prj-2__head {
    text-align: center;
  }
}
.fes-prj-2__head span {
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
}
.fes-prj-2__copy {
  font-size: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .fes-prj-2__copy {
    font-size: 5.5vw;
    margin-top: 30px;
  }
}
.fes-prj-2__copy span {
  background: #fff;
}
.fes-prj-2__desc {
  font-size: 15px;
  margin-top: 20px;
}
.fes-prj-2__desc::v-deep a {
  text-decoration: underline;
}
.fes-prj-2__pics {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .fes-prj-2__pics {
    margin-top: 30px;
  }
}
.fes-prj-2__item:not(:first-child) {
  margin-top: 20px;
}
.fes-prj-2__picHead span {
  border-bottom: 2px solid #000;
  padding-bottom: 3px;
}
.fes-prj-2__picList {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .fes-prj-2__picList {
    flex-wrap: wrap;
  }
}
.fes-prj-2__picItem {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .fes-prj-2__picItem {
    width: 100%;
  }
  .fes-prj-2__picItem:not(:first-child) {
    margin-top: 14px;
  }
}
.font-noto {
  font-family: Noto Sans JP, sans-serif;
}
.font-noto__Medium {
  font-weight: 500;
}
.font-noto__Bold {
  font-weight: 700;
}
.font-noto__Heavy {
  font-weight: 900;
}
.font-maru {
  font-family: Zen Maru Gothic, sans-serif;
  font-weight: 700;
}
.a1-bold {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 900;
}
img {
  max-width: 100%;
}
.nagoya-contents {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .nagoya-contents {
    padding-top: 45px;
  }
}
.nagoya-contents .table {
  padding-bottom: 40px;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .nagoya-contents .table {
    padding-bottom: 0;
    padding-top: 45px;
  }
}
.nagoya-contents .table__inner {
  max-width: 1000px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .nagoya-contents .table__inner {
    width: 90%;
  }
}
.nagoya-contents .table__head {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .nagoya-contents .table__head {
    line-height: 2;
  }
}
.nagoya-contents .table__head span {
  background: white;
  font-size: 28px;
  padding: 7px 13px;
}
@media screen and (max-width: 768px) {
  .nagoya-contents .table__head span {
    font-size: 20px;
  }
}
.nagoya-contents .table__content {
  background: #fff;
  border-radius: 30px;
  margin-top: 45px;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .nagoya-contents .table__content {
    border-radius: 15px;
    padding: 6vw;
    margin-top: 10vw;
  }
}
.nagoya-contents .table__content img {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .nagoya-contents .table__content img {
    width: 100%;
  }
}
.nagoya-contents .table__content .coming {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}
.nagoya-contents .table__content .coming:before {
  content: "";
  padding-top: 120%;
  display: block;
}
@media screen and (max-width: 768px) {
  .nagoya-contents .table__content .coming:before {
    padding-top: 160%;
  }
}
@media screen and (max-width: 768px) {
  .nagoya-contents .table__content .coming {
    font-size: 7vw;
  }
}
.nagoya-contents .report-button {
  max-width: 350px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 27px;
  background: white;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 100px;
}
.nagoya-contents .report-button .tri {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #000;
  margin-right: 6px;
}
@media screen and (max-width: 768px) {
  .nagoya-contents .report-button {
    font-size: 22px;
  }
}
.map {
  padding-bottom: 0;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .map {
    padding-bottom: 0;
    padding-top: 45px;
  }
}
.map-image {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .map-image {
    overflow: scroll;
    width: 100%;
    padding-top: 0;
  }
}
.map-image .coming {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}
@media screen and (max-width: 768px) {
  .map-image .coming {
    font-size: 7vw;
  }
}
.map-image .coming:before {
  content: "";
  padding-top: 120%;
  display: block;
}
@media screen and (max-width: 768px) {
  .map-image .coming:before {
    padding-top: 160%;
  }
}
.map-image img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .map-image img {
    padding: 0;
  }
}
.map__inner {
  max-width: 1000px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .map__inner {
    width: 90%;
  }
}
.map__head {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .map__head {
    line-height: 2;
  }
}
.map__head span {
  background: white;
  font-size: 28px;
  padding: 7px 13px;
}
@media screen and (max-width: 768px) {
  .map__head span {
    font-size: 20px;
  }
}
.map__pic {
  max-width: 700px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 43px;
  height: 400px;
  background: #ccc;
}
@media screen and (max-width: 768px) {
  .map__pic {
    margin-top: 30px;
    height: 200px;
  }
}
.map__content {
  background: #fff;
  border-radius: 30px;
  margin-top: 45px;
  padding-bottom: 40px;
  padding-top: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .map__content {
    margin-top: 10vw;
    border-radius: 15px;
    padding: 6vw;
  }
}
.map__content img {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .map__content img {
    width: 100%;
  }
}
.map__logos {
  background: #fff;
  border-radius: 30px;
  margin-top: 85px;
  padding-bottom: 40px;
  padding-top: 40px;
  position: relative;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .map__logos {
    margin-top: 20vw;
    border-radius: 15px;
    padding-left: 6vw;
    padding-right: 6vw;
    padding-top: 6vw;
  }
}
.map__logos img {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.map__info {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}
.map__text {
  width: calc(100% - 160px);
  text-align: center;
  color: #c4c4c4;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .map__text {
    font-size: 7vw;
    width: 100%;
  }
}
.map__illust {
  width: 140px;
}
@media screen and (max-width: 768px) {
  .map__illust {
    position: absolute;
    width: 22%;
    top: 0;
    right: 10%;
    transform: translateY(-80%);
  }
}
.map__illust .desc {
  color: #595757;
}
.notice {
  padding-bottom: 40px;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .notice {
    padding-bottom: 0;
    padding-top: 60px;
  }
}
.notice__inner {
  max-width: 1000px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .notice__inner {
    width: 92%;
  }
}
.notice__head {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .notice__head {
    line-height: 3;
  }
}
.notice__head span {
  background: white;
  font-size: 28px;
  padding: 7px 13px;
}
@media screen and (max-width: 768px) {
  .notice__head span {
    font-size: 20px;
    display: inline-block;
    line-height: 1.3;
  }
}
.notice__content {
  max-width: 550px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  font-size: 15px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .notice__content {
    font-size: 14px;
  }
}
.notice__content ul {
  margin-bottom: 20px;
  padding-left: 15px;
}
.notice__content ul li {
  text-indent: -14px;
}
.notice__content h2 {
  font-size: 140%;
  margin-bottom: 10px;
  margin-top: 20px;
  line-height: 1.4;
}
.notice__content a {
  text-decoration: underline;
}
.notice__content p {
  margin-bottom: 20px;
}
.fes-movie {
  position: relative;
  width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .fes-movie {
    margin-top: 4.8611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-movie {
    margin-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .fes-movie {
    margin-top: 16.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-movie {
    margin-top: 0vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-movie {
    margin-bottom: 0vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-movie {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .fes-movie {
    margin-bottom: 0vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-movie {
    margin-bottom: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-movie {
    width: 90vw;
  }
}
.fes-movie__movie {
  position: relative;
}
.fes-movie__movie:before {
  content: "";
  padding-top: 56.25%;
  display: block;
}
.fes-movie__movie iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.fes-movie__notice {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .fes-movie__notice {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-movie__notice {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .fes-movie__notice {
    font-size: 3.2666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-movie__notice {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-movie__notice {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-movie__notice {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .fes-movie__notice {
    margin-top: 3.5vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-movie__notice {
    margin-top: 3.7333333333vw;
  }
}
.fes-coming-soon {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 769px) {
  .fes-coming-soon {
    margin-top: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-coming-soon {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .fes-coming-soon {
    margin-top: 14vw;
  }
}
.fes-coming-soon__inner {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .fes-coming-soon__inner {
    width: 85%;
  }
}
.fes-coming-soon__text {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 600;
  color: #231815;
  line-height: 1.8;
  background-color: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  display: block;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .fes-coming-soon__text {
    font-size: 1.8055555556vw;
    padding: 3.4722222222vw 2.7777777778vw;
    border-radius: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-coming-soon__text {
    font-size: 26px;
    padding: 50px 40px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .fes-coming-soon__text {
    font-size: 4.6666666667vw;
    line-height: 2;
    padding: 4.6666666667vw 6.6666666667vw;
    border-radius: 4.6666666667vw;
  }
}
.fes-toraf {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .fes-toraf {
    margin-top: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf {
    margin-top: 18.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf {
    margin-top: 21.3333333333vw;
  }
}
.fes-toraf-sponsors {
  margin-left: auto;
  margin-right: auto;
  background: white;
}
@media screen and (min-width: 769px) {
  .fes-toraf-sponsors {
    width: 55.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-sponsors {
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-sponsors {
    width: 186.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-sponsors {
    width: 93.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-toraf-sponsors {
    margin-top: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-sponsors {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-sponsors {
    margin-top: 11.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-toraf-sponsors {
    border-radius: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-sponsors {
    border-radius: 30px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-sponsors {
    border-radius: 7vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-sponsors {
    border-radius: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-toraf-sponsors {
    padding-top: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-sponsors {
    padding-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-sponsors {
    padding-top: 9.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-toraf-sponsors {
    padding-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-sponsors {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-sponsors {
    padding-bottom: 9.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-toraf-sponsors {
    padding-left: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-sponsors {
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-sponsors {
    padding-left: 9.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-sponsors {
    padding-left: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-toraf-sponsors {
    padding-right: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-sponsors {
    padding-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-sponsors {
    padding-right: 9.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-sponsors {
    padding-right: 4vw;
  }
}
.fes-toraf-head__lg {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .fes-toraf-head__lg {
    font-size: 1.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-head__lg {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-head__lg {
    font-size: 6.0666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-head__lg {
    font-size: 5.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-toraf-head__sm {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-head__sm {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-head__sm {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-toraf-head__sm {
    margin-top: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-head__sm {
    margin-top: 5px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-head__sm {
    margin-top: 1.1666666667vw;
  }
}
.fes-toraf-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .fes-toraf-list {
    width: 55.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-list {
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-list {
    width: 186.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-list {
    width: 90.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-toraf-list {
    gap: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-list {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-list {
    gap: 4.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-toraf-list {
    margin-top: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-list {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-list {
    margin-top: 4.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-list {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.fes-toraf-item__content {
  background-color: #fff;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .fes-toraf-item__content {
    font-size: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-item__content {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-item__content {
    font-size: 4.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-toraf-item__content {
    border-radius: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-item__content {
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-item__content {
    border-radius: 4.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-toraf-item__content {
    padding-top: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-item__content {
    padding-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-item__content {
    padding-top: 4.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-toraf-item__content {
    padding-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-item__content {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-item__content {
    padding-bottom: 4.6666666667vw;
  }
}
.fes-toraf-item__notices {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .fes-toraf-item__notices {
    width: 55.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-item__notices {
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-item__notices {
    width: 186.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-item__notices {
    width: 90.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-item__notices {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .fes-toraf-item__notices {
    margin-top: 0vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 1440px) {
  .fes-toraf-item__notices {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .fes-toraf-item__notices {
    margin-top: 0vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .fes-toraf-item__notices {
    margin-top: 2.6666666667vw;
  }
}
.fes-toraf-item__notice {
  text-align: left;
}
@media screen and (min-width: 769px) {
  .fes-toraf-item__notice {
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-item__notice {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-item__notice {
    font-size: 2.8vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-toraf-item__notice {
    margin-top: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-item__notice {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-item__notice {
    margin-top: 2.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-item__notice {
    margin-top: 1.0666666667vw;
  }
}
.fes-toraf-desc {
  line-height: 2.2;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .fes-toraf-desc {
    margin-top: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-desc {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-desc {
    margin-top: 11.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-toraf-desc {
    font-size: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-desc {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-desc {
    font-size: 4.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-desc {
    font-size: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-toraf-desc {
    gap: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-toraf-desc {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .fes-toraf-desc {
    gap: 4.6666666667vw;
  }
}
.movie-modal {
  display: none;
  z-index: 500;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movie-modal__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #00000080;
}
.movie-modal__iframe-wrap {
  position: relative;
  max-width: 95vw;
  width: 960px;
}
.movie-modal__iframe-wrap svg {
  position: absolute;
  cursor: pointer;
  transition: transform 0.2s;
  width: 24px;
  right: 0;
  top: -38px;
}
@media (hover: hover) and (min-width: 769px) {
  .movie-modal__iframe-wrap svg:hover {
    transform: scale(1.1);
  }
}
.movie-modal__iframe {
  aspect-ratio: 16/9;
  height: 100%;
  width: 100%;
  background: #000;
}
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
*,
:before,
:after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
}
main {
  display: block;
}
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
dt {
  font-weight: 700;
}
dd {
  margin-left: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}
pre {
  font-family: monospace, monospace;
  font-size: inherit;
}
address {
  font-style: inherit;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}
[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}
[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}
button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}
:-moz-focusring {
  outline: auto;
}
select:disabled {
  opacity: inherit;
}
option {
  padding: 0;
}
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}
legend {
  padding: 0;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
label[for] {
  cursor: pointer;
}
details {
  display: block;
}
summary {
  display: list-item;
}
[contenteditable]:focus {
  outline: auto;
}
table {
  border-color: inherit;
  border-collapse: collapse;
}
caption {
  text-align: left;
}
td,
th {
  vertical-align: top;
  padding: 0;
}
th {
  text-align: left;
  font-weight: 700;
}
.fes-notice {
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.76;
}
@media screen and (min-width: 769px) {
  .fes-notice {
    width: 55.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-notice {
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .fes-notice {
    width: 186.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-notice {
    width: 93.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-notice {
    border-radius: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-notice {
    border-radius: 30px;
  }
}
@media screen and (max-width: 768px) {
  .fes-notice {
    border-radius: 7vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-notice {
    border-radius: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-notice {
    padding-top: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-notice {
    padding-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .fes-notice {
    padding-top: 9.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-notice {
    padding-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-notice {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .fes-notice {
    padding-bottom: 9.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-notice {
    padding-left: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-notice {
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .fes-notice {
    padding-left: 9.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-notice {
    padding-left: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-notice {
    padding-right: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-notice {
    padding-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .fes-notice {
    padding-right: 9.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-notice {
    padding-right: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-notice {
    margin-top: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-notice {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .fes-notice {
    margin-top: 11.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-notice {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-notice {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .fes-notice {
    font-size: 3.2666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-notice {
    font-size: 3.7333333333vw;
  }
}
.fes-notice h2 {
  text-align: center;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .fes-notice h2 {
    margin-bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-notice h2 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .fes-notice h2 {
    margin-bottom: 2.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-notice h2 {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-notice h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .fes-notice h2 {
    font-size: 4.2vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-notice h2 {
    font-size: 4.8vw;
  }
}
.fes-btns {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .fes-btns {
    gap: 1.7361111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-btns {
    gap: 25px;
  }
}
@media screen and (max-width: 768px) {
  .fes-btns {
    gap: 5.8333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-btns {
    margin-top: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-btns {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .fes-btns {
    margin-top: 11.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-btns {
    margin-top: 5.3333333333vw;
  }
}
.fes-btn {
  background-color: #fff;
  font-weight: 900;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .fes-btn {
    width: 22.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-btn {
    width: 320px;
  }
}
@media screen and (max-width: 768px) {
  .fes-btn {
    width: 74.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-btn {
    border-radius: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-btn {
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  .fes-btn {
    border-radius: 2.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-btn {
    padding-top: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-btn {
    padding-top: 14px;
  }
}
@media screen and (max-width: 768px) {
  .fes-btn {
    padding-top: 3.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-btn {
    padding-bottom: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-btn {
    padding-bottom: 14px;
  }
}
@media screen and (max-width: 768px) {
  .fes-btn {
    padding-bottom: 3.2666666667vw;
  }
}
.fes-btn:hover {
  opacity: 0.8;
}
.fes-btn .tri {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 769px) {
  .fes-btn .tri {
    right: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-btn .tri {
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .fes-btn .tri {
    right: 2.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-btn .tri {
    width: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-btn .tri {
    width: 10px;
  }
}
@media screen and (max-width: 768px) {
  .fes-btn .tri {
    width: 2.3333333333vw;
  }
}
.txt-link-btn {
  text-align: center;
  text-decoration: underline;
  transition: all 0.3s;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .txt-link-btn {
    padding-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .txt-link-btn {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .txt-link-btn {
    padding-bottom: 4.6666666667vw;
  }
}
.txt-link-btn:hover {
  opacity: 0.8;
}
@media screen and (min-width: 769px) {
  .fes-map {
    padding-top: 4.8611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-map {
    padding-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .fes-map {
    padding-top: 16.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-map {
    padding-top: 10.6666666667vw;
  }
}
.fes-map-content {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .fes-map-content {
    padding-bottom: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-map-content {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .fes-map-content {
    padding-bottom: 14vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-map-content {
    margin-top: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-map-content {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .fes-map-content {
    margin-top: 14vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-map-content {
    margin-top: 12vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-map-content {
    width: 69.4444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-map-content {
    width: 1000px;
  }
}
@media screen and (max-width: 768px) {
  .fes-map-content {
    width: 233.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-map-content {
    width: 93.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-stage {
    padding-top: 4.8611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-stage {
    padding-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .fes-stage {
    padding-top: 16.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-stage {
    padding-top: 10.6666666667vw;
  }
}
.fes-stage-content {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .fes-stage-content {
    padding-bottom: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-stage-content {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .fes-stage-content {
    padding-bottom: 14vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-stage-content {
    margin-top: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-stage-content {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .fes-stage-content {
    margin-top: 14vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-stage-content {
    margin-top: 12vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-stage-content {
    width: 69.4444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-stage-content {
    width: 1000px;
  }
}
@media screen and (max-width: 768px) {
  .fes-stage-content {
    width: 233.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-stage-content {
    width: 93.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .fes-stage-content {
    gap: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .fes-stage-content {
    gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .fes-stage-content {
    gap: 14vw;
  }
}
@media screen and (max-width: 768px) {
  .fes-stage-content {
    gap: 6.6666666667vw;
  }
}
.page-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .page-title {
    gap: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .page-title {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .page-title {
    gap: 2.3333333333vw;
  }
}
.page-title span {
  background-color: #fff;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .page-title span {
    font-size: 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .page-title span {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .page-title span {
    font-size: 7.4666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .page-title span {
    font-size: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .page-title span {
    padding-left: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .page-title span {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page-title span {
    padding-left: 4.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .page-title span {
    padding-right: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .page-title span {
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page-title span {
    padding-right: 4.6666666667vw;
  }
}
.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}
.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}
.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}
.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}
.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}
.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}
.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
  opacity: 0.7;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #00bfff;
  opacity: 1;
}
.splide__arrow svg {
  fill: #00bfff;
  height: 2.5em;
  transition: fill 0.2s linear;
  width: 2.5em;
}
.splide__arrow:hover:not(:disabled) svg {
  fill: #66d9ff;
}
.splide__arrow:focus-visible {
  outline: 3px solid #00bfff;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #00bfff;
  outline-offset: 3px;
}
.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}
.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  margin: 3px;
  padding: 0;
  position: relative;
  transition: background-color 0.2s linear, transform 0.2s linear;
  width: 10px;
}
.splide__pagination__page.is-active {
  background: #00bfff;
  transform: scale(1.4);
  z-index: 1;
}
.splide__pagination__page:hover {
  background: #66d9ff;
  cursor: pointer;
  opacity: 0.9;
}
.splide__pagination__page:focus-visible {
  outline: 3px solid #00bfff;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #00bfff;
  outline-offset: 3px;
}
.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #00bfff;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #00bfff;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #00bfff;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #00bfff;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #00bfff;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #00bfff;
  }
}
.splide__toggle:focus-visible {
  outline: 3px solid #00bfff;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #00bfff;
  outline-offset: 3px;
}
.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}
.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.7;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #20b2aa;
  opacity: 1;
}
.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}
.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}
.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}
.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}
.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}
.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 1em;
  top: 0;
}
.splide__pagination--ttb .splide__pagination__page {
  height: 20px;
  width: 5px;
}
.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2.5em;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5em;
  z-index: 1;
}
.splide__arrow svg {
  fill: #20b2aa;
  height: 2.5em;
  transition: fill 0.2s linear;
  width: 2.5em;
}
.splide__arrow:hover:not(:disabled) svg {
  fill: #57e1d9;
}
.splide__arrow:disabled {
  opacity: 0.3;
}
.splide__arrow:focus-visible {
  outline: 3px solid #20b2aa;
  outline-offset: 3px;
}
.splide__arrow--prev {
  left: 1em;
}
.splide__arrow--prev svg {
  transform: scaleX(-1);
}
.splide__arrow--next {
  right: 1em;
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #20b2aa;
  outline-offset: 3px;
}
.splide__pagination {
  bottom: 1em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}
.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 2.5px;
  display: inline-block;
  height: 5px;
  margin: 3px;
  padding: 0;
  position: relative;
  transition: background-color 0.2s linear;
  width: 20px;
}
.splide__pagination__page.is-active {
  background: #20b2aa;
  z-index: 1;
}
.splide__pagination__page:hover {
  background: #57e1d9;
  cursor: pointer;
  opacity: 0.9;
}
.splide__pagination__page:focus-visible {
  outline: 3px solid #20b2aa;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #20b2aa;
  outline-offset: 3px;
}
.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border-radius: 4px;
}
.splide__slide:focus {
  outline: 0;
}
@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #20b2aa;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #20b2aa;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #20b2aa;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #20b2aa;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #20b2aa;
  }
}
.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #20b2aa;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.splide__progress__bar {
  background: #ccc;
  height: 3px;
}
.splide__toggle {
  cursor: pointer;
}
.splide__toggle:focus-visible {
  outline: 3px solid #20b2aa;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #20b2aa;
  outline-offset: 3px;
}
.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}
.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}
.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}
.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}
.splide__slider > .splide__arrows .splide__arrow--prev {
  left: -2.5em;
}
.splide__slider > .splide__arrows .splide__arrow--next {
  right: -2.5em;
}
.splide {
  padding: 3em;
}
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__container {
  box-sizing: border-box;
  position: relative;
}
.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* Burger Menu Styles */
.fes-header__burger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 101; /* Above the menu overlay */
}

.fes-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #231815;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.fes-header__burger span:nth-child(1) {
  top: 0;
}
.fes-header__burger span:nth-child(2) {
  top: 9px;
}
.fes-header__burger span:nth-child(3) {
  bottom: 0;
}

/* Burger Open State */
.fes-header__burger.is-active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.fes-header__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.fes-header__burger.is-active span:nth-child(3) {
  bottom: 9px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .fes-header__burger {
    display: none;
  }

  /* Mobile Menu Styles */
  .fes-header__list {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    padding-bottom: 30px;
    padding-top: 80px; /* Space for the burger button */
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 100;
  }

  .fes-header__list.is-active {
    transform: translateX(0);
  }

  .fes-header__item {
    margin-left: 0 !important;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
  }

  /* スマホでfv-fes__imgが表示されない問題を修正 */
  .fv-fes {
    min-height: 50vh;
  }

  .fv-fes__img {
    position: relative !important;
    height: auto !important;
    min-height: 50vh;
  }

  .fv-fes__img img {
    position: relative !important;
    height: auto !important;
    min-height: 50vh;
    object-fit: cover;
  }
}
