@charset "UTF-8";

main{
  background-color: #fff;
}

.mv{
  position: relative;
}
.mv .tit{
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}
.mv .tit img{
  display: block;
  max-width: 373px;
  margin: 0 auto 10px;
}
.mv .tit span{
  color: #fff;
  font-size: clamp(14px, 2vw, 22px);
  line-height: 1.6;
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9),
               0px 0px 10px rgba(0, 0, 0, 0.9),
               0px 0px 10px rgba(0, 0, 0, 0.9);
}
.mv .img span{
  bottom: 0;
  right: 0;
  display: block;
  padding: 5px 30px;
  background: linear-gradient(to right,  rgba(51,51,51,0) 0%,rgba(51,51,51,0.5) 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
@media screen and (max-width: 767px) {
  .mv .tit{
    top: 25px;
  }
  .mv .tit img{
    max-width: 200px;
  }
  .mv .tit span{
  }
  .mv .img span{
    bottom: 0;
    right: 0;
    display: block;
    padding: 5px 20px;
  }
}

.intro{
  background-color: #142f5a;
}
.intro .inner{
  max-width: 1050px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.intro .inner .img{
  width: 45%;
}
.intro .inner .txt-box{
  width: 50%;
}
.intro .inner .txt-box .midashi{
  max-width: 466px;
  width: 90%;
  margin: 0 0 5%;
}
.intro .inner .txt-box .text{
  color: #fff;
  font-size: clamp(12px, 1.8vw, 24px);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .intro{
    padding:30px 0 ;
  }
  .intro .inner{
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .intro .inner .img{
    width: 40%;
  }
  .intro .inner .txt-box{
    width: 60%;
    padding: 2% 0 0 4%;
  }
  .intro .inner .txt-box .text{
    font-size: clamp(10px, 2.4vw, 24px);
    width: fit-content;
  }
}

.route{
  padding: 70px 0 50px;
}
.route .inner{
  max-width: 1050px;
  width: 90%;
  margin: 0 auto;
}
.route .inner .route-map{
  position: relative;
}
.route .inner .route-map .notes{
  position: absolute;
  bottom: 0;
  right: 0;
}
.route .inner .route-map .notes span{
  display: block;
  font-size: clamp(10px, 1.2vw, 14px);
  line-height: 1.4;
  margin-top: 5px;
}
.route .inner .img{
  margin: 60px 0 0;
}
@media screen and (max-width: 767px) {
  .route{
    padding: 30px 0;
  }
  .route .inner .img{
    max-width: 300px;
    margin: 30px auto 0;
  }
  .route .inner .route-map .notes{
    position: relative;
    bottom: initial;
    right: initial;
    margin-top: 10px;
  }
}

.other{
  background-color: #142f5a;
  padding: 120px 0 10px;
}
.other .inner{
  max-width: 1050px;
  width: 90%;
  margin: 0 auto 120px;
}
.other .midashi{
  color: #fff;
  font-size: clamp(16px, 2.8vw, 32px);
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
  position: relative;
  padding-bottom: 120px;
}
.other .midashi span{
  display: block;
  position: absolute;
  bottom: 0;
}
.other .osaka .midashi span{
  width: 36%;
  bottom: -6%;
  right: -14%;
}
.other .kyoto .midashi span{
  width: 30%;
  left: -12%;
  bottom: -95%;
}
.other .border{
  margin: 30px 0 0 5px;
  padding-top: 30px;
  border-top: dotted 1px #fff;
}
@media screen and (max-width: 767px) {
  .other{
    padding: 40px 0 10px;
  }
  .other .inner{
    width: 100%;
    margin: 0 auto 12%;
  }
  .other .midashi{
    padding-bottom: 12%;
  }
  .other .midashi span{
    display: block;
    position: absolute;
    bottom: 0;
  }
  .other .osaka .midashi span{
    width: 35%;
    right: 5%;
  }
  .other .kyoto .midashi span{
    width: 32%;
    left: initial;
    right: 5%;
    bottom: -20%;
  }
  .other .border{
    width: 90%;
    margin: 3% auto 0;
    padding-top: 3%;
  }
}