@charset "UTF-8";
/* ---------------------------------------*/
/* keyvisual */
/* ---------------------------------------*/
#keyvisual {
  position: relative;
}
#keyvisual::before {
  display: block;
  content: "";
  width: 630px;
  height: 914px;
  background: url(../img/keyvisual_deco-l.webp) no-repeat center/cover;
  position: absolute;
  top: 226px;
  right: calc(50% + 347px);
}
#keyvisual::after {
  display: block;
  content: "";
  width: 445px;
  height: 933px;
  background: url(../img/keyvisual_deco-r.webp) no-repeat center/cover;
  position: absolute;
  top: 137px;
  left: calc(50% + 347px);
}
@media screen and (max-width: 768px) {
  #keyvisual::before, #keyvisual::after {
    display: none;
  }
}

.keyvisual-banner {
  width: 280px;
  position: absolute;
  top: 77px;
  left: 45px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .keyvisual-banner {
    width: 32%;
    top: 28px;
    left: 20px;
  }
}

.keyvisual-wave {
  height: 83px;
  position: relative;
  overflow: hidden;
}
.keyvisual-wave.is-bottom {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .keyvisual-wave {
    height: 32px;
  }
}

.keyvisual-wave-01,
.keyvisual-wave-02,
.keyvisual-wave-03 {
  width: 2500px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-animation: waveMove-pc 2.5s infinite ease-in-out;
          animation: waveMove-pc 2.5s infinite ease-in-out;
}
@media screen and (max-width: 767px) {
  .keyvisual-wave-01,
  .keyvisual-wave-02,
  .keyvisual-wave-03 {
    width: 100%;
    bottom: -2px;
    -webkit-animation: waveMove-sp 2.5s infinite ease-in-out;
            animation: waveMove-sp 2.5s infinite ease-in-out;
  }
}

@-webkit-keyframes waveMove-pc {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(calc(10px * var(--random-factor)));
            transform: translateY(calc(10px * var(--random-factor)));
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes waveMove-pc {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(calc(10px * var(--random-factor)));
            transform: translateY(calc(10px * var(--random-factor)));
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes waveMove-sp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(calc(5px * var(--random-factor)));
            transform: translateY(calc(5px * var(--random-factor)));
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes waveMove-sp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(calc(5px * var(--random-factor)));
            transform: translateY(calc(5px * var(--random-factor)));
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 個別の動きにバリエーションを持たせる */
.keyvisual-wave-01 {
  --random-factor: 0.8; /* 動きの範囲 */
  -webkit-animation-delay: 0s;
          animation-delay: 0s; /* アニメーション開始の遅延 */
}

.keyvisual-wave-02 {
  --random-factor: 1; /* 動きの範囲 */
  -webkit-animation-delay: 1s;
          animation-delay: 1s; /* アニメーション開始の遅延 */
}

.keyvisual-wave-03 {
  --random-factor: 0.5; /* 動きの範囲 */
  -webkit-animation-delay: 2s;
          animation-delay: 2s; /* アニメーション開始の遅延 */
}

.switch-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  position: absolute;
  top: 80px;
  right: 45px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .switch-list {
    top: 27px;
    right: 10px;
    gap: 5px;
  }
}

.switch-list__item {
  width: 50px;
}
@media screen and (max-width: 768px) {
  .switch-list__item {
    width: 30px;
  }
}

.keyvisual-contents {
  background: url(../img/keyvisual_content_bg-pc.webp) repeat-x;
  background-size: 100% 100%;
  padding: 0 0 60px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .keyvisual-contents {
    background: url(../img/keyvisual_content_bg-sp.webp) repeat-x;
    background-size: 100% 100%;
    padding: 0 0 20px;
    height: 132vw;
  }
}

.keyvisual-contents-wrapper {
  max-width: 1322px;
  margin: 0 auto;
  padding: 0 45px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .keyvisual-contents-wrapper {
    padding: 0;
  }
}

.keyvisual-maintitle {
  margin: 0 0 30px;
}
@media screen and (max-width: 768px) {
  .keyvisual-maintitle {
    margin: 0;
  }
}

.keyvisual-button-schedule {
  display: inline-block;
  width: 52.7%;
  aspect-ratio: 650/135;
  background: url(../img/keyvisual_button-schedule-pc.webp) no-repeat center/cover;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  position: relative;
  margin: 0 auto 20px;
  z-index: 2;
}
.keyvisual-button-schedule::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/keyvisual_button-schedule-pc-hover.webp) no-repeat center/cover;
  opacity: 0;
  -webkit-transition: 400ms;
  transition: 400ms;
}
.keyvisual-button-schedule:hover {
  opacity: 1;
}
.keyvisual-button-schedule:hover::after {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .keyvisual-button-schedule {
    width: 85%;
    margin: auto;
    position: relatibe;
    top: -36vw;
  }
  .keyvisual-button-schedule:hover::after {
    display: none;
  }
}

.keyvisual-debut {
  width: 82%;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .keyvisual-debut {
    width: 85%;
    margin: 0 auto;
    top: -34vw;
  }
}

/* ---------------------------------------*/
/* area */
/* ---------------------------------------*/
#area {
  padding: 157px 0 96px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#CCF8EA));
  background: linear-gradient(to bottom, #fff, #CCF8EA);
  position: relative;
}
#area::before {
  display: block;
  content: "";
  width: 192px;
  height: 317px;
  background: url(../img/area_deco-l.webp) no-repeat center/cover;
  position: absolute;
  bottom: 154px;
  right: calc(50% + 680px);
}
#area::after {
  display: block;
  content: "";
  width: 98px;
  height: 98px;
  background: url(../img/area_deco-r.webp) no-repeat center/cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% + 770px);
  margin: auto;
}
@media screen and (max-width: 768px) {
  #area {
    padding: 105px 0 30vw;
  }
  #area::before, #area::after {
    display: none;
  }
}

.area-heading {
  width: 360px;
  margin: 0 auto 55px;
  position: relative;
}
.area-heading::after {
  display: block;
  content: "";
  width: 265px;
  height: 220px;
  background: url(../img/area_heading_deco.webp) no-repeat center/cover;
  position: absolute;
  top: -102px;
  left: -160px;
}
@media screen and (max-width: 768px) {
  .area-heading {
    width: 72%;
    margin: 0 auto 40px;
  }
  .area-heading::after {
    width: 136px;
    height: 110px;
    top: -90px;
    left: -45px;
  }
}

.area-map {
  position: relative;
}
.area-map::after {
  display: block;
  content: "";
  width: 166px;
  height: 158px;
  background: url(../img/area_map_deco.webp) no-repeat center/cover;
  position: absolute;
  bottom: 117px;
  right: -120px;
}
@media screen and (max-width: 768px) {
  .area-map::after {
    display: none;
  }
}

/* ---------------------------------------*/
/* info-schecule */
/* ---------------------------------------*/
#info-schedule {
  margin: -154px 0 0;
  padding: 154px 0 0;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#F7D3BF));
  background: linear-gradient(to bottom, #fff, #F7D3BF);
  -webkit-mask-image: url("../img/info_mask-wave-pc.svg"), url("../img/mask-square.svg");
          mask-image: url("../img/info_mask-wave-pc.svg"), url("../img/mask-square.svg");
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  -webkit-mask-repeat: no-repeat, repeat;
          mask-repeat: no-repeat, repeat;
  -webkit-mask-position: top center, top;
          mask-position: top center, top;
  clip-path: inset(0.5px 0 0 0);
}
#info-schedule::before {
  display: block;
  content: "";
  width: 170px;
  height: 145px;
  background: url(../img/info-schecule_deco-l.webp) no-repeat center/cover;
  position: absolute;
  bottom: 348px;
  right: calc(50% + 555px);
}
#info-schedule::after {
  display: block;
  content: "";
  width: 210px;
  height: 444px;
  background: url(../img/info-schecule_deco-r.webp) no-repeat center/cover;
  position: absolute;
  top: 455px;
  left: calc(50% + 450px);
}
@media screen and (max-width: 768px) {
  #info-schedule {
    margin: -20vw 0 0;
    padding: 20vw 0 15vw;
    -webkit-mask-image: url("../img/info_mask-wave-sp.svg"), url("../img/mask-square.svg");
            mask-image: url("../img/info_mask-wave-sp.svg"), url("../img/mask-square.svg");
    -webkit-mask-size: 100%, auto;
            mask-size: 100%, auto;
  }
  #info-schedule::before, #info-schedule::after {
    display: none;
  }
}

/* --- info --- */
#info {
  padding: 120px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 160px 0 0;
  }
  #info::after {
    display: block;
    content: "";
    width: 9.3vw;
    height: 10.9vw;
    background: url(../img/info_deco-r-sp.webp) no-repeat center/cover;
    position: absolute;
    bottom: -21.3vw;
    right: 10.6vw;
  }
}

.info-heading {
  width: 360px;
  margin: 0 auto 43px;
  position: relative;
}
.info-heading::after {
  display: block;
  content: "";
  width: 308px;
  height: 297px;
  background: url(../img/info_heading_deco.webp) no-repeat center/cover;
  position: absolute;
  top: -180px;
  right: -194px;
}
@media screen and (max-width: 768px) {
  .info-heading {
    width: 71%;
    margin: 0 auto 32px;
  }
  .info-heading::after {
    width: 154px;
    height: 149px;
    top: -133px;
    right: 0;
    left: 0;
    margin: auto;
  }
}

.info-news {
  background: #fff;
  border: solid 2px #0000A0;
  border-radius: 20px;
  padding: 45px 50px 45px 68px;
  margin: 0 auto;
  width: 60%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .info-news {
    border: solid 1px #0000A0;
    width: 100%;
    padding: 25px 40px;
    border-radius: 10px;
  }
}

.info-news-list__item {
  margin: 0 0 1em;
}
.info-news-list__item:last-child {
  margin: 0;
}

.info-news-list-subject {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.info-news-list-subject dt {
  width: 6em;
  font-size: 1.8rem;
  font-weight: 500;
  color: #0000A0;
  letter-spacing: 0.03em;
}
.info-news-list-subject dd {
  width: calc(100% - 6em);
  font-size: 1.8rem;
  font-weight: 500;
}
.info-news-list-subject dd p {
  max-width: 100%;
  display: inline-block;
  padding-right: 3.8em;
  position: relative;
}
.info-news-list-subject dd p.is-new::after {
  display: inline-block;
  content: "NEW";
  font-family: "Jost", sanserif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  background: #FF8A32;
  position: absolute;
  padding: 5px 15px;
  border-radius: 1em;
  top: 0;
  right: 0;
}
.info-news-list-subject dd p span {
  display: inline-block;
  max-width: 100%;
}
.info-news-list-subject dd p span a {
  text-decoration: underline;
  color: #000 !important;
}
@media screen and (max-width: 1024px) {
  .info-news-list-subject dd p span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 768px) {
  .info-news-list-subject {
    display: block;
  }
  .info-news-list-subject dt {
    width: 100%;
    font-size: 1.6rem;
  }
  .info-news-list-subject dd {
    width: 100%;
    font-size: 1.6rem;
  }
  .info-news-list-subject dd p {
    padding-right: 0;
  }
  .info-news-list-subject dd p span {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
  .info-news-list-subject dd p.is-new::after {
    font-size: 1.3rem;
    padding: 4px 7px;
    top: -1.7em;
    right: auto;
    left: 6em;
  }
}

/* -- ride -- */
#ride {
  padding: 328px 0 0;
}
@media screen and (max-width: 768px) {
  #ride {
    padding: 168px 0 0;
  }
}

.ride-heading {
  width: 414px;
  margin: 0 auto 48px;
  position: relative;
}
.ride-heading::after {
  display: block;
  content: "";
  width: 308px;
  height: 303px;
  background: url(../img/ride_heading_deco.webp) no-repeat center/cover;
  position: absolute;
  top: -269px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .ride-heading {
    width: 81%;
    margin: 0 auto 28px;
  }
  .ride-heading::after {
    width: 154px;
    height: 152px;
    top: -142px;
  }
}

.ride-description {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.77;
}
@media screen and (max-width: 768px) {
  .ride-description {
    font-size: 1.6rem;
  }
}

.ride-note {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 15px 0 0;
}

/*-- schedule --*/
#schedule {
  padding: 232px 0 370px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #schedule {
    padding: 100px 0 130px;
  }
  #schedule::before {
    display: block;
    content: "";
    width: 11.7vw;
    height: 14.9vw;
    background: url(../img/schedule_deco-l-sp.webp) no-repeat center/cover;
    position: absolute;
    top: 48vw;
    left: 10vw;
  }
  #schedule::after {
    display: block;
    content: "";
    width: 11.2vw;
    height: 16vw;
    background: url(../img/schedule_deco-r-sp.webp) no-repeat center/cover;
    position: absolute;
    bottom: 13.3vw;
    right: -1.3vw;
  }
}

.schedule-heading {
  width: 360px;
  margin: 0 auto 45px;
  position: relative;
}
.schedule-heading::after {
  display: block;
  content: "";
  width: 256px;
  height: 229px;
  background: url(../img/schedule_heading_deco.webp) no-repeat center/cover;
  position: absolute;
  bottom: 0;
  left: -150px;
}
@media screen and (max-width: 768px) {
  .schedule-heading {
    width: 71%;
    margin: 0 auto 40vw;
  }
  .schedule-heading::after {
    width: 128px;
    height: 120px;
    bottom: -15px;
    left: -60px;
  }
}

.schedule-button {
  position: relative;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .schedule-button {
    margin: 0 auto 20px;
  }
}

.schedule-button__image {
  display: inline-block;
  width: 80%;
  aspect-ratio: 804/234;
  background: url(../img/schedule_button-pc.webp) no-repeat center/cover;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  position: relative;
}
.schedule-button__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/schedule_button-pc-hover.webp) no-repeat center/cover;
  opacity: 0;
  -webkit-transition: 400ms;
  transition: 400ms;
}
.schedule-button__image:hover {
  opacity: 1;
}
.schedule-button__image:hover::after {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .schedule-button__image {
    width: 100%;
    aspect-ratio: 630/190;
    background: url(../img/schedule_button-sp.webp) no-repeat center/cover;
    margin: 0 auto;
  }
  .schedule-button__image:hover::after {
    display: none;
  }
}

.schedule-balloon-reserve {
  width: 29.2%;
  position: absolute;
  top: -80%;
  right: 0;
}
@media screen and (max-width: 768px) {
  .schedule-balloon-reserve {
    width: 50%;
    top: -33vw;
    left: 0;
    right: 0;
    margin: auto;
  }
}

.schedule-description {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.77;
}
@media screen and (max-width: 768px) {
  .schedule-description {
    font-size: 1.6rem;
  }
}

/* ---------------------------------------*/
/* trip */
/* ---------------------------------------*/
#trip {
  margin: -262px 0 0;
  padding: 352px 0 400px;
  position: relative;
  background: linear-gradient(170deg, #fff 0%, #61DEFC 20%, #5DACFD 100%);
  -webkit-mask-image: url("../img/trip_mask-wave-pc.svg"), url("../img/mask-square.svg");
          mask-image: url("../img/trip_mask-wave-pc.svg"), url("../img/mask-square.svg");
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  -webkit-mask-repeat: no-repeat, repeat;
          mask-repeat: no-repeat, repeat;
  -webkit-mask-position: top center, top;
          mask-position: top center, top;
  clip-path: inset(0.5px 0 0 0);
}
#trip .wrapper::before {
  display: block;
  content: "";
  width: 8.4%;
  aspect-ratio: 92/158;
  background: url(../img/trip_deco-l-pc.webp) no-repeat center/cover;
  position: absolute;
  top: -6%;
  left: -14.2%;
}
#trip .wrapper::after {
  display: block;
  content: "";
  width: 14.2%;
  aspect-ratio: 142/366;
  background: url(../img/trip_deco-r-pc.webp) no-repeat center/cover;
  position: absolute;
  top: 8%;
  right: -14.2%;
}
@media screen and (max-width: 768px) {
  #trip {
    margin: -30vw 0 0;
    padding: 30vw 0 50vw;
    -webkit-mask-image: url("../img/trip_mask-wave-sp.svg"), url("../img/mask-square.svg");
            mask-image: url("../img/trip_mask-wave-sp.svg"), url("../img/mask-square.svg");
    -webkit-mask-size: 100%, auto;
            mask-size: 100%, auto;
  }
  #trip .wrapper::before {
    width: 22.5%;
    aspect-ratio: 196/186;
    background: url(../img/trip_deco-l-sp.webp) no-repeat center/cover;
    top: -2%;
    left: 7%;
  }
  #trip .wrapper::after {
    display: none;
  }
}

.trip-heading {
  margin: 0 0 20px;
}

.trip-train {
  margin: 0 0 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .trip-train {
    margin: 0 0 60px;
  }
}

.trip-interior {
  margin: 0 0 100px;
  position: relative;
}
.trip-interior::before {
  display: block;
  content: "";
  width: 16.2%;
  aspect-ratio: 162/252;
  background: url(../img/trip_interior_deco-l-pc.webp) no-repeat center/cover;
  position: absolute;
  top: -27.3%;
  left: -22.1%;
}
@media screen and (max-width: 768px) {
  .trip-interior {
    margin: 0 0 56px;
  }
  .trip-interior::before {
    display: none;
  }
  .trip-interior::after {
    display: block;
    content: "";
    width: 26.3%;
    aspect-ratio: 166/199;
    background: url(../img/trip_interior_deco-r-sp.webp) no-repeat center/cover;
    position: absolute;
    top: -3.5%;
    right: -13%;
  }
}

.trip-interior-heading {
  width: 17.9%;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .trip-interior-heading {
    width: 33.6%;
    margin: 0 auto 30px;
  }
}

.trip-interior-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 768px) {
  .trip-interior-list {
    display: block;
  }
}

.trip-interior-list__item {
  width: 48.3%;
  margin: 0 0 50px;
  position: relative;
}
.trip-interior-list__item figcaption {
  font-size: 1.8rem;
  line-height: 2;
  margin: 15px 0 0;
}
@media screen and (max-width: 768px) {
  .trip-interior-list__item {
    width: 100%;
    margin: 0 0 35px;
  }
  .trip-interior-list__item:last-child {
    margin: 0;
  }
  .trip-interior-list__item figcaption {
    font-size: 1.6rem;
    margin: 10px 0 0;
  }
}

.trip_interior_balloon_regularseat {
  width: 60.2%;
  position: absolute;
  top: -39.3%;
  left: -10.35%;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
@media screen and (max-width: 768px) {
  .trip_interior_balloon_regularseat {
    width: 45.5%;
    top: -9.5%;
    left: -6.6%;
  }
}
.trip_interior_balloon_regularseat.visible {
  opacity: 1;
  -webkit-animation: bounceScale3 0.4s ease-out forwards;
          animation: bounceScale3 0.4s ease-out forwards;
}

/* アニメーションの定義 */
@-webkit-keyframes bounceScale3 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); /* 初期状態 */
  }
  40% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2); /* 一度拡大 */
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1); /* 最終状態 */
  }
  80% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); /* 最終状態 */
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); /* 最終状態 */
  }
}
@keyframes bounceScale3 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); /* 初期状態 */
  }
  40% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2); /* 一度拡大 */
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1); /* 最終状態 */
  }
  80% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); /* 最終状態 */
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); /* 最終状態 */
  }
}
.trip-stamp, .trip-stamp--end {
  margin: 0 0 215px;
  position: relative;
}
.trip-stamp::before, .trip-stamp--end::before {
  display: block;
  content: "";
  width: 16.4%;
  aspect-ratio: 164/247;
  background: url(../img/trip_stamp_deco-r-pc.webp) no-repeat center/cover;
  position: absolute;
  top: -24%;
  right: -28%;
}
.trip-stamp::after, .trip-stamp--end::after {
  display: block;
  content: "";
  width: 16.2%;
  aspect-ratio: 162/440;
  background: url(../img/trip_ticket_deco-l-pc.webp) no-repeat center/cover;
  position: absolute;
  left: -24.9%;
  bottom: -95%;
}
@media screen and (max-width: 768px) {
  .trip-stamp, .trip-stamp--end {
    margin: 0 0 150px;
  }
  .trip-stamp::before, .trip-stamp--end::before {
    display: none;
  }
  .trip-stamp::after, .trip-stamp--end::after {
    width: 32.2%;
    aspect-ratio: 203/138;
    background: url(../img/trip_ticket_deco-r-sp.webp) no-repeat center/cover;
    left: auto;
    right: -14%;
    bottom: -30%;
  }
}

.trip-stamp--end {
  margin: 0 0 50px;
}
@media screen and (max-width: 768px) {
  .trip-stamp--end {
    margin: 0;
  }
}

.trip-stamp-heading {
  width: 42.2%;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .trip-stamp-heading {
    width: 79.3%;
    margin: 0 auto 30px;
  }
}

.trip-stamp-lead {
  width: 57.5%;
  margin: 0 auto 27px;
}
@media screen and (max-width: 768px) {
  .trip-stamp-lead {
    width: 91.4%;
    margin: 0 auto 25px;
  }
}

.trip-stamp-note, .trip-stamp-note--red {
  display: block;
  font-size: 1.4rem;
  line-height: 1.71;
}

.trip-stamp-note--red {
  color: #f00;
}

.trip-ticket {
  padding: 78px 75px;
  background: #fff;
  border: solid 3px #0000A0;
  border-radius: 25px;
  position: relative;
}
.trip-ticket::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/trip_ticket_bg.webp) repeat;
  background-size: 69px 68.5px;
  border-radius: 25px;
  position: absolute;
  right: -34px;
  bottom: -34px;
  z-index: -1 !important;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out;
}
@media screen and (max-width: 768px) {
  .trip-ticket {
    width: calc(100% - 15px);
    padding: 38px;
  }
  .trip-ticket::after {
    right: -15px;
    bottom: -15px;
    background-size: 34.4px 34.25px;
  }
  .trip-ticket::before {
    display: block;
    content: "";
    width: 96.4vw;
    height: 21.6vw;
    background: url(../img/trip_deco_bottom-sp.webp) repeat center/cover;
    position: absolute;
    bottom: -23vw;
    right: -16vw;
  }
}

.trip-ticket__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  .trip-ticket__content {
    display: block;
  }
}

.trip-ticket.in-view::after {
  opacity: 1;
}

.trip-ticket__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .trip-ticket__image {
    width: 100%;
    margin: 0 0 32px;
  }
}

.trip-ticket__text {
  width: 50%;
  padding: 0 0 0 56px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .trip-ticket__text {
    width: 100%;
    padding: 0;
  }
}

.trip-ticket-heading {
  width: 70%;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .trip-ticket-heading {
    margin: 0 0 12px;
  }
}

.trip-ticket-list {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .trip-ticket-list {
    margin: 0 0 25px;
  }
}

.trip-ticket-list__item {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 0.7em;
  padding: 0 0 0 1.3em;
  position: relative;
}
.trip-ticket-list__item::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}
.trip-ticket-list__item:last-child {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .trip-ticket-list__item {
    font-size: 1.6rem;
    margin: 0 0 0.3em;
  }
}

.trip-ticket-soled {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  padding: 20px 0;
  margin: 60px 0 0;
  border-radius: 10px;
  background: #f97606;
}
@media screen and (max-width: 768px) {
  .trip-ticket-soled {
    font-size: 1.8rem;
    padding: 10px 0;
    margin: 30px 0 0;
    border-radius: 5px;
  }
}

.trip-balloon-start {
  width: 37.2%;
  position: absolute;
  top: -137px;
  left: -47px;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
@media screen and (max-width: 768px) {
  .trip-balloon-start {
    width: 59%;
    top: -24vw;
    left: -5.6vw;
  }
}
.trip-balloon-start.visible {
  opacity: 1;
  -webkit-animation: bounceScale2 0.4s ease-out forwards;
          animation: bounceScale2 0.4s ease-out forwards;
}

/* アニメーションの定義 */
@-webkit-keyframes bounceScale2 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); /* 初期状態 */
  }
  40% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2); /* 一度拡大 */
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1); /* 最終状態 */
  }
  80% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); /* 最終状態 */
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); /* 最終状態 */
  }
}
@keyframes bounceScale2 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); /* 初期状態 */
  }
  40% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2); /* 一度拡大 */
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1); /* 最終状態 */
  }
  80% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); /* 最終状態 */
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); /* 最終状態 */
  }
}
.trip-note {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 15px 0 0;
}

.trip-button--detail {
  display: block;
  padding: 20px;
  border: solid 2px #0000A0;
  border-radius: 10px;
  margin: 30px 0 0;
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  color: #0000A0;
}
.trip-button--detail:hover {
  background: #CFE9F7;
  opacity: 1;
}
.trip-button--detail::after {
  display: block;
  content: "";
  width: 13px;
  height: 18px;
  background: url(../img/icon_arrow-01.svg) no-repeat center/cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .trip-button--detail {
    display: block;
    padding: 12px;
    border: solid 1px #0000A0;
    margin: 20px 0 0;
    font-size: 1.5rem;
    text-align: center;
  }
  .trip-button--detail::after {
    width: 8px;
    height: 12px;
    right: 15px;
  }
}

/* ---------------------------------------*/
/* mijumaru */
/* ---------------------------------------*/
#mijumaru {
  margin: -262px 0 0;
  padding: 262px 0 260px;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(#E9FAFE), to(#9FE5F5));
  background: linear-gradient(to bottom, #fff, #E9FAFE, #9FE5F5);
  -webkit-mask-image: url("../img/mijumaru_mask-wave-pc.svg"), url("../img/mask-square.svg");
          mask-image: url("../img/mijumaru_mask-wave-pc.svg"), url("../img/mask-square.svg");
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  -webkit-mask-repeat: no-repeat, repeat;
          mask-repeat: no-repeat, repeat;
  -webkit-mask-position: top center, top;
          mask-position: top center, top;
  clip-path: inset(0.5px 0 0 0);
}
#mijumaru::before {
  display: block;
  content: "";
  width: 251px;
  height: 205px;
  background: url(../img/mijumaru_deco-l.webp) no-repeat top/cover;
  position: absolute;
  top: 530px;
  right: calc(50% + 590px);
}
#mijumaru::after {
  display: block;
  content: "";
  width: 210px;
  height: 285px;
  background: url(../img/mijumaru_deco-r.webp) no-repeat top/cover;
  position: absolute;
  top: 346px;
  left: calc(50% + 577px);
}
@media screen and (max-width: 768px) {
  #mijumaru {
    margin: -24vw 0 0;
    padding: 27vw 0 40vw;
    -webkit-mask-image: url("../img/mijumaru_mask-wave-sp.svg"), url("../img/mask-square.svg");
            mask-image: url("../img/mijumaru_mask-wave-sp.svg"), url("../img/mask-square.svg");
    -webkit-mask-size: 100%, auto;
            mask-size: 100%, auto;
  }
  #mijumaru::before {
    width: 20.5vw;
    height: 17.8vw;
    background: url(../img/mijumaru_deco-l-sp.webp) no-repeat center/cover;
    top: auto;
    bottom: 18.6vw;
    right: auto;
    left: -2.6vw;
  }
  #mijumaru::after {
    width: 18.1vw;
    height: 25.6vw;
    background: url(../img/mijumaru_deco-r-sp.webp) no-repeat top/cover;
    top: 104.8vw;
    left: auto;
    right: -2.6vw;
  }
}

.mijumaru-heading {
  width: 563px;
  margin: 0 auto 45px;
}
@media screen and (max-width: 768px) {
  .mijumaru-heading {
    width: 100%;
    margin: 0 0 36px;
  }
}

.mijumaru-lead {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.77;
  margin: 0 0 48px;
}
@media screen and (max-width: 768px) {
  .mijumaru-lead {
    font-size: 1.6rem;
    margin: 0 auto 36px;
  }
}

.mijumaru-image-mijumaru {
  width: 318px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mijumaru-image-mijumaru {
    width: 71%;
  }
}

/* ---------------------------------------*/
/* reserve */
/* ---------------------------------------*/
#reserve {
  margin: -262px 0 0;
  padding: 390px 0 37px;
  position: relative;
  background: #fff;
  -webkit-mask-image: url("../img/resefve_mask-wave-pc.svg"), url("../img/mask-square.svg");
          mask-image: url("../img/resefve_mask-wave-pc.svg"), url("../img/mask-square.svg");
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  -webkit-mask-repeat: no-repeat, repeat;
          mask-repeat: no-repeat, repeat;
  -webkit-mask-position: top center, top;
          mask-position: top center, top;
  clip-path: inset(0.5px 0 0 0);
}
#reserve::before {
  display: block;
  content: "";
  width: 216px;
  height: 365px;
  background: url(../img/reserve_deco-l.webp) no-repeat top/cover;
  position: absolute;
  top: 1346px;
  right: calc(50% + 574px);
}
#reserve::after {
  display: block;
  content: "";
  width: 210px;
  height: 167px;
  background: url(../img/reserve_deco-r.webp) no-repeat top/cover;
  position: absolute;
  top: 470px;
  left: calc(50% + 558px);
}
@media screen and (max-width: 768px) {
  #reserve {
    margin: -24vw 0 0;
    padding: 67vw 0 8.4vw;
    -webkit-mask-image: url("../img/reverve_mask-wave-sp.svg"), url("../img/mask-square.svg");
            mask-image: url("../img/reverve_mask-wave-sp.svg"), url("../img/mask-square.svg");
    -webkit-mask-size: 100%, auto;
            mask-size: 100%, auto;
  }
  #reserve::before {
    display: none;
  }
  #reserve::after {
    width: 73px;
    height: 58px;
    top: 25vw;
    left: auto;
    right: 8vw;
  }
}

.reserve-heading {
  width: 414px;
  margin: 0 auto 48px;
  position: relative;
}
.reserve-heading::after {
  display: block;
  content: "";
  width: 222px;
  height: 189px;
  background: url(../img/reserve_heading_deco.webp) no-repeat center/cover;
  position: absolute;
  top: -110px;
  left: -198px;
}
@media screen and (max-width: 768px) {
  .reserve-heading {
    width: 82%;
    margin: 0 auto 35px;
  }
  .reserve-heading::after {
    width: 111px;
    height: 91px;
    top: -111px;
    left: 13.7vw;
    margin: auto;
  }
}

.reserve-lead {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.77;
  margin: 0 0 100px;
}
@media screen and (max-width: 768px) {
  .reserve-lead {
    font-size: 1.6rem;
    margin: 0 0 55px;
  }
}

.reserve-web,
.reserve-station {
  margin: 0 0 97px;
}
@media screen and (max-width: 768px) {
  .reserve-web,
  .reserve-station {
    margin: 0 0 83px;
  }
}

.reserve-agency {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .reserve-agency {
    margin: 0 0 26px;
  }
}

.reserve-heading-02 {
  width: 65%;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0000A0;
  background: #fff;
  padding: 10px 0;
  margin: 0 auto 25px;
  border: solid 2px #0000A0;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .reserve-heading-02 {
    width: auto;
    font-size: 2.1rem;
    padding: 15px 0;
    border: none;
    border-top: solid 2px #0000A0;
    border-bottom: solid 2px #0000A0;
    border-radius: 0;
    margin: 0 -30px 34px;
  }
}

.reserve-description {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.77;
}
@media screen and (max-width: 768px) {
  .reserve-description {
    font-size: 1.6rem;
  }
}

.reserve-web-list {
  display: inline-block;
  margin: 17px auto 0;
}

.reserve-web-list__item {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.77;
  text-align: left;
  position: relative;
  padding: 0 0 0 1.3em;
}
.reserve-web-list__item::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .reserve-web-list__item {
    font-size: 1.6rem;
  }
}

.reserve-note {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  margin: 25px 0 0;
}
.reserve-note.is-red {
  color: #9F1414;
}
@media screen and (max-width: 768px) {
  .reserve-note {
    font-size: 1.4rem;
    margin: 23px 0 0;
  }
}

.reserve-agency-list {
  display: inline-block;
  margin: 25px auto 0;
}
@media screen and (max-width: 768px) {
  .reserve-agency-list {
    margin: 19px auto 0;
  }
}

.reserve-agency-list__item {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.77;
  text-align: left;
  position: relative;
  padding: 0 0 0 1em;
}
.reserve-agency-list__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .reserve-agency-list__item {
    font-size: 1.6rem;
  }
}

/* ---------------------------------------*/
/* contact */
/* ---------------------------------------*/
.contact-content {
  width: 60%;
  margin: 0 auto;
  padding: 30px;
  background: #DCF4F7;
  border-radius: 48px;
}
@media screen and (max-width: 768px) {
  .contact-content {
    width: 100%;
    padding: 25px;
    border-radius: 24px;
  }
}

.contact-heading {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0 0 5px;
  color: #0000A0;
}
@media screen and (max-width: 768px) {
  .contact-heading {
    font-size: 1.7rem;
  }
}

.contact-note {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 15px;
}
.contact-note span {
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .contact-note {
    font-size: 1.6rem;
  }
  .contact-note span {
    padding-left: none;
  }
}

.contact-tel {
  font-family: "Jost", sanserif;
  font-size: 4.5rem;
  font-weight: 600;
  color: #0000A0;
}
@media screen and (max-width: 768px) {
  .contact-tel {
    font-size: 3.1rem;
  }
}