/* 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%;
  align-items: center;
}
.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;
}
.under article {
  margin-top: 8%;
}
.pageKukan1 {
  background: #e4ffd7;
}
.kukan1Fv {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
.followBtn {
  position: fixed;
  right: 5%;
  bottom: 2%;
  z-index: 20;
  background: #00af73;
  padding: .5% .5% 1.2% .5%;
  border-radius: .5vw;
  width: 19%;
}
.followBtn p {
  color: #fff;
  font-weight: 700;
  font-size: 1.1vw;
  margin-bottom: 5%;
  text-align: center;
  line-height: 1.4;
}
.followBtn a {
  display: block;
  width: 32%;
  margin: 0 auto;
}
.followBtn a img {
  width: 100%;
}
.pageKukan1 .topLineup .box1 .left .txt2 {
  margin-top: 6%;
  font-size: 1.2vw;
}
.pageKukan1 .topLineup .box1 .left .txt2 .bgLine {
  background: linear-gradient(transparent 70%, #9dc35f 0%);
  display: inline-block;
  margin-top: 2%;
  font-size: 1.23vw;
}
.pageKukan1 .topLineup .box1 .left .txt2 .large {
  font-size: 1.4vw;
  padding-top: 3%;
  display: block;
}
.pageKukan1 .topLineup .box1 .left .txt2 .large span {
  color: #d0121b;
  font-size: 2vw;
  line-height: 0;
  margin-right: 1%;
  position: relative;
  top: .1vw;
}
.tit4 {
  font-size: 1.9vw;
  text-align: center;
  position: relative;
  padding-bottom: 2%;
  margin-bottom: 2%;
}
.tit4:after {
  content: "";
  display: block;
  margin: 0 auto;
  height: 1px;
  width: 12%;
  background: #00af73;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.tit4 img {
  width: 8%;
  margin: 0 auto -1.6%;
}
.mapWrap {
  width: 66%;
  margin: 0 auto;
  position: relative;
}
.mapInner {
  position: relative;
}
.mapInner a {
  position: absolute;
  background: #ff5555;
  color: #fff;
  font-size: 1.1vw;
  font-weight: 700;
  padding: .5%;
  text-align: center;
  width: 15%;
  border-radius: .7vw;
  cursor: pointer;
  transition: .3s;
}
.mapInner a:hover {
  background: #fff;
  color: #ff5555;
}
.mapInner #kumamotojo {
  top: 19%;
  left: 15.6%;
}
.mapInner #nagasaki {
  top: 41%;
  left: 4.5%;
}
.mapInner #kumamon {
  top: 26%;
  left: 27.9%;
}
.mapInner #yurakkusu {
  bottom: 19%;
  left: 18.5%;
}
.mapInner #suizenji {
  right: 16%;
  bottom: 38.5%;
}
.mapInner #ruffy {
  bottom: 27.5%;
  right: 7.9%;
}
.mapModal {
  position: fixed;
  background: #72806b;
  width: 100vw;
  height: 100vh;
  display: none;
  top: 0;
  left: 0;
  z-index: 20;
  -webkit-overflow-scrolling: touch;
}
.mapModal.active {
  display: block;
}
.mapModal .modalInner {
  width: 80%;
  height: 90%;
  margin: auto;
  inset: 0;
  position: absolute;
  background: #fff;
  box-sizing: border-box;
  padding: 3% 3% 0;
  border-radius: 1.5vw;
  display: flex;
  flex-direction: column;
}
.mapModal .modalBox {
  display: none;
  flex: 1;
  min-height: 0;
  box-sizing: border-box;
  padding-bottom: 0;
  position: relative;
  width: 100%;
}
.mapModal .modalBox.active {
  display: flex;
  flex-direction: column;
}
.mapModal .modalBox h3 {
  flex-shrink: 0;
  font-size: 1.9vw;
  margin-bottom: 2%;
}
.mapModal .modalBox .box1 .left {
  width: 40%;
}
.mapModal .modalBox .box1 .right {
  width: 58%;
}
.mapModal .modalBox .box1 .right .txt1 {
  background: #ebf9fd;
  padding: 5%;
  box-sizing: border-box;
  font-size: 1.1vw;
  font-weight: 700;
  margin-bottom: 5%;
}
.mapModal .modalBox .box1 .left .snsBox {
  display: flex;
  margin-top: 3%;
}
.mapModal .modalBox .box1 .left .snsBox a {
  width: 12%;
  margin-right: 3%;
}
.gmLink {
  display: flex;
  align-items: center;
  font-size: 1.3vw;
  font-weight: 700;
}
.gmLink img {
  width: 6%;
  margin-right: 2%;
}
.mapModal .modalBox .box1 .right .accessBox {
  margin-top: 10%;
  padding-top: 4%;
}
.mapModal .modalBox .box1 .right .accessBox .txt2 {
  border-top: 1px solid #000;
  padding: 3% 4% 0;
  font-weight: 700;
  font-size: 1.25vw;
}
.mapModal .modalBox .box1 .right .accessBox ul {
  padding: 2% 4% 0;
}
.mapModal .modalBox .box1 .right .accessBox ul li {
  font-size: 1.2vw;
  font-weight: 700;
}
.modalBox .box1 {
  align-items: flex-start;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nextprev {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 15;
  width: 100%;
  height: 10%;
}
.nextprev .prev {
  left: -3%;
  margin: auto;
}
.nextprev .next {
  right: -3%;
  margin: auto;
  transform: scale(-1, 1);

}
.nextprev a {
  width: 6%;
  display: block;
  position: absolute;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.nextprev a img{
  width: 100%;
}
.modalBox .closeBtn {
  position: relative;
  flex-shrink: 0;
  width: calc(102% + 6%);
  margin: 0 -4% 0;
  text-align: center;
  background: #00af73;
  border-radius: 0 0 1.5vw 1.5vw;
  color: #fff;
  font-size: 2vw;
  font-weight: 700;
  line-height: 1;
  padding: 2.5% 0;
  padding-bottom: calc(2.5% + env(safe-area-inset-bottom, 0px));
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  z-index: 10;
}
.kukan1Gmap {
  margin-top: 4%;
}
.kukan1Gmap iframe {
  width: 51%;
  height: 38vw;
  margin: 0 auto;
  display: block;
}
.kukan1Haishin {
  background: #00af73;
  margin: 9% 0;
  padding: 6% 0;
}
.kukan1Haishin .box1 {
  align-items: center;
  width: 80%;
  margin: 0 auto;
}
.kukan1Haishin .box1 p {
  color: #fff;
  font-size: 1.9vw;
  font-weight: 500;
}
.kukan1Haishin .box1 img {
  width: 35%;
}
.kukan1PlanWrap {
  margin: 5% auto 0;
  width: 80%;
}
.kukan1PlanInner {
  background: #a9cce3;
  overflow: hidden;
}
.kukan1PlanInner.is-course-b {
  background: #5ecba8;
}
.kukan1Plan .tabBox {
  display: flex;
  margin: 0;
}
.kukan1Plan .tabBox p {
  flex: 1;
  text-align: center;
  font-size: 1.4vw;
  font-weight: 700;
  padding: 2% 1%;
  margin: 0;
  cursor: pointer;
  line-height: 1.45;
  transition: background 0.3s, color 0.3s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.kukan1Plan .tabBox p.active {
  color: #00419d;
}
.kukan1Plan .tabBox p:not(.active) {
  background: #45b88e;
  color: #111;
}
.kukan1PlanInner.is-course-b .tabBox p:not(.active) {
  background: #b8e6f7;
  color: #00419d;
}
.kukan1PlanB {
  display: none;
}
.kukan1PlanA, .kukan1PlanB {
  padding-bottom: 5%;
}
.planBoxWrap {
  position: relative;
  padding: 5% 12% 2%;
}
.planBoxWrap::before {
  content: "";
  position: absolute;
  left: 23%;
  top: 2%;
  bottom: 2%;
  width: 10px;
  background-image: radial-gradient(circle at center 5px, #00419d 4px, transparent 4px);
  background-size: 10px 16px;
  background-position: center top;
  background-repeat: repeat-y;
  z-index: 0;
}
.planBoxWrap > * {
  position: relative;
  z-index: 1;
}
.planBoxWrap .timeBox {
  display: flex;
  width: 100%;
  margin: 0;
  align-items: stretch;
}
.planBoxWrap .timeBox .time {
  width: 30%;
  background: #00419d;
  color: #fff;
  font-size: 1.7vw;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.2% 0;
  margin: 0;
  line-height: 1.3;
}
.planBoxWrap .timeBox .place {
  width: 70%;
  background: #fff;
  color: #00419d;
  font-size: 1.7vw;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1% 2%;
  margin: 0;
  line-height: 1.35;
}
.kukan1PlanB .planBoxWrap .timeBox .place {
  color: #000;
}
.planBoxWrap .scheduleBox {
  background: #fff;
  width: 73%;
  padding: 2% 4% 3.5%;
  box-sizing: border-box;
  margin: 5% 0 5% 27%;
}
.planBoxWrap .scheduleBox ul li {
  border-bottom: 4px dotted #3d8fc9;
  padding: 2.2% 0;
  font-size: 0.95vw;
  align-items: flex-start;
  gap: 2%;
}
.planBoxWrap .scheduleBox ul li span:first-child {
  font-weight: 700;
  width: 36%;
  flex-shrink: 0;
  color: #111;
  font-size: 1.3vw;
}
.planBoxWrap .scheduleBox ul li span:last-child {
  width: 62%;
  text-align: left;
  color: #111;
  line-height: 1.5;
  font-size: 1.2vw;
  font-weight: 700;
}
.planBoxWrap .imgTxtBox {
  display: flex;
  margin-bottom: 3.5%;
  align-items: stretch;
}
.planBoxWrap .imgTxtBox img {
  width: 30%;
  object-fit: cover;
  align-self: stretch;
}
.planBoxWrap .imgTxtBox .txtBox {
  width: 70%;
  background: #dceef8;
  padding: 3% 5% 0;
  box-sizing: border-box;
}
.kukan1PlanB .planBoxWrap .imgTxtBox .txtBox {
  background: #daffe2;
}
.kukan1PlanB .planBoxWrap .timeBox .time {
  background: #008d47;
}
.planBoxWrap .imgTxtBox .txtBox .point {
  display: inline-block;
  background: #ff5a5f;
  color: #fff;
  font-size: 1.4vw;
  font-weight: 700;
  padding: 1.5% 2.5%;
  margin: 0 0 5%;
  line-height: 1;
}
.planBoxWrap .imgTxtBox .txtBox ul li {
  font-size: 1.2vw;
  font-weight: 700;
  line-height: 2.4;
  color: #111;
}
.planBoxWrap .imgTxtBox .txtBox ul li:last-child {
  margin-top: 1.5%;
}
.planPriceBox {
  margin: 0 auto;
  padding: 3% 4%;
  background: #fff;
  box-sizing: border-box;
  width: 76%;
}
.planPriceBox .box1 {
  align-items: flex-start;
  gap: 3%;
}
.planPriceBox .box1 .left,
.planPriceBox .box1 .right {
    width: 47%;
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.planPriceBox .price {
  width: 100%;
  font-size: 1.2vw;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  padding: 3.5% 3%;
  margin: 0;
  box-sizing: border-box;
}
.planPriceBox .price .big {
  font-size: 2.2vw;
  font-weight: 900;
  line-height: 1;
  margin-right: 1%;
}
.planPriceBox .price .small {
  font-size: 1vw;
  font-weight: 700;
  margin-top: 0.5%;
}
.planPriceBox .left .ver1 {
  background: #fff;
  border: 1px solid #000;
  color: #111;
}
.planPriceBox .left .ver1 .big {
  color: #111;
}
.planPriceBox .left .ver2 {
  background: #000;
  color: #fff;
}
.planPriceBox .left .ver2 .big,
.planPriceBox .left .ver2 .small {
  color: #fff;
}
.planPriceBox .right .ver3,
.planPriceBox .right .ver4 {
    background: #e60012;
    color: #fff;
    text-align: left;
    padding: 1.5% 9%;
    line-height: 1;
    position: relative;
}
.planPriceBox .right .ver3 .small,
.planPriceBox .right .ver4 .price .small {
  position: absolute;
  top: 5%;
  right: 18%;
  color: #fff;
}
.planPriceBox .right .ver3 .big {
  line-height: 1;
  display: inline-block;
  height: 26px;
  position: relative;
  top: 0.1vw;
  margin-right: 2%;
}
.planPriceBox .right .ver4 {
  background: #00419d;
  color: #fff;
}
.planPriceBox .right .ver4 .big,
.planPriceBox .right .ver4 .small {
  color: #fff;
}
.planPriceBox .plus,
.planPriceBox .equal {
    text-align: center;
    font-size: 2vw;
    font-weight: 700;
    color: #000;
    margin: 1% 0;
    line-height: 1;
    transform: rotate(90deg);
}
.planPriceBox .right .ver4 .small {
  font-size: .8vw;
}
.planPriceBox .total {
  text-align: center;
  font-size: 2.2vw;
  font-weight: 900;
  line-height: 1.2;
  margin: 0.5% 0 0;
}
.planPriceBox .total::after {
  content: "円";
  font-size: 1.4vw;
  font-weight: 700;
  margin-left: 0.2em;
}
.planPriceBox .left .total {
  color: #000;
}
.planPriceBox .right .total {
  color: #e60012;
}
.planPriceBox .right .total::after {
  color: #e60012;
}
.planPriceBox .box2 {
  margin-top: 3%;
  background: #fff200;
  border-radius: 0;
  padding: 2.2% 3%;
  text-align: center;
}
.planPriceBox .box2 p {
  color: #e63e5c;
  font-size: 2.6vw;
  font-weight: 900;
  margin: 0;
  line-height: 1.4;
  -webkit-text-stroke: 0.15vw #fff;
  paint-order: stroke fill;
  text-shadow: 0.15vw 0.15vw 0 #fff,
  -0.15vw -0.15vw 0 #fff,
  0.15vw -0.15vw 0 #fff,
  -0.15vw 0.15vw 0 #fff;
}
.planBoxWrap iframe {
  width: 100%;
  height: 28vw;
  margin-top: 4%;
  border: 0;
  border-radius: 0.8vw;
  display: block;
}
.planBoxWrap .sansyo {
  text-align: center;
  font-size: 1.1vw;
  font-weight: 700;
  color: #00419d;
  margin: 4% 0 2%;
}
.kukan1PlanInner iframe {
  width: 76%;
  height: 38vw;
  margin: 0 auto;
  display: block;
}
.kukan1PlanInner .kome {
  text-align: center;
  margin: 2vw 0 3vw;
  font-size: 1.3vw;
  font-weight: 700;
}
.kukan1Spot {
  margin-top: 8%;
}
.spotWrap {
  width: 80%;
  margin: 3% auto 0;
  align-items: stretch;
  gap: 3.5%;
}
.spotBox {
  width: 31%;
  background: #fff;
  padding: 2%;
  border-radius: 1vw;
  box-shadow: .2vw .2vw .8vw #00000078;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.spotSlide {
  position: relative;
  overflow: visible;
  width: 100%;
  flex-shrink: 0;
}
.spotBox h3:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 40%;
  height: 1px;
  background: #000;
  margin: auto;
  left: 0;
  right: 0;
}
.spotSlide .spotSlideSwiper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.spotSlide .swiper-slide {
  height: 100%;
}
.spotSlide .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.spotSlide .prevNextBox {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.spotSlide .prevNextBox img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8%;
  height: auto;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.spotSlide .prevNextBox .prev {
  left: -5%;
}
.spotSlide .prevNextBox .next {
  right: -5%;
  transform: scale(-1, 1);
}
.spotBox h3 {
  font-size: 1.5vw;
  font-weight: 700;
  text-align: center;
  margin: 8% 0 6%;
  padding-bottom: 3%;
  position: relative;
}
.spotBox .tit1 {
  font-size: 1vw;
  line-height: 1.8;
  margin-bottom: 0;
  color: #000;
  text-align: justify;
  font-weight: 700;
  flex-grow: 1;
}
.spotBox h4 {
  font-size: 1.1vw;
  font-weight: 700;
  color: #000;
  margin: 16% auto 4%;
  display: table;
  border: 1px solid #000;
  padding: 2% 6%;
}
.spotBox ul {
  min-height: 5.5vw;
}
.spotBox ul li {
  font-size: 0.95vw;
  font-weight: 700;
  line-height: 2;
}
.kukan1Download {
  background: #00af73;
  margin: 6% 0 0;
  padding: 6% 0;
}
.kukan1Download .downloadBox {
  width: 84%;
  margin: 0 auto;
  align-items: center;
}
.kukan1Download .downloadBox .left {
  width: 60%;
  margin-right: 5%;
}
.kukan1Download .downloadBox .left .txt1 {
  color: #fff;
  font-size: 2vw;
  font-weight: 700;
}
.kukan1Download .downloadBox .left .txt2 {
  background: #f7931e;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.7vw;
  padding: 1% 0;
  border-radius: 50vw;
  margin-top: 2%;
}
.kukan1Download .downloadBoxList{
  width: 35%;
}
.downloadBoxList {
  background: #fff;
  border-radius: 1vw;
  padding: 3% 2%;
  box-sizing: border-box;
}
.downloadBoxList a {
  width: 48%;
  align-items: center;
}
.downloadBoxList a img{
  width: 45%;
}
.downloadBoxList a img.routeLogo,
.downloadBoxList a img.rydeLogo{
  height: 74%;
}
.under footer{
  margin-top: 0;
}



















@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;
}
.kukan1PlanWrap {
  width: 92%;
}
.kukan1Plan .tabBox p {
  font-size: 2.8vw;
  padding: 3.5% 2%;
}
.kukan1Fv {
  width: 100%;
}
.kukan1Fv img{
  width: 100%;
}
.under article {
  margin-top: 15%;
}
.pageKukan1 .topLineup {
  margin-top: 12%;
}
.pageKukan1 .topLineup .box1 .left .txt2 {
  font-size: 3.6vw;
}
.pageKukan1 .topLineup .box1 .left .txt2 .bgLine {
  display: inline;
  font-size: 3.6vw;
}
.pageKukan1 .topLineup .box1 .left .txt2 .large {
  font-size: 4vw;
}
.pageKukan1 .topLineup .box1 .left .txt2 .large span {
  font-size: 6vw;
}
.tit4 img {
  width: 18%;
  margin: 0 auto -3%;
}
.tit4 {
  font-size: 3.9vw;
  padding-bottom: 3%;
  margin-bottom: 6%;
}
.mapWrap {
  width: 95%;
  overflow: auto;
  margin-left: 5%;
}
.mapInner {
  width: 166vw;
}
.mapInner a {
  font-size: 2.8vw;
  font-weight: 700;
}
.mapModal .modalBox {
  overflow: unset;
}
.mapModal .modalBox h3 {
  font-size: 4.4vw;
  margin-bottom: 2%;
}
.modalBox .box1 {
  align-items: flex-start;
  flex-direction: column;
  padding-bottom: 10%;
}
.mapModal .modalInner {
  width: 95%;
  height: 80%;
  padding: 5% 5% 0;
  overflow: unset;
  display: flex;
  flex-direction: column;
}
.mapModal .modalBox .box1 .left {
  width: 100%;
}
.nextprev .next {
  right: -2%;
}
.nextprev .prev {
  left: -2%;
}
.nextprev a {
  width: 9%;
}
.mapModal .modalBox .box1 .right {
    width: 100%;
    margin-top: 3%;
}
.mapModal .modalBox .box1 .right .txt1 {
  font-size: 3.4vw;
  text-align: justify;
}
.gmLink {
  font-size: 3.3vw;
}
.mapModal .modalBox .box1 .right .accessBox {
  margin-top: 4%;
  padding-top: 4%;
}
.mapModal .modalBox .box1 .right .accessBox .txt2 {
  font-size: 3.25vw;
}
.mapModal .modalBox .box1 .right .accessBox ul li {
  font-size: 3.2vw;
}
.modalBox .closeBtn {
  width: calc(102% + 10%);
  margin: 0 -6% 0;
  font-size: 5vw;
  border-radius: 0 0 1.5vw 1.5vw;
  padding: 4% 0;
  padding-bottom: calc(4% + env(safe-area-inset-bottom, 0px));
  min-height: 48px;
}
.br{
  display: block;
}
.kukan1Gmap iframe {
  width: 90%;
  height: 110vw;
}
.kukan1Haishin .box1 {
  flex-wrap: wrap;
}
.kukan1Haishin .box1 p {
  width: 100%;
  text-align: center;
  font-size: 3vw;
  margin-bottom: 5%;
}
.kukan1Haishin .box1 img {
  width: 70%;
  margin: 0 auto;
}
.planBoxWrap {
  padding: 5% 4% 6%;
}
.planBoxWrap::before {
  left: 16%;
}
.planBoxWrap .timeBox .time {
  width: 28%;
  font-size: 3.6vw;
  padding: 2.5% 0;
}
.planBoxWrap .timeBox .place {
  width: 72%;
  font-size: 3.2vw;
  padding: 2.5% 2%;
}
.planBoxWrap .scheduleBox {
  width: 72%;
  margin: 5% 0 5% 28%;
  padding: 4% 5%;
  border-radius: 0;
}
.planBoxWrap .scheduleBox ul li {
  flex-wrap: wrap;
  font-size: 2.8vw;
  padding: 3.5% 0;
  align-items: center;
}
.planBoxWrap .scheduleBox ul li span:first-child,
.planBoxWrap .scheduleBox ul li span:last-child {
    font-size: 3vw;
}
.planBoxWrap .scheduleBox ul li span:last-child {
  margin-top: 1%;
}
.planBoxWrap .imgTxtBox {
  flex-wrap: wrap;
  margin-bottom: 5%;
}
.planBoxWrap .imgTxtBox img {
  width: 28%;
}
.planBoxWrap .imgTxtBox .txtBox {
  width: 72%;
  padding: 2%;
}
.planBoxWrap .imgTxtBox .txtBox .point {
  font-size: 2.4vw;
  padding: 1.8% 3%;
  margin-bottom: 3%;
}
.planBoxWrap .imgTxtBox .txtBox ul li {
  font-size: 2.3vw;
  line-height: 1.8;
}
.planPriceBox {
  padding: 3%;
  width: 92%;
}
.planPriceBox .box1 .left, .planPriceBox .box1 .right {
  width: 48%;
}
.planPriceBox .price {
  font-size: 2vw;
}
.planPriceBox .right .ver3 .big{
  height: auto;
}
.planPriceBox .price .big {
  font-size: 3.6vw;
  height: auto;
  padding: .9% 0;
}
.planPriceBox .price .small {
  font-size: 1.8vw;
}
.planPriceBox .right .ver3 .small, .planPriceBox .right .ver4 .price .small {
  right: 1%;
  top: -1%;
}
.planPriceBox .right .ver4 {
  padding: 1.5% 3%;
}
.planPriceBox .right .ver4 .small {
  font-size: 1.1vw;
}
.planPriceBox .box2 p {
  font-size: 3.8vw;
}
.planPriceBox .total {
  font-size: 3.6vw;
}
.planPriceBox .plus, .planPriceBox .equal {
  font-size: 4vw;
}
.kukan1PlanInner .kome {
  font-size: 2.6vw;
}
.kukan1PlanInner iframe {
  width: 84%;
  height: 110vw;
}
.kukan1PlanA, .kukan1PlanB {
  padding-bottom: 8%;
}
.kukan1Spot {
  overflow: hidden;
}
.spotWrap {
  width: 100%;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 5vw;
  margin: 0;
  padding: 0 5vw 6vw;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scroll-padding: 0 5vw;
  scrollbar-width: none;
}
.spotWrap::-webkit-scrollbar {
  display: none;
}
.spotBox {
  flex: 0 0 65vw;
  width: 65vw;
  min-width: 65vw;
  margin-bottom: 0;
  padding: 4%;
  border-radius: 3vw;
  box-shadow: 1vw 1vw 3vw #00000040;
  scroll-snap-align: start;
}
.spotBox .tit1 {
  flex-grow: 0;
  font-size: 2.7vw;
  margin-bottom: 5%;
}
.spotBox ul {
  min-height: 0;
}
.spotSlide .prevNextBox img {
  width: 8%;
}
.spotSlide .prevNextBox .prev {
  left: -3%;
}
.spotSlide .prevNextBox .next {
  right: -3%;
}
.spotBox h3 {
  font-size: 4.5vw;
  margin: 6% 0 5%;
}
.spotBox h4 {
  font-size: 2.9vw;
  margin: 8% auto 5%;
}
.spotBox ul li {
  font-size: 2.8vw;
}
.kukan1Download .downloadBox {
  flex-wrap: wrap;
}
.kukan1Download .downloadBox .left {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.kukan1Download .downloadBox .left .txt1 {
  font-size: 3.2vw;
}
.kukan1Download .downloadBoxList {
  width: 93%;
  margin: 5% auto 3%;
  background: transparent;
}
.downloadBoxList a {
  width: 46%;
  align-items: center;
  background: #fff;
  border-radius: 1.4vw;
}
.downloadBoxList a img.qr {
  display: none;
}
.downloadBoxList a img {
  width: 45%;
  margin: 0 auto;
}
.kukan1Download .downloadBox .txt2 {
  background: #f7931e;
  width: 90%;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  font-size: 3.6vw;
  font-weight: 700;
  padding: 2% 0;
  border-radius: 20vw;
}
.followBtn{
  display: none;
}










}