@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: #00683f;
  --content-color-blue: #1ba3bb;
  --content-color-line: #d2e3d4;
  --content-color-base: #333;
  --bg-img-setting: no-repeat center center / cover;
  --bg-mv-setting: no-repeat center top / 1920px;
  --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 0 18px 2px rgba(0 0 0 / 20%);
  --content-arrow-down: url(../img/navi_arrow.png);
  --content-arrow-right: url(../img/btn_arrow.png);
  --content-border_s: 1px solid;
  --content-border_m: 2px solid;
  --content-border_l: 4px solid;
}

.nosp{
  display: none
}
.main{
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  font-weight: 500;
  color: var(--content-color-base);
  position: relative;
  line-height: 1.0
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}

/***** タイトル・ナビ *****/ 
.title__wrapper{
  width: 100%;
  height: calc(522vw / 7.5);
}
.nav__wrapper{
  background: var(--content-color-green);
  position: relative;  
}
.nav__wrapper>.inner{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.nav__list{
  order: 2;
  width: 100%;
  display: flex;
}
.nav__list>li{
  width: calc(100% / 4);
}
.nav__list>li:not(:first-child){
  border-left: var(--content-border_s) #FFF;
}
.nav__list>li>a{
  display: block;
  padding: calc(24vw / 7.5) calc(8vw / 7.5) calc(40vw / 7.5);
  font-size: calc(26vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  line-height: 1.2;
  position: relative;
}
.nav__list>li>a::after{
  content: "";
  background: var(--bg-img-setting)  var(--content-arrow-down);
  width: calc(14vw / 7.5);
  height: calc(10vw / 7.5);
  position: absolute;
  right: 0;
  bottom: calc(16vw / 7.5);
  left: 0;
  margin: auto;
}
.nav__list>li>a:hover{
  background: var(--content-color-blue);
  color: #FFF;
}
.dep-select-nav{
  order: 1;
  width: 100%;
}
.display_selected {
  background: var(--content-color-blue);
  font-size: calc(40vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative;
  display: flex;
  gap: calc(16vw / 7.5);
  justify-content: center;
  align-items: center;
  padding: calc(16vw / 7.5);
}
.display_selected::before{
  content: "出発地";
  display: inline-block;
  font-size: calc(24vw / 7.5);
}
.display_selected::after {
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-down);
  width: calc(20vw / 7.5);
  height: calc(12vw / 7.5);
  position: absolute;
  top: 0;
  right: calc(20vw / 7.5);
  bottom: 0;
  margin: auto
}
.dep-select-zone {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transition: all .5s;
  z-index: 50;
  background: rgba(0 0 0 / 80%);
  padding: calc(100vw / 7.5) calc(80vw / 7.5);
}
.dep-select li {
  cursor: default;
  padding: calc(20vw / 7.5);
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
}
.dep-select li:hover, .dep-select li.selected {
  background: #FFF;
  color: #000;
}
.close-button{
  margin: calc(40vw / 7.5) auto;
  width: 5em;
  padding: calc(10vw / 7.5);
  border: 1px solid;
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
}

/***** メインコンテンツ *****/
.main__content{
  background: #e8e9ea;
  padding-top: calc(60vw / 7.5);
}
.content__wrapper{
  width: 100%;
  padding-bottom: calc(60vw / 7.5);
}
.head-title{
  margin: 0 auto calc(24vw / 7.5);
  font-size: calc(52vw / 7.5);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.sub-title{
  display: flex;
  gap: calc(16vw / 7.5);
  align-items: center;
  margin-bottom: calc(16vw / 7.5);
}
.sub-title>span{
  font-size: calc(30vw / 7.5);
  font-weight: bold;
}
.sub-title::before{
  content: "";
  background: var(--bg-img-setting) url("../img/icon_h3.png");
  width: calc(37vw / 7.5);
  height: calc(37vw / 7.5);
  display: block;
}
.content__box{
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: calc(24vw / 7.5);
}
.slide__box{
  order: 2;
  width: 100%;
}
.credit-txt{
  display: block;
  width: 100%;
  background: var(--content-color-base);
  padding: calc(16vw / 7.5) calc(8vw / 7.5);
  font-size: calc(22vw / 7.5);
  font-weight: bold;
  color: #FFF
}
.info__box{
  order: 1;
  width: 100%;
}
.info__txt{
  line-height: 1.6
}

/*** 観光スポット ***/
.content__wrapper.spot{
  padding-top: calc(60vw / 7.5)
}
.content__wrapper.spot .content__box{
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw)
}
.content__wrapper.spot .content__box::after{
  content: "";
  background: url("../img/bg_map.png") var(--bg-img-setting);
  width: 100%;
  height: calc(400vw / 7.5);
  display: block;
  order: 2;
}
.content__wrapper.spot .content__box .info__box{
  order: 1;
  position: relative;
  z-index: 30;
  padding: 0 calc(20vw / 7.5);
}
.spot__list{
  display: flex;
  overflow: scroll;
  gap: calc(24vw / 7.5)
}
.spot__list>li{
  flex: 0 0 85%;
  background: #FFF;
}
.spot__list>li:nth-child(even){
  background: var(--content-color-line);
}
.spot__img{
  width: 100%;
  height: calc(400vw / 7.5);
  position: relative
}
.spot__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.spot__img::after{
  content: "";
  width: calc(60vw / 7.5);
  height: calc(60vw / 7.5);
  clip-path: polygon(50% 50%, 0% 100%, 100% 100%);
  background: #FFF;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto
}
.spot__list>li:nth-child(even) .spot__img::after{
  background: var(--content-color-line);
}
.spot__point_inner{
  padding: calc(16vw / 7.5);;
}
.catch__txt{
  font-weight: bold;
  color: var(--content-color-blue);
  margin-bottom: calc(8vw / 7.5);
}
.spot__name{
  font-size: calc(36vw / 7.5);;
  font-weight: bold;
  margin-bottom: calc(8vw / 7.5);
}
.copyright_text{
  font-size: calc(20vw / 7.5);
  font-weight: normal;
  margin-top:  calc(8vw / 7.5);
}
.faq__list{
  line-height: 1.5
}
.faq__list>li+li{
  margin-top: 16px;
}
.q-txt{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

/*** ツアー ***/
.content__wrapper.tour{
  background: var(--content-color-line);
  padding-top: calc(60vw / 7.5);;
}
.js-product-wrapper .sub-title{
  display: flex;
  gap: calc(24vw / 7.5);;
  justify-content: space-between;
  margin-bottom: calc(24vw / 7.5);
}
.js-product-wrapper .sub-title::before,
.js-product-wrapper .sub-title::after{
  content: "";
  display: block;
  width: calc(60vw / 7.5);
  height: 1px;
  background: var(--content-color-base);
  flex-grow: 1
}
.js-product-wrapper .sub-title__txt{
  font-size: calc(36vw / 7.5);
  font-weight: bold;
  text-align: center;
}
.area00{
  display: none
}
.product__area+.product__area{
  margin-top: calc(60vw / 7.5);
}
.product-list{
  line-height: 1.4
}

.more-link{
  width: 90vw;
  margin: calc(32vw / 7.5) auto;
  background: var(--content-color-blue)
}
.more-link>a{
  display: block;
  font-size: calc(26vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  padding: calc(24vw / 7.5) calc(16vw / 7.5);
  position: relative;
}
.more-link>a::after{
  content: "";
  background: var(--content-arrow-right) var(--bg-img-setting);
  width: calc(24vw / 7.5);
  height: calc(24vw / 7.5);
  position: absolute;
  top: 0;
  right: calc(24vw / 7.5);
  bottom: 0;
  margin: auto;
}
.more-link>a:hover{
  opacity: 0.7
}
.close-txt{
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  margin: calc(24vw / 7.5) auto;
  border: 1px solid;
  padding: calc(24vw / 7.5);
  background: #FFF
}

/*** 検索モジュール ***/
.content__wrapper.foot{
  background: var(--bg-mv-setting);
  padding-top: calc(60vw / 7.5);
}
[data-type="summer"] .content__wrapper.foot{
  background-image: url("../img/summer/searchbox_bg.jpg")
}
[data-type="winter"] .content__wrapper.foot{
  background-image: url("../img/winter/searchbox_bg.jpg") 
}
.content__wrapper.foot .inner{
  width: 100vw
}
