@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/* CSS Document */
:root{
  --content-color-green: #3bb272;
  --content-color-pink: #e85464;
  --content-color-off: #faf6ef;
  --content-color-gray: #666666;
  --content-color-base: #333333;
  --bg-img-setting: no-repeat center center / contain;
  --bg-width-pc: max(100%, 1920px);
  --content-width: min((710vw / 7.5), 992px);
  --font-size-pc: 14px;
  --font-size-sp: calc(24vw / 7.5);
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --content-hover-speed: 0.3s;
  --content-shadow: 0 3px 0 0 rgba(0 0 0 / 20%);
  --content-arrow-right: url(../img/arrow.svg);
  --content-border_s: 1px solid;
  --content-border_m: 2px solid;
  --content-border_l: 4px solid;
}

.nopc{
  display: none
}
.main{
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  font-weight: 400;
  position: relative;
  color: var(--content-color-base);
  line-height: 1.0
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}
a{
  transition: var(--content-hover-speed);
}
.note__txt{
  font-size: 12px;
  padding-left: 1.0em;
  text-indent: -1.0em;
}

.breadcrumb{
  background: #FFF;
}
.title__wrapper{
  width: 100%;
  height: 490px;
  position: relative;
  background: #FFF;
}
.title-logo{
  width: var(--content-width);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto
}
.nav__wrapper {
  width: 100%;
  background: var(--content-color-green);
}
.nav__list{
  width: var(--content-width);
  margin: auto;
  display: flex;
  border-left: var(--content-border_s) #FFF;
}
.nav__list>li {
  width: calc(100% / 4);
  border-right: var(--content-border_s) #FFF;
}
.nav__list>li>a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  line-height: calc(21 / 18);
}
.nav__list>li>a:hover{
  background: #FFF;
  color: var(--content-color-green);
}
.main__content{
  position: relative;
}
.content__wrapper{
  width: 100%;
  padding: 40px 0;
}
.head-title{
  margin-bottom: 24px;
  text-align: center;
}
.head-title#spot,
.head-title#tour{
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center
}
.head-title#spot::before,
.head-title#spot::after,
.head-title#tour::before,
.head-title#tour::after{
  content: "";
  background: var(--bg-img-setting) url("../img/ico_mastu.svg");
  width: 55px;
  height: 38px;
  display: block;
}
.head-title .title__txt{
  font-size: 42px;
  font-weight: 900;
  color: var(--content-color-pink);
}
.head-title .title__img{
  display: block;
  margin-bottom: 15px;
}
.sub-title{
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.is-green{
  color: var(--content-color-green);
}
.is-pink{
  color: var(--content-color-pink);
}

/*** イントロ ***/
.content__wrapper.intro{
  padding: 80px 0;
  background: #FFF;
}
.intro__container{
  display: flex;
  gap: 24px;
}
.intro__map{
  width: 483px;
}
.intro__box{
  flex: 1
}
.intro__copy{
  font-size: 20px;
  font-weight: bold;
  color: var(--content-color-green);
  text-align: center;
  line-height: calc(28 / 20);
  margin-bottom: 24px;
}
.time__data{
  background: var(--content-color-off);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.time__airline{
  border-bottom: var(--content-border_s) #b2b2b2;
  padding-bottom: 10px;
}
.time__midashi{
  font-weight: bold;
  color: var(--content-color-gray);
  text-align: center;  
  margin-bottom: 8px;
}
.time__schedule{
  line-height: calc(24 / 14)
}
.time__airline .time__midashi{
  font-size: 18px;
  color: var(--content-color-pink);
}
.time__airline .time__schedule{
  font-size: 16px;
  font-weight: bold;
}

/*** 観光スポット ***/
.content__wrapper.spot{
  position: relative;
}
.content__wrapper.spot::before{
  content: "";
  width: 100%;
  height: 100%;
  background: url("../img/map.png") no-repeat, var(--content-color-off);
  background-position: center top;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1
}
.content__wrapper.spot.is-fix::before{
  background-position: center bottom;
  position: fixed;
  bottom: 0;
  left: 0;
}
.content__wrapper.spot .inner{
  width: 618px;
}
.info__container{
  margin-bottom: 555px;
}
.copy__list{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.copy__list>li{
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: calc(24 / 16)
}
.copy__list>li .is-pink{
  font-size: 18px;
}
.access__box{
  width: 297px;
  background: rgba(255 255 255 / 90%);
  padding: 10px;
  border-radius: 10px;
  line-height: calc(21 / 14)
}
.access__midashi{
  font-weight: bold;
  text-align: center;
}
.access__list>li .is-green{
  font-weight: bold
}
.spot__list{
  display: flex;
  flex-direction: column;
  gap: 564px;
  margin-bottom: 564px;
}
.spot__list>li{
  position: relative;
  background: var(--content-color-pink);
  padding: 10px;
}
.fadebox {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.spot__list>li::after{
  content: "";
  background: var(--bg-img-setting);
  width: 74px;
  height: 101px;
  position: absolute;
  top: 0;
  left: 36px;
}
.spot__list>li:first-child::after{
  background-image: url("../img/ico_spot01.svg")
}
.spot__list>li:nth-child(2)::after{
  background-image: url("../img/ico_spot02.svg")
}
.spot__list>li:nth-child(3)::after{
  background-image: url("../img/ico_spot03.svg")
}
.spot__list>li:last-child::after{
  background-image: url("../img/ico_spot04.svg")
}
.spot__imgbox{
  position: relative
}
.spot__imgbox::before{
  content: "";
  background: linear-gradient(to bottom, rgba(0 0 0 / 0%) 60%, rgba(0 0 0 / 80%) 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5
}
.spot__data{
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
  color: #FFF;
  padding: 24px;
}
.spot__name{
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: center;
}
.spot__name>small{
  font-size: 20px;
  margin-right: 8px;
}
.spot__txt{
  font-size: 16px;
  line-height: calc(24 / 16);
}

/*** tour ***/
.content__wrapper.tour{
  background: url("../img/bg_tour.png") repeat, var(--content-color-off);
}
.product__content+.product__content{
  margin-top: 40px;
}
.tour__copy{
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: calc(36 / 24);
  margin-bottom: 16px;
}
.product__midashi{
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 24px;
  text-align: center;
}
.product-list{
  line-height: 1.4
}

/* IMP */
.fda--kmq01.product-list>li{
  width: 100%;
}
.fda--kmq01.product-list>li>a{
  display: flex;
  gap: 16px;
}
.product__img{
  width: 180px;
}
.product__item{
  flex: 1
}
.product__title__sub{
  font-size: 20px;
  font-weight: bold;
  color: #e90000;
}
.product__dep{
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-base);
}
.product__title{
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  color: #1A0DAB;
}
.product__price{
  text-align: right;
}
.tour__price{
  font-size: 24px;
  font-weight: bold;
  color: #e90000;
}

.item__link{
  width: 750px;
  margin: 24px auto 0;
}
.item__link>a{
  display: block;
  border-radius: 24px;
  background: #FFF;
  box-shadow: var(--content-shadow);
  padding: 16px;
  font-weight: bold;
  color: var(--content-color-green);
  text-align: center;
  position: relative
}
.item__link>a::after{
  content: "";
  background: var(--content-arrow-right) var(--bg-img-setting);
  width: 10px;
  height: 15px;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
.item__link>a:hover{
  background: var(--content-color-green);
  color: #FFF;
}

/*** FDA ***/
.content__wrapper.fda{
  background: #FFF;
}
.head-title#fda{
  margin-bottom: 52px
}
.fda__wrapper{
  width: 750px;
  margin: auto;
}
.schedule__wrapper{
  margin: 0 auto 50px;
  display: flex;
  gap: 24px;
}
.schedule__wrapper::before{
  content: "";
  background: var(--bg-img-setting) url("../img/img_fda.png");
  width: 357px;
  height: 167px;
  display: block;
}
.schedule__inbox{
  flex: 1;
}
.schedule__title{
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.schedule__title>span{
  flex: 1;
  font-size: 24px;
  font-weight: bold;
  color: var(--content-color-pink);
}
.schedule__title::before{
  content: "";
  background: var(--bg-img-setting) url("../img/logo_fda.png");
  width: 101px;
  height: 44px;
  display: block;
}
.schedule__list{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.schedule__list>li{
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  color: var(--content-color-green);
  display: flex;
  align-items: flex-end;
  line-height: 1.0;
  gap: 8px;
}
.schedule__list>li>span{
  color: var(--content-color-pink)
}
.schedule__list>li>small{
  font-size: 14px;
  font-weight: normal
}
.schedule__list>li.flight__service{
  margin-top: 24px;
  font-size: 18px;
  font-weight: normal;
  color: var(--content-color-green);
}
.seat__wrapper{  
  line-height: 1.5
}
.seat__midashi{
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
.seat__midashi>small{
  display: block;
  font-size: 20px;
  font-weight: normal
}
.seat-img{
  margin: 24px auto 48px;
}
.seat__notice__midashi{
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-green);
  margin-bottom: 8px;
}
.seat__notice_list{
  line-height: calc(21 / 14);
}
.seat__notice_list>li{
  color: var(--content-color-green);
  padding-left: 1.0em;
  text-indent: -1.0em;
}

/* 特集バナー */
.content__wrapper.foot{
  background: #FFF;
}

.close-txt{
  font-size: 18px;
  font-weight: bold;
}