@charset "utf-8";
/* CSS Document */
:root{
  --f_maru: 'Zen Maru Gothic', sans-serif;
  --f_noto: 'Noto Sans JP', sans-serif;
  --f_vdl: vdl-penletter, sans-serif;
  --pink: #e43ccf;
  --navy: #1173b1;
  --orange: #ff9933;
  --t_navy: rgba(17 115 177 / 60%);
  --t_orange: rgba(255 153 51 / 80%);
  --t_white: rgba(255 255 255 / 60%);
  --grade: linear-gradient(90deg, #1173b1, #e43ccf);
  --line_o: linear-gradient(transparent 70%, #ff9933 70%);
  --line_p: linear-gradient(transparent 90%, #e43ccf 90%);
  --b_shadow: 2px 2px 2px 10px rgba(255 255 255 / 80%);
  --center_contain: no-repeat center center / contain;
  --bg_cover: no-repeat center top / cover;
}

.nopc{
  display: none;
}
.breadcrumb{
  background: #FFF;
}
.inner{
  width: 992px;
  margin: auto;
}
.notice-txt{
  font-size: 12px;
  font-weight:400;
  color: #000;
  padding-left: 1.0em;
  position: relative
}
.notice-txt::before{
  content: "※";
  position: absolute;
  top: 0;
  left: 0
}
.main *{
  box-sizing: border-box;
  font-family: var(--f_maru);
}
.main{
  position: relative;
}
main::before{
  content: "";
  width: 100vw;
  height: 100vh;
  background: url("../img/bg_mv.jpg") var(--bg_cover);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -5
}

/*** MV・ナビ ***/
.title-wrapper{
  text-align: center;
}
.nav-wrapper{
  width: 100%;
  display: flex;
}
.nav-wrapper::before,
.nav-wrapper::after{
  content: "";
  display: block;
  background: var(--t_navy);
  flex-grow: 1;
}
.nav-wrapper>.inner{
  display: flex;
  justify-content: space-between;
}
.menu-list{
  /*width: calc(100% - 120px);*/
  width: 992px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.menu-list>li{
  width: calc(100% / 3);
  background: var(--t_navy);
  border-left: 1px solid #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-list>li:last-child{
  border-right: 1px solid #FFF;
}
.menu-list>li>a{
  display: block;
  padding: 10px 10px 30px;
  font-size: 16px;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  position: relative;
}
.menu-list>li:hover{
  background: #FFF;
}
.menu-list>li:hover a{
  color: var(--orange);
}
.menu-list>li>a:after{
  content: "";
  background: var(--center_contain);
  background-image: url("../img/arrow02.png");
  width: 17px;
  height: 11px;
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  margin: auto;
}
.menu-list>li:hover a::after{
  background-image: url("../img/arrow01.png");
}

/*全国版*/
/*.display_selected {
  background: var(--orange);
  width: 120px;
  height: 80px;
  font-family: var(--f_noto);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
  color: #FFF;
  position: relative;
  cursor: pointer
}
.display_selected::before{
  content: "出発地";
  display: block;
  font-size: 12px;
}
.display_selected::after {
  content: "";
  background: url("../img/arrow02.png") var(--center_contain);
  width: 17px;
  height: 11px;
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  margin: auto
}
.dep-select-zone {
  display: none;
  width: 120px;
  position: absolute;
  z-index: 30;
  border: 1px solid var(--orange);
  border-top: none;
  background: #FFF;
}
.dep-select li {
  cursor: default;
  padding: 2px 10px;
  font-family: var(--f_noto);
  font-weight: 500;
  text-align: center;
}
.dep-select li:hover,
.dep-select li.selected {
  background: var(--orange);
  color: #FFF;
}
.close-button{
  display: none
}*/

/*** メインコンテンツ ***/
.content-wrapper{
  padding: 100px 0 50px;
}
.content-box+.content-box{
  margin-top: 100px;
}
.head-title{
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}
.head-title:not(#tour)::after{
  content: "";
  background: url("../img/bg_ttl.png") var(--center_contain);
  width: 445px;
  height: 276px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1
}
.title-catch{
  font-family: var(--f_vdl);
  font-size: 32px;
  font-weight: 500;
  display: block;
}
.title-main{
  display: inline-block;
  font-family: var(--f_maru);
  font-size: 60px;
  font-weight: 900;
  color: transparent;
  background-image: var(--grade);
  -webkit-background-clip: text;
}
.body-copy{
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
}
.body-copy sup{
  font-size: 10px;
  vertical-align: super
}
.body-copy.img-airplane{
  position: relative;
  padding-bottom: 230px;
}
.body-copy.img-airplane::after{
  content: "";
  background: url("../img/img_ATR42-600.png") var(--center_contain);
  width: 992px;
  height: 342px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.point-list{
  display: flex;
  margin: 50px auto;
  justify-content: center;
}
.point-list>li{
  width: calc(96% / 3);
  max-width: calc(74% / 2);
  margin-right: 2%;
  position: relative;
  flex-grow: 1
}
.point-list>li:last-child{
  margin-right: 0;
}
.point-list>li:not(.bg)::after{
  content: "";
  background: var(--center_contain);
  width: 317px;
  height: 91px;
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  margin: auto
}
.point-list>li.ribbon1::after{
  background-image: url("../img/ttl_air.png");
}
.point-list>li.ribbon2::after{
  background-image: url("../img/ttl_sight.png");
}
.point-list>li.ribbon3::after{
  background-image: url("../img/ttl_towing.png");
}
.point-list>li.bg{
  background: var(--t_white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.point-list>li.bg::before{
  content: "";
  background: url("../img/ico_ck.png") var(--center_contain);
  width: 175px;
  height: 80px;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  margin: auto;
}

.point-list_details{
  width: 88%;
  padding: 10px;
}
.point-list_details>li{
  width: 100%;
  font-size: 20px;
  font-weight: 900;
  position: relative;
  padding-left: 36px;
}
.point-list_details>li+li{
  margin-top: 10px;
}
.point-list_details>li::before{
  content: "";
  background: var(--center_contain);
  width: 30px;
  height: 31px;
  position: absolute;
  top: 10px;
  left: 0;
}
.point-list_details>li:first-child::before{
  background-image: url("../img/num_01.png")
}
.point-list_details>li:nth-child(2)::before{
  background-image: url("../img/num_02.png")
}
.point-list_details>li:nth-child(3)::before{
  background-image: url("../img/num_03.png")
}
.point-list_details>li>span{
  background: var(--line_o);
  font-weight: 900;
}
.point-list_details>li .m-size{
  font-size: 85%
}
.point-list_details>li .m-size::before,
.point-list_details>li .m-size::after{
  display: inline-block;
  content: "/";
}
.point-list_details>li .m-size::before{
  transform: scaleX(-1);
}
.point-list_details>li small{
  font-size: 70%;
  font-weight: 900;
  display: block;
  line-height: 1.2
}
.caution-list>li{
  font-size: 14px;
  font-weight: 500;
}

/*** ツアー枠 ***/
/*.parallax-bg{
  display: block;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: -1;
  padding: 30px 0;
}
.parallax-bg::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../img/bg_tour.jpg") var(--bg_cover);
}*/
.content-wrapper.tour-bg{
  background: url("../img/bg_tour.jpg") var(--bg_cover);
  position: sticky;
  padding: 50px 0
}
.tokuten-wrap{
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 50px;
}
.tokuten-wrap::before,
.tokuten-wrap::after{
  content: "";
  background: no-repeat left top / cover;
  width: 992px;
  height: 50px;
  position: absolute;
  left: 0;
}
.tokuten-wrap::before{
  background-image: url("../img/frame_top.png");
  top: 45px;
}
.tokuten-wrap::after{
  background-image: url("../img/frame_btm.png");
  bottom: 0;
}
.sub-title{
  text-align: center;
}
.tokuten-list{
  position: relative;
  margin: 50px auto;
  padding: 0 300px 0 220px;
}
.tokuten-list::before,
.tokuten-list::after{
  content: "";
  background: var(--center_contain);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.tokuten-list::before{
  background-image: url("../img/ico_tokuten.png");
  width: 196px;
  height: 200px;
  left: 0;
}
.tokuten-list::after{
  background-image: url("../img/img_tokuten.png");
  width: 300px;
  height: 228px;
  right: 0;
}
.tokuten-list>li{
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding-left: 40px;
}
.tokuten-list>li+li{
  margin-top: 10px;
}
.tokuten-list>li>span{
  font-size: 26px;
  font-weight: 900;
  background: var(--line_p);
}
.tokuten-list>li::before{
  content: "";
  background: var(--center_contain);
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
}
.tokuten-list>li:first-child::before{
  background-image: url("../img/num_01_p.png")
}
.tokuten-list>li:nth-child(2)::before{
  background-image: url("../img/num_02_p.png")
}
.tokuten-list>li:last-child::before{
  background-image: url("../img/num_03_p.png")
}

/*.area00{
  display: none;
}
.area00.is-display{
  display: block
}*/
.tour-title{
  text-align: center;
  margin-bottom: 10px
}
.tour-title .js-dep-name{
  font-size: 24px;
  font-weight: 900;
  color: var(--pink);
}
.tour-title .js-dep-name::after{
  content: "おすすめツアー";
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  display: inline-block;
  margin-left: 5px;
}
.product-list.card-style>li *{
  font-family: var(--f_noto)
}
.product-list.card-style>li .product-list__item .item-photo__wrapper .item-txt__port{
  background: var(--t_orange);
}
.more-link{
  margin: 20px auto;
}
.more-link>a{
  display: block;
  width: 800px;
  margin: auto;
  padding: 16px;
  background: var(--grade);
  border-radius: 24px;
  font-size: 16px;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  position: relative;
}
.more-link>a::after{
  content: "";
  background: url("../img/arrow03.png") var(--center_contain);
  width: 10px;
  height: 17px;
  position: absolute;
  top: 0;
  right: 3%;
  bottom: 0;
  margin: auto;
}
.more-link>a:empty{
  display: none
}
.close-txt{
  margin: 20px auto;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.close-txt:empty{
  display: none
}

/*** フッター ***/
#foot.content-wrapper{
  padding: 0 0 50px
}
.rights{
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.rights+.rights{
  margin-bottom: 30px;
}
.rights.miku::after{
  content: "";
  background: url("../img/logo_piapro.png") var(--center_contain);
  width: 71px;
  height: 18px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle
}

.caution-box{
  background: #FFF
}
.caution-title{
  background: var(--navy);
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #FFF;
  text-align: center;
}
#foot .caution-list{
  padding: 20px;
  margin: 0
}
#foot .caution-list>li{
  position: relative;
  padding-left: 1.0em;
}
#foot .caution-list>li::before{
  content: "・";
  position: absolute;
  top: 0;
  left: 0
}