

.rounded{
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.bold{
  font-weight: 700;
}
.exbold{
  font-weight: 800;
}
.pink{
  color: var(--pink);
}
.sky{
  color: var(--sky);
}
.navy{
  color: var(--navy);
}
ul.list li{
  margin-left:1em;
  text-indent:-1em;
  display: list-item;
}
ul.list li::first-letter{
  font-feature-settings:initial;
}
h1,h2,h3,h4,h5{
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
h2{
  font-weight: 800;
  color: var(--navy);
  font-size: 1.75em;
  margin-bottom: 10px;
  line-height: 1;
  text-align: center;
}
h3{
  font-weight: 800;
  color: var(--sky);
  font-size: 1.25em;
  line-height: 1.5;
  margin-bottom: 6px;
}
.image {
  border-radius: 8px;
  overflow: hidden;
}
.image img{
  width:100%;
  max-width: 100%;
  height: auto;
}

.balloon-base{
  position: relative;
  display: block;
  width: 100%;
}
.balloon-base .balloon{
  position: absolute;
  right: -16px;
  bottom: 30%;
  width: 106px;
  height: 56px;
  animation: balloon-small 3s ease-in-out infinite alternate;
}
@keyframes balloon-small {
  0% {
    transform:translate(0, 0) rotate(-1.5deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(1.5deg);
  }
}

@media only screen and (max-width: 360px) {
  
  .balloon-base .balloon{
    position: absolute;
    right: -16px;
    bottom: 100%;
    width:106px;
    height: 56px;
    animation: balloon-small 3s ease-in-out infinite alternate;
  }
}



#main_visual .wrapper{
  background: var(--yellow);
  padding-bottom: 12px;
}


#main_visual .image{
  position: relative;
  width: 100%;
  width: 499px;
  left:50%;
  transform: translateX(-50%);
}
#main_visual .text{
  position: relative;
  margin-top: -40px;
}
#main_visual .entry .balloon{
  width: 100%;
  max-width: 340px;
  height: auto;
  animation: balloon-large 3s ease-in-out infinite alternate;
  margin:0 auto 4px;
}
@keyframes balloon-large {
  0% {
    transform:translate(0, 0) rotate(-0.5deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(0.5deg);
  }
}
#main_visual .text .datetime{
  width:fit-content;
  text-align: center;
  margin: 0px auto 5px;
  position: relative;
}
#main_visual .text .datetime:before{
  content:"\005C";
  position: absolute;
  left:-16px;
  bottom:0;
  font-family: var(--rounded);
  color: var(--navy);
  font-size: 3em;
  line-height: 1;
  font-weight: 800;
}
#main_visual .text .datetime:after{
  content:"/";
  position: absolute;
  right:-16px;
  bottom:0;
  font-family: var(--rounded);
  color: var(--navy);
  font-size: 3.5em;
  line-height: 1;
  font-weight: 800;
}
#main_visual .text .datetime .date{
  font-family: var(--rounded);
  color: var(--navy);
  font-size: 1.75em;
  line-height: 1.2;
  font-weight: 800;
}
#main_visual .text .datetime .time{
  font-family: var(--rounded);
  color: var(--navy);
  font-size: 1.25em;
  line-height: 1.28;
  font-weight: 800;
}
#main_visual .text .place{
  text-align: center;
  font-family: var(--rounded);
  color: var(--pink);
  font-size: 1.75em;
  line-height: 1.28;
  font-weight: 900;
  margin-bottom: 10px;
}
#main_visual .entry .button{
  text-align: center;
  width: 240px;
  height: 40px;
  margin: auto;
  position: relative;
}
#main_visual .entry .button a{
  font-family: var(--rounded);
  font-weight: 800;
  font-size:1.125em;
  line-height: 1.75;
  padding: 0.25em;
  color:#fff;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 30px;
  background: linear-gradient( to right, #4bb9eb 0%,#4bb9eb 20% ,#00418c 90%,#00418c 100%  );
  z-index:2;
  transition: 0.3s;
  cursor: pointer;
  opacity: 1;
  overflow: hidden;
}
#main_visual .entry .button a span{
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  display: block;
  width: 100%;
}
#main_visual .entry .button a::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 20px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
  animation: shine1 15.5s linear infinite;
}
 
@keyframes shine1 {
  0.6% {
    transform: scale(2) rotate(30deg);
    opacity: 0;
  }
  1.2% {
    transform: scale(20) rotate(30deg);
    opacity: 0.6;
  }
  1.8% {
    transform: scale(30) rotate(30deg);
    opacity: 0.4;
  }
  2.4% {
    transform: scale(45) rotate(30deg);
    opacity: 0.2;
  }
  3.0% {
    transform: scale(50) rotate(30deg);
    opacity: 0;
  }
  100% {
    transform: scale(2) rotate(30deg);
    opacity: 0;
  }
}
#main_visual .entry .button:before{
  content:"";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  position: absolute;
  left:3px;
  top:3px;
  background: var(--navy);
  z-index:1;
}
#main_visual .entry .button a:hover{
  background: var(--navy);
  left:3px;
  top:3px;
}
#main_visual .entry .close{
  color: var(--navy);
  font-size: 1.125em;
  font-family: var(--rounded);
  font-weight: 800;
  text-align:center;
  margin-top: 10px;
}


@media only screen and (max-width: 499px) {
  #main_visual .image{
    position: relative;
    width: calc(100% + 24vw);
    left:-11vw;
    transform: none;
    transform: none;
  }
  #main_visual .text{
    position: relative;
    margin-top: 0;
  }
}
@media only screen and (max-width: 426px) {
  #main_visual .wrapper{
    padding-bottom: 24px;
    width: 100%;
    overflow: hidden;
  }
  #main_visual .image{
    position: relative;
    width: calc(100% + 24vw);
    left:-11vw;
    transform: none;
  }
  #main_visual .text{
    position: relative;
    margin-top: 0;
  }
}



.town-center{
  width: 100%;
  max-width: 430px;
  margin:0 auto;
  background: var(--yellow);
}

#ticket{
}
#ticket .ticket-box{
  background-color: #fff;
  background-image: url(../images/ticket-top.png),url(../images/ticket-bottom.png);
  background-position: top right ,bottom right;
  background-repeat: no-repeat,no-repeat;
  background-size: 398px 13px,398px 13px;
  padding:16px 0;
  display: flex;
}
#ticket .ticket-box .text{
  flex: 1;
  padding: 0 15px;
  line-height: 1.53;
}
#ticket .ticket-box .right{
  width: 47px;
  border-left: 2px dashed var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
}
#ticket .ticket-box .right img{
  width: 30px;
}



#stage{

}
#stage .inner{
  background: #fff;
}

#stage  h2{
  margin-bottom: 16px;
}
#stage  h3{
}
#stage .stage-box .image{
  margin-bottom: 10px;
}

#stage .stage-box+.stage-box{
  background-image: url(../images/stage-divider.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin-top: 14px;
  padding-top:46px;

}
#stage-schedule{
  background: #e4f5fc;
  padding: 12px 6px 16px;
  margin-top:16px;
}
#stage-schedule h3{
  color: var(--navy);
  font-size: 1.125em;
  text-align: center;
  margin-bottom: 5px;
}
#stage-schedule .schedule{
  width:100%;
  display: flex;
  flex-wrap:wrap;
  font-family: var(--rounded);
  font-weight: 600;
  border-bottom:1px dashed #000;
  font-size: 0.975em;
  line-height:1.5;
  padding: 4px 0px; 
}
#stage-schedule .schedule:nth-of-type(1){
  border-top:1px dashed #000;
}
#stage-schedule .date{
  width: 120px;
}
#stage-schedule .name{
  width: calc(100% - 120px);
}

@media only screen and (max-width: 360px) {
#stage-schedule .date{
  width: 100%;
}
#stage-schedule .name{
  width: 100%;
}
}

#experiment{

}
#experiment .inner{
  background: #fff;
  padding-bottom:24px;
}

#experiment p.limit{
  text-align: center;
  margin-bottom: 10px;
}

#experiment .experiment-box{
  display: flex;
  gap: 16px;
}
#experiment .experiment-box .image{
  width:144px;
}
#experiment .experiment-box .image img{
  border-radius: 8px;
}
#experiment .experiment-box .text{
  flex:1;
}
#experiment .experiment-box:nth-of-type(even) .image{
  order: 2;
}
#experiment .experiment-box:nth-of-type(even) .text{
  order: 1;
}
#experiment .experiment-box h3{
  margin-top:-0.2em;
  margin-bottom: 4px;
}

#experiment .experiment-box+.experiment-box{
  background-image: url(../images/experiment-divider.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin-top: 14px;
  padding-top:46px;

}

@media only screen and (max-width: 360px) {
  
  #experiment .experiment-box{
    display: flex;
    flex-direction:column;
    gap: 10px;
  }
  #experiment .experiment-box .image{
    width:144px;
    margin: auto;
  }
  #experiment .experiment-box .image img{
    border-radius: 8px;
  }
  #experiment .experiment-box .text{
    flex:1;
  }
  #experiment .experiment-box:nth-of-type(even) .image{
    order: 1;
  }
  #experiment .experiment-box:nth-of-type(even) .text{
    order: 2;
  }
  #experiment .experiment-box h3{
    margin-top: 0;
    margin-bottom: 6px;
  }
}

#special_game .inner{
  background: #73cbf6;
}
#special_game h2{
  margin-bottom: 16px
}

#special_game .game-box{
  margin-bottom: 20px
}
#special_game .game-box .image{
  margin-bottom: 10px
}
#special_game .game-box .text{
  flex:1;
  color:#fff;
}
#special_game .game-box .text h3{
  color: var(--navy);
  margin-bottom: 4px
}

.exhibit{
  background: #e5f6fd;
  border-radius: 8px;
  padding-bottom: 20px;
}
.exhibit+.exhibit{
  margin-top: 16px;
}
.exhibit h3{
  font-size: 1.125em;
  text-align: center;
  color: var(--navy);
  border-bottom:1px dashed #000;
  margin : 0 16px 16px;
  padding-top: 10px;
  padding-bottom: 8px;
}
.exhibit .house_maker-box{
}
.exhibit .house_maker-box+.house_maker-box{
  margin-top: 24px;
}
.exhibit .house_maker-box .logo{
  border-radius: 8px;
  overflow: hidden;
  margin:0 16px 10px;
}
.exhibit .house_maker-box .text{
  padding:  0 16px;
}
.exhibit .energia-box{
  padding:  0 16px;
}
.exhibit .energia-box .logo{
  margin-bottom:0;
}
.exhibit .energia-box .chara{
  width: 120px;
  height: 120px;
  margin: 0 auto 10px;
}

#house_maker{
  background-image: url(../images/house_maker-cloud.png);
  background-repeat: repeat-y;
  background-size: 100% auto;;
}




#present{

}
#present .inner{
  background: #fbd1e8;
}
#present h2{
  color: var(--pink);
}
#present h3{
  margin-top: 10px;
  margin-bottom: 10px;
}
#present h3 img{
  height: 68px;
  width: auto;
    object-fit: contain;
}


