/* Minimal reset CSS */

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  line-height: 1.6;
  font-family: 'Noto Sans JP',"Roboto", sans-serif;
}
html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
ul,
ol {
  list-style: none;
  padding:0;
}
a {
  color: inherit;
  text-decoration: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.df{
  display:flex;
}
.sb{
  justify-content: space-between;
}
.fw{
  flex-wrap: wrap;
}
.dg{
  display: grid;
}
.fadein {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .fadein {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
header {
  position: fixed;
  background: #fff;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 20;
}
header h1 {
  width: 14%;
  padding: 1% 0;
}
header .box1 {
  width: 90%;
  margin: 0 auto;
  align-items: stretch;
}
header nav ul {
  align-items: center;
  height: 100%;
}
header nav ul li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
header nav ul li.stay{
  pointer-events: none;
}
header nav ul li.stay span {
  position: absolute;
  inset: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  background: rgb(255 0 0 / 88%);
  padding: 4% 7%;
  color: #fff;
  font-size: 0.8vw;
  font-weight: 700;
  line-height: 1.2;
}
header nav ul li a {
  height: 100%;
  display: flex;
  align-items: center;
  color: #00419d;
  font-weight: 700;
  font-size: 1vw;
  padding: 0 1.5vw;
  position: relative;
  transition: .3s;
}
header nav ul li a:hover {
  background: #00419d;
  color: #fff;
}
.pageTop {
  padding-top: 6%;
  background: #ebf9fd;
}
.topFv {
  width: 100%;
  background: #fff;
}
.topFv .wrap1{
  width: 90%;
  margin: 0 auto;
}
.topFv .fvSlideSwiper {
  width: 100%;
}
.topFv .fvSlideSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.topFv .fvSlideSwiper .swiper-pagination-bullet-active {
  background: #00419d;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
  opacity: 1;
  background: #fff;
}
.linkBlock {
  width: 80%;
  margin: auto;
  padding: 3% 0 0;
}
.linkBlock a {
  background: #fff;
  border-radius: 1vw;
  width: 32%;
  box-sizing: border-box;
  padding: 2% 2% 3%;
  transition: .3s;
}
.linkBlock a .txt1 {
  text-align: center;
  color: #00419d;
  font-weight: 700;
  font-size: 1.6vw;
  position: relative;
  padding-bottom: 4%;
  margin-bottom: 5%;
  transition: .3s;
}
.linkBlock a .txt1:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 34%;
  background: #00419d;
  left: 0;
  right: 0;
  margin: auto;
  transition: .3s;
}
.linkBlock a .inner1 {
  align-items: center;
}
.linkBlock a .inner1 img{
  width: 30%;
  margin-right:5%
}
.linkBlock a .inner1 .txt2 {
  width: 65%;
  font-size: 1.1vw;
  color: #00419d;
  font-weight: 700;
  transition: .3s;
}
.linkBlock a:hover{
  background: #00419d;
}
.linkBlock a:hover p,
.linkBlock a:hover .inner1 .txt2{
  color: #fff;
}
.linkBlock a:hover .txt1:before {
  background: #fff;
}
.topAbout {
  margin-top: 6%;
}
.tit1 {
  text-align: center;
  color: #1b1464;
  font-size: 2.5vw;
}
.tit1 span {
  font-family: "Roboto";
  display: block;
  font-size: 1vw;
  color: #fa0058;
  margin-bottom: .8%;
}
.topAbout p {
  text-align: center;
  margin: 2vw auto 0;
  width: 60%;
  font-size: 1.25vw;
  font-weight: 700;
}
.topSpot {
  margin-top: 6%;
}
.topSpot iframe {
  width: 50%;
  margin: 0 auto;
  display: block;
  aspect-ratio: 61/46;
  margin-top: 2vw;
}
.topChoice {
  width: 80%;
  margin: 6% auto 0;
}
.topChoice ol {
  margin: 4% auto;
  padding: 0;
}
.topChoice ol li {
  width: 32%;
  background: #fff;
  border-radius: 1vw;
  box-shadow: 4px 4px 3px rgb(0 0 0 / 45%);
  box-sizing: border-box;
  padding: 2% 3% 5%;
  position: relative;
}
.topChoice ol li .num {
  font-family: "Jost", sans-serif;
  text-align: center;
  font-size: 3vw;
  font-weight: 600;
  color: #9dc35f;
}
.topChoice ol li:nth-child(2) .num {
  color: #fbb03b;
}
.topChoice ol li:nth-child(3) .num {
  color: #5a8fe4;
}
.topChoice ol li .txt1 {
  text-align: center;
  font-size: 1.4vw;
  font-weight: 700;
  color: #1b1464;
}
.topChoice ol li .choiceImg {
  width: 90%;
  display: block;
  margin: 5% auto;
}
.topChoice ol li .txt2 {
  text-align: center;
  font-weight: 700;
  font-size: 1.15vw;
}
.topChoice ol li .fukidashi1 {
  position: absolute;
  width: 90%;
  left: 0;
  right: 0;
  margin: auto;
  animation: fuwafuwa 2.8s ease-in-out infinite;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.topLineup {
  margin: 6% auto;
  width: 80%;
}
.topLineup #kukan1 {
  scroll-margin-top: 17vw;
}
.topLineup #kukan2 {
  scroll-margin-top: 10vw;
}
.topLineup #kumamoto {
  scroll-margin-top: 12vw;
}
.topLineup .box1{
  margin-top: 3%;
}
.topLineup .box1 .left {
  width: 43%;
}
.topLineup .box1 > img {
  width: 54%;
  cursor: pointer;
}
.topLineup .box1 .left .titleBox1 {
  align-items: center;
}
.topLineup .box1 .left .titleBox1 h3 {
  font-size: 2.3vw;
  padding-right: 12%;
  padding-bottom: 4%;
  margin-right: 14%;
  border-bottom: 1px solid #1b1464;
  color: #1b1464;
}
.topLineup .box1 .left .titleBox1 img {
  width: 26%;
}
.topLineup .box1 .left .txt1 {
  font-size: 1.2vw;
  text-align: justify;
  font-weight: 900;
  color: #1b1464;
  margin: 6% 0 2%;
}
.topLineup .box1 .left .txt2 {
  border-left: .8vw solid #9dc35f;
  background: #fff;
  padding: 2% 0 2% 5%;
  width: 100%;
  font-size: 1.4vw;
  color: #1b1464;
  font-weight: 700;
}
.topLineup .box1 .left .btn {
  background: transparent;
  border: 1px solid #9dc35f;
  margin-top: 5%;
  display: block;
  box-sizing: border-box;
  padding: 2% 0 2% 10%;
  color: #9dc35f;
  font-weight: 900;
  border-radius: 10vw;
  position: relative;
  font-size: 1.1vw;
  transition: .3s;
}
.topLineup .box1 .left .btn:after {
  content: "";
  display: block;
  width: .7vw;
  height: 1.4vw;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.8vw;
  margin: auto;
  background: url(/img/arrow2.svg)0 0 no-repeat;
  background-size: 100%;
  transition: .3s;
}
.topLineup .box1 .left .btn:hover {
  background: #9dc35f;
  color: #fff;
}
.topLineup .box1 .left .btn:hover:after {
  background: url(/img/arrow1.svg)0 0 no-repeat;
}
.topLineup .titleBox1 .js-modal-image {
  cursor: pointer;
  transition: .3s;
}
.topLineup .titleBox1 .js-modal-image:hover {
  opacity: .8;
}
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.image-modal.is-open {
  display: block;
}
.image-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 70%);
}
.image-modal__content {
  position: relative;
  z-index: 1;
  width: 70vw;
  margin: 12vh auto;
}
.image-modal__img {
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  background: #fff;
}
.image-modal__close {
  position: absolute;
  top: -2.4rem;
  right: 0;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
body.is-modal-open {
  overflow: hidden;
}
.topLineup .box2 {
  background: #fff;
  margin-top: 3%;
  box-sizing: border-box;
  padding: 2%;
}
.topLineup .box2 .titlebox2 {
  border-bottom: 1px solid #b2d198;
  padding-bottom: .6%;
  margin-bottom: .6%;
  align-items: center;
}
.topLineup .box2 .titlebox2 h3 {
  color: #9dc35f;
  font-weight: 700;
  margin-right: 3%;
  font-size: 1.25vw;
}
.topLineup .box2 .titlebox2 p {
  font-size: .9vw;
  font-weight: 900;
  color: #1b1464;

}
.topLineup .box2 .txt3 {
  color: #1b1464;
  font-size: .88vw;
  font-weight: 900;
}
.topLineup .box2 .txt3 span {
  color: #5a8fe4;
}
.topLineup .kukan2 {
  margin: 5% 0;
  padding: 2% 0 5%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.btn.stay{
  pointer-events: none;
}
.topLineup .kukan2 .box1 .left .txt2{
  border-left: .8vw solid #5a8fe4;
}
.topLineup .kukan2 .box1 .left .btn{
  border: 1px solid #5a8fe4;
  color: #5a8fe4;
}
.topLineup .kukan2 .box1 .left .btn:after{
  background: url(/img/arrow3.svg)0 0 no-repeat;
  background-size: 100%;
  transition: .3s;
}
.topLineup .kukan2 .box1 .left .btn:hover{
  background: #5a8fe4;
  color: #fff;
}
.topLineup .kukan2 .box1 .left .btn:hover:after{
  background: url(/img/arrow1.svg)0 0 no-repeat;
}
.topLineup .kukan2 .box2 .titlebox2{
  border-bottom: 1px solid #5a8fe4;
}
.topLineup .kukan2 .box2 .titlebox2 h3{
  color: #5a8fe4;
}
.topLineup .box1 .left .txt2 span {
  font-size: 1vw;
  font-weight: 900;
  position: relative;
  bottom: .1vw;
}

.topLineup .kumamoto .box1 .left .txt2{
  border-left: .8vw solid #fbb03b;
}
.topLineup .kumamoto .box1 .left .btn{
  border: 1px solid #fbb03b;
  color: #fbb03b;
}
.topLineup .kumamoto .box1 .left .btn:after{
  background: url(/img/arrow4.svg)0 0 no-repeat;
  background-size: 100%;
  transition: .3s;
}
.topLineup .kumamoto .box1 .left .btn:hover{
  background: #fbb03b;
  color: #fff;
}
.topLineup .kumamoto .box1 .left .btn:hover:after{
  background: url(/img/arrow1.svg)0 0 no-repeat;
}
.topLineup .kumamoto .box2 .titlebox2{
  border-bottom: 1px solid #fbb03b;
}
.topLineup .kumamoto .box2 .titlebox2 h3{
  color: #fbb03b;
}
.topLineup .kumamoto .box2 .txt3 span {
  color: #fbb03b;
}
.topLineup .mainTxt {
  width: 84%;
  margin: 6% auto 0;
  text-align: center;
  font-size: 1.01vw;
  line-height: 2.2;
  font-weight: 900;
  letter-spacing: .02em;
}
.topTicket {
  background: #00419d;
  padding: 6% 0;
}
.topTicket .wrap1 {
  width: 80%;
  margin: 0 auto;
  align-items: center;
}
.topTicket .wrap1 > p {
  font-size: 1.85vw;
  color: #fff;
  font-weight: 900;
  text-indent: 1vw;
  margin-left: -1vw;
  line-height: 1.7;
  width: 57%;
  margin-right: 3%;
}
.topTicket .wrap1 .right {
  width: 40%;
  position: relative;
}
.topTicket .wrap1 .right .txt1 {
  position: absolute;
  left: -5vw;
  top: -2vw;
  background: #df8bb1;
  color: #fff;
  font-weight: 900;
  padding: 1% 3% 1.4%;
  border-radius: .6vw;
  text-align: center;
  line-height: 1.2;
  font-size: 1.2vw;
  font-family: "Zen Maru Gothic";
}
.topTicket .wrap1 .right div {
  background: #fff;
  box-sizing: border-box;
  padding: 8% 7%;
  border-radius: 1vw;
}
.topTicket .wrap1 .right div a {
  width: 45%;
  align-items: center;
}
.topTicket .wrap1 .right div a img {
  width: 49%;
}
.topTicket .wrap1 .right div a img.routeLogo, .topTicket .wrap1 .right div a img.rydeLogo {
  height: 70%;
}
.topPass {
  margin-top: 6%;
}
.topPass .txt1 {
  text-align: center;
  font-weight: 900;
  margin: 3% 0 5%;
  font-size: 1.25vw;
}
.topPass .wrap1 {
  width: 90%;
  margin-left: 10%;
  background: #fff;
  padding: 3% 16% 3% 10%;
  box-sizing: border-box;
  border-radius: 4vw 0 0 4vw;
}
.topPass .box1 {
  align-items: center;
}
.topPass .box1 .spImg {
  width: 24%;
  margin-top: 2%;
}
.topPass .box1 .txtBox {
  width: 30%;
  border-top: 2px solid #00af73;
  border-bottom: 2px solid #00af73;
  padding: 5% 0;
}
.topPass .box1 .txtBox .label {
  background: #00af73;
  display: block;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  padding: 2% 5%;
  border-radius: 1.4vw;
  font-size: 1.8vw;
}
.topPass .box1 .txtBox p {
  font-size: 1.8vw;
  font-weight: 700;
  width: fit-content;
  margin: 5% auto 0;
}
.topPass .box1 .txtBox p:nth-child(2) {
  margin-bottom: 20%;
}
.topPass .box2 {
  margin-top: 2%;
  align-items: center;
}
.topPass .box2 a {
  align-items: center;
  width: 27%;
}
.topPass .box2 a img {
  width: 53%;
}
.topPass .box2 .txt2 {
  background: #df8bb1;
  width: 30%;
  box-sizing: border-box;
  border-radius: 2vw;
}
.topPass .box2 .txt2 {
  background: #df8bb1;
  width: 31%;
  box-sizing: border-box;
  border-radius: 1.6vw;
  text-align: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.8vw;
  line-height: 1.4;
  padding: .8% 1%;
  font-family: "Zen Maru Gothic";
}
.topPass .box2 a img.routeLogo, .topPass .box2 a img.rydeLogo {
  width: 44%;
}
.topPass .wrap2 {
  width: 90%;
  margin-right: 10%;
  background: #fff;
  padding: 3% 16% 4%;
  box-sizing: border-box;
  border-radius: 0 4vw 4vw 0;
  margin-top: 5%;
}
.topPass .wrap2 .saleImg1 {
  width: 87%;
  margin-left: 6%;
}
.topPass .wrap2 .txt2 {
  margin: 4% 0 3% 4%;
  font-size: 2.1vw;
  font-weight: 900;
}
.topPass .wrap2 .box3 ul li {
  font-size: 1.6vw;
  font-weight: 900;
}
.topPass .wrap2 .box3 .inner1 .price{
  font-size: 1.6vw;
  font-weight: 900;
}
.topPass .wrap2 .box3 .inner1 .label {
  background: #00af73;
  display: block;
  width: fit-content;
  margin: 0 auto 11%;
  color: #fff;
  padding: 2% 5%;
  border-radius: 1.4vw;
  font-size: 1.8vw;
  font-weight: 900;
}
.topHouto {
  margin-top: 6%;
}
.topHouto > .txt1 {
  text-align: center;
  font-weight: 900;
  margin: 2% 0 0;
  font-size: 1.25vw;
}
.topHouto .wrap1 {
  background: #fff;
  margin-top: 2%;
  padding-top: 4%;
}
.topHouto .wrap1 .tit2 {
  background: #1b1464;
  color: #fff;
  font-size: 2vw;
  display: block;
  width: fit-content;
  margin: 0 auto 5%;
  padding: .4% 4%;
}
.topHouto .wrap1 .scanImg1 {
  width: 40%;
  margin: 0 auto;
}
.topHouto .wrap1 .txt2,
.topHouto .wrap1 .txt3 {
  width: 53%;
  margin: 2.5% auto 0;
  font-weight: 900;
  font-size: 1.5vw;
  text-align: justify;
  line-height: 1.8;
}
.topHouto .wrap1 .txt2 span{
  color: #ed1e79;
}
.topHouto .wrap1 .tit3 {
  border: 1px solid #1b1464;
  color: #1b1464;
  font-size: 2vw;
  display: block;
  width: fit-content;
  margin: 10% auto 4%;
  padding: .4% 10%;
}
footer {
  background: #ebf9fd;
  margin-top: 8%;
  padding-top: 8%;
}
footer .txt1 {
  color: #1b1464;
  text-align: center;
  margin: 2% auto 4%;
  font-size: 1.25vw;
  font-weight: 900;
}
footer ul {
  grid-column: auto;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2vw;
  width: 60%;
  margin: 0 auto 15%;
}
footer ul li a{
  transition: .3s;
}
footer ul li a:hover{
  opacity: .7;
}
footer small {
  background: #00419d;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1vw;
  padding: 2% 0;
  font-weight: 700;
}
.sp{
  display:none;
}
@media (width < 950px){
.topFv .wrap1 {
    width: 100%;
}
.pc{
  display: none;
}
.sp{
  display: block;
}
header h1 {
  width: 30%;
  padding: 1% 0;
}
header .spLogo {
  width: 40%;
  display: block;
  margin: 14% auto 0;
}
.pageTop {
  padding-top: 15vw;
}
.spHeader .btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
  margin: auto;
  height: fit-content;
  width: 8vw;
  z-index: 20;
}
.spHeader .btn span {
  display: block;
  width: 100%;
  height: 1px;
  background: #00419d;
  margin: 1.5vw 0;
  opacity: 1;
  transition: .3s;
  position: relative;
  top: 0;
}
.spHeader.on .btn span {
  background: #fff
}
.spHeader.on .btn span:nth-child(1) {
  transform:rotate(45deg);
  top: -0.8vw;
  position: absolute;
  inset: 0;
  margin: auto;
}
.spHeader.on .btn span:nth-child(2) {
  opacity: 0;
}
.spHeader.on .btn span:nth-child(3) {
  transform:rotate(-45deg);
  position: absolute;
  inset: 0;
  margin: auto;
}
header .menu {
  transition: .3s;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  top: 0;
  background: #00419d;
}
.spHeader.on .menu {
  opacity: 1;
  pointer-events: unset;
}
header .menu ul {
  border-top: 1px solid #fff;
  margin-top: 6%;
}
header .menu ul li{
  position: relative;
}
header .menu ul li.stay{
  pointer-events: none;
}
header .menu ul li a {
  width: 100%;
  border-bottom: 1px solid #fff;
  display: block;
  color: #fff;
  font-size: 5vw;
  font-weight: 700;
  padding: 2% 5%;
  box-sizing: border-box;
}
header .menu ul li span {
  position: absolute;
  inset: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  background: rgb(255 0 0 / 88%);
  padding: 0% 8%;
  color: #fff;
  font-size: 5vw;
  font-weight: 700;
}
.ticketLink .txt1 {
  color: #fff;
  font-size: 5vw;
  font-weight: 700;
  padding: 2% 5% 6%;
}
.ticketLink div {
  width: 90%;
  margin: 0 auto;
}
.ticketLink div a {
  display: block;
  width: 47%;
  background: #fff;
  box-sizing: border-box;
  padding: 5% 0;
  border-radius: 2vw;
}
.ticketLink div a img {
  width: 30%;
  margin: auto;
}
.ticketLink div a img.rydeLogo {
  padding-top: 2%;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  width: 1vw;
  height: 1vw;
}
.linkBlock {
  width: 90%;
  padding-top: 5%;
  flex-wrap: wrap;
}
.linkBlock a {
  width: 100%;
  margin-bottom: 3%;
  padding: 5%;
}
.linkBlock a .txt1 br {
  display: none;
}
.linkBlock a .txt1 {
  font-size: 4.1vw;
}
.linkBlock a .inner1 .txt2 {
  font-size: 4vw;
}
.tit1 span {
  font-size: 3vw;
}
.tit1 {
  font-size: 4vw;
}
.topAbout {
  margin-top: 10%;
}
.topAbout p {
  font-size: 3.1vw;
  width: 90%;
}
.topSpot {
  margin-top: 10%;
}
.topSpot iframe {
  width: 80%;
  aspect-ratio: 59 / 75;
}
.topChoice {
  width: 90%;
  margin: 10% auto 0;
}
.topChoice .scroll {
  overflow: auto;
  padding-bottom: 20%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.topChoice .scroll ol {
  width: 180%;
}
.topChoice ol li .num {
  font-size: 6vw;
}
.topChoice ol li .txt1 {
  font-size: 3vw;
}
.topChoice ol li .txt2 {
  font-size: 3vw;
}
.topChoice ol li .fukidashi1 {
  bottom: -10vw;
}
.topLineup {
  margin-top: -10%;
  width: 90%;
}
.topLineup #kukan1 {
  scroll-margin-top: 41vw;
}
.topLineup #kumamoto {
  scroll-margin-top: 22vw;
}
.topLineup .box1 {
  flex-wrap: wrap;
  margin-top: 8%;
}
.topLineup .box1 .left {
  width: 100%;
}
.topLineup .box1 .left .titleBox1 h3 {
  font-size: 4vw;
  width: fit-content;
  padding: 0 3% 1%;
}
.topLineup .box1 .left .titleBox1 img {
  width: 46%;
}
.topLineup .box1 .left .txt1 {
  font-size: 3.3vw;
}
.topLineup .box1 .left .txt2 {
  font-size: 3.6vw;
  margin: 3% 0;
  padding: 3% 0 3% 4%;
  border-left: 1.6vw solid #9dc35f;
}
.topLineup .box1 .left .btn {
  font-size: 3vw;
  color: #fff;
  background: #9dc35f;
  padding: 6% 0 6% 9%;
}
.topLineup .box1 .left .btn:after {
  background: url(/img/arrow1.svg) 0 0 no-repeat;
  width: 4vw;
  height: 5.4vw;
  right: 7vw;
}
.topLineup .box1 > img {
  width: 100%;
  cursor: pointer;
  margin: 6% auto 2%;
}
.topLineup .box2 {
  padding: 4%;
}
.topLineup .box2 .titlebox2 {
  flex-wrap: wrap;
}
.topLineup .box2 .titlebox2 h3 {
  font-size: 4.8vw;
}
.topLineup .box2 .titlebox2 p {
  font-size: 3.4vw;
  margin: 4% 0;
}
.topLineup .box2 .txt3 {
  font-size: 2.9vw;
  text-align: justify;
  line-height: 1.9;
}
.topLineup .kukan2 {
  margin: 13% 0;
  padding: 5% 0 13%;
}
.topLineup .kukan2 .box1 .left .txt2 {
  border-left: 1.6vw solid #5a8fe4;
}
.topLineup .kukan2 .box1 .left .btn {
  background: #5a8fe4;
  color: #fff;
}
.topLineup .kukan2 .box1 .left .btn:after{
  background: url(/img/arrow1.svg) 0 0 no-repeat;
  width: 4vw;
  height: 5.4vw;
  right: 7vw;
}
.topLineup .kumamoto .box1 .left .txt2 {
  border-left: 1.6vw solid #fbb03b;
}
.topLineup .box1 .left .txt2 span {
  font-size: 2.4vw;
  bottom: .4vw;
}
.topLineup .kumamoto .box1 .left .btn {
  background: #fbb03b;
  color: #fff;
}
.topLineup .kumamoto .box1 .left .btn:after {
  background: url(/img/arrow1.svg)0 0 no-repeat;
  width: 4vw;
  height: 5.4vw;
  right: 7vw;
}
.image-modal__content {
  z-index: 1;
  width: 95vw;
  margin: 34vh auto;
}
.topLineup .mainTxt {
  width: 100%;
  font-size: 2.1vw;
  line-height: 1.8;
}
.topTicket{
  padding-top: 0;
  position: relative;
}
.topTicket.fadein{
  transform: none;
}
.topTicket.fadein.is-visible{
  transform: none;
}
.topTicket::before{
  content: "";
  display: block;
  padding-top: 25%;
}
.topTicket .wrap1 {
  flex-wrap: wrap;
}
.topTicket .wrap1 > p {
  width: 100%;
  font-size: 3.3vw;
  line-height: 1.8;
}
.topTicket .wrap1 .right {
  width: 100%;
  margin-top: 8%;
  position: static;
}
.topTicket .wrap1 .right.fadein {
  transform: none;
}
.topTicket .wrap1 .right.fadein.is-visible {
  transform: none;
}
.topTicket .wrap1 .right div {
  width: 100%;
  background: transparent;
}
.topTicket .wrap1 .right .txt1 {
  left: 0;
  right: 0;
  margin: auto;
  top: 7vw;
  font-size: 4vw;
  width: fit-content;
  border-radius: 2vw;
}
.topTicket .wrap1 .right div a img.qr {
  display: none;
}
.topTicket .wrap1 .right div a {
  width: 46%;
  border-radius: 2vw;
  background: #fff;
}
.topTicket .wrap1 .right div a img.routeLogo, .topTicket .wrap1 .right div a img.rydeLogo {
  margin: 0 auto;
}
.topTicket .wrap1 .right.fadein.is-visible {
  transform: none;
  margin-top: 2%;
}
.topPass .txt1 {
  font-size: 3vw;
  width: 90%;
  margin: 3% auto 5%;
}
.topPass .wrap1 {
  width: 87%;
  margin-left: 13%;
  padding:3% 12% 8% 7%;
}
.topPass .box1 {
  flex-wrap: wrap;
}
.topPass .box1 .txtBox {
  order: 3;
  width: 100%;
  margin-top: 12%;
  padding-top: 12%;
}
.topPass .box1 .spImg {
  width: 45%;
  margin-top: 4%;
}
.topPass .box1 .txtBox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: left;
  padding-top: 4%;
}
.topPass .box1 .txtBox .label {
  font-size: 3.3vw;
  margin: 7% 0;
}
.topPass .box1 .txtBox p {
  font-size: 4vw;
  margin: 7% 0 7% 10%;
  width: 60%;
}
.topPass .box1 .txtBox p:nth-child(2) {
  margin-bottom: 0;
}
.topPass .box2 {
  flex-wrap: wrap;
  padding-top: 6%;
}
.topPass .box2 a img.qr{
  display: none;
}
.topPass .box2 .txt2 {
  order: 1;
  width: 48%;
  margin-right: 40%;
  font-size: 3vw;
}
.topPass .box2 a {
  order: 3;
  width: 50%;
  margin-top: 10%;
}
.topPass .box2 a img{
  display: block;
  margin: 0 auto;
}
.topPass .wrap2 {
  width: 87%;
  margin-right: 13%;
  padding: 10% 5% 7% 7%;
  margin-top: 5%;
}
.topPass .wrap2 .saleImg1 {
  width: 110%;
  max-width: 110%;
  margin-left: 4%;
}
.topPass .wrap2 .txt2 {
  font-size: 3.7vw;
}
.topPass .wrap2 .box3{
  flex-wrap: wrap;
}
.topPass .wrap2 .box3 ul {
  width: 100%;
}
.topPass .wrap2 .box3 ul li {
  font-size: 3.4vw;
}
.topPass .wrap2 .box3 .inner1 {
  margin-top: 9%;
  display: flex;
  width: 100%;
  align-items: center;
}
.topPass .wrap2 .box3 .inner1 .label {
  font-size: 3.3vw;
  width: 30%;
  margin: 0 10% 0 5%;
  text-align: center;
}
.topPass .wrap2 .box3 .inner1 .price {
  font-size: 3.7vw;
  width: 60%;
}
.topHouto {
  margin-top: 12%;
}
.topHouto > .txt1,
footer .txt1{
  font-size: 3vw;
}
.topHouto .wrap1 {
  margin-top: 8%;
  padding-top: 6%;
}
.topHouto .wrap1 .tit2{
  font-size: 3.6vw;
  padding: 2.6% 6%;
}
.topHouto .wrap1 .scanImg1 {
  width: 90%;
  margin: 0 auto;
}
.topHouto .wrap1 .txt2, .topHouto .wrap1 .txt3 {
  width: 90%;
  font-size: 3.4vw;
}
.topHouto .wrap1 .tit3 {
  font-size: 3.6vw;
  padding: 2.6% 16%;
}
footer ul {
  width: 80%;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  margin-top: 10%;
}
footer small {
  font-size: 2vw;
}








}