@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&family=Noto+Serif+JP:wght@500&display=swap');

:root{
  --content-color-green: #267d64;
  --content-color-lgreen: #96b8ae;
  --content-color-beige: #e5d68a;
  --content-color-gray: #898989;
  --bg-img-setting: no-repeat center center / contain;
  --bg-cover-setting: no-repeat center top / cover;
  --bg-width-pc: max(100%, 1920px);
  --content-width: min((710vw / 7.5), 992px);
  --font-size-pc: 14px;
  --font-size-sp: calc(24vw / 7.5);
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-hover-speed: 0.3s;
  --content-shadow: 0 0 4px 2px rgba(0 0 0 / 20%);
  --content-border_s: 1px solid;
  --content-border_m: 2px solid;
  --content-border_l: 4px solid;
  --content-arrow-down: url(../img/arrow01.svg);
  --content-arrow-down_g: url(../img/arrow02.svg);
  --content-arrow-right: url(../img/arrow03.svg);
  --content-arrow-right_g: url(../img/arrow04.svg);
}

.nosp{
  display: none
}
.main{
  font-family: var(--font-serif);
  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;
}
a{
  transition: var(--content-hover-speed);
}

/***** タイトル・ナビ *****/ 
.title__wrapper{
  width: 100%;
  height: calc(750vw / 7.5);
  background: url("../img/bg_mv.jpg") var(--bg-cover-setting);
  position: relative
}
.title-logo>img{
  width: 80vw;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto
}
.nav__wrapper{
  background: #000;
}
.nav__wrapper .inner{
  width: 100vw;
  display: flex;
  flex-direction: column
}
.nav__list{
  order: 2;
  width: 100%;
  margin: auto;
  display: flex;
}
.nav__list>li{
  width: calc(100% / 3);
}
.nav__list>li:nth-child(2){
  border-right: var(--content-border_s) var(--content-color-gray);
  border-left: var(--content-border_s) var(--content-color-gray);
}
.nav__list>li>a{
  display: block;
  padding: calc(24vw / 7.5) calc(8vw / 7.5) calc(32vw / 7.5);
  font-size: calc(26vw / 7.5);
  color: #FFF;
  text-align: center;
  position: relative
}
.nav__list>li>a::after{
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-down);
  width: calc(12vw / 7.5);
  height: calc(10vw / 7.5);
  position: absolute;
  right: 0;
  bottom: calc(8vw / 7.5);
  left: 0;
  margin: auto
}
.display_selected {
  background: var(--content-color-green);
  font-size: calc(36vw / 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);
}
.dep-select-nav{
  order: 1;
  width: 100%;
}
.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(12vw / 7.5);
  height: calc(10vw / 7.5);
  position: absolute;
  top: 0;
  right: calc(24vw / 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;
}

/***** メインコンテンツ *****/
.content__wrapper{
  padding: calc(60vw / 7.5) 0;
}
.head-title{
  margin-bottom: calc(32vw / 7.5);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(32vw / 7.5);
}
.head-title>span{
  display: inline-block;
  font-size: calc(48vw / 7.5);
  font-weight: 900;
}
.head-title:not(#lightup)::before,
.head-title:not(#lightup)::after{
  content: "";
  background: var(--bg-img-setting) url("../img/ico_ttl.svg");
  width: calc(51vw / 7.5);
  height: calc(43vw / 7.5);
  display: block;
}
.sub-title{
  font-size: calc(36vw / 7.5);
  font-weight: bold;
  text-align: center;
  margin-bottom: calc(16vw / 7.5)
}
.is-green{
  color: var(--content-color-green);
}

/*** ツアー ***/
.area00{
  display: none
}
.area00 .sub-title{
  font-family: var(--font-sans);
  color: var(--content-color-green);
}
.product-list.card-style *{
  font-family: var(--font-sans);
  line-height: 1.4
}
.product-list.card-style>li .product-list__item .item-photo__wrapper .item-txt__port{
  background: rgba(38 125 100 / 80%)
}
.link__button{
  display: flex;
  flex-direction: column;
  gap: calc(24vw / 7.5);
  margin: calc(24vw / 7.5) auto;
  align-items: center;
}
.more__link{
  width: 90vw;
}
.more__link>a{
  display: block;
  padding: calc(24vw / 7.5);
  font-size: calc(26vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  background: var(--content-color-green);
  position: relative
}
.more__link>a::after{
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-right);
  width: calc(20vw / 7.5);;
  height: calc(24vw / 7.5);
  position: absolute;
  top: 0;
  right: calc(16vw / 7.5);
  bottom: 0;
  margin: auto
}
.more__link>a:hover{
  background: #000
}

/*** 白川郷とは ***/
.content__wrapper.about{
  background: url("../img/bg_mitsuuroko01.jpg") repeat;
}
.about__content{
  width: 100vw;
  background: rgba(255 255 255 / 80%);
  padding: calc(24vw / 7.5) calc(32vw / 7.5);
  margin: 0 calc(50% - 50vw) calc(48vw / 7.5);
}
.about__txt{
  font-size: calc(26vw / 7.5);
  text-align: center;
  line-height: 1.4
}
.about__txt.is-green{
  font-weight: bold;
}
.about__txt+.about__txt{
  margin-top: calc(24vw / 7.5);
}
.notice__box{
  width: 100%;
  margin: calc(32vw / 7.5) auto 0;
  background: var(--content-color-beige);
  padding: calc(16vw / 7.5);
  font-family: var(--font-sans);
}
.notice__midashi{
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  text-align: center;
  margin-bottom: calc(16vw / 7.5);
}
.notice__list>li{
  padding-left: 1.0em;
  text-indent: -1.0em;
  line-height: 1.5
}
.spot__content{
  display: flex;
  flex-direction: column;
  gap: calc(48vw / 7.5);
}
.spot__select{
  order: 1;
  height: calc(722vw / 7.5);
  background: url("../img/map_sp.png") var(--bg-img-setting);
  position: relative
}
.spot__select>li{
  display: none
}

.spot__list{
  order: 2;
  display: flex;
  gap: calc(16vw / 7.5);
  overflow-x: scroll;
  font-family: var(--font-sans);
}
.spot__list>li{
  flex: 0 0 85%;
  background: #FFF;
}
.spot__list>li.is-view{
  display: block
}
.spot__name{
  background: #000;
  text-align: center;
  font-size: calc(32vw / 7.5);
  font-weight: bold;
  color: #FFF;
  padding: calc(16vw / 7.5) 0
}
.spot__txt{
  padding: calc(16vw / 7.5);
  line-height: 1.5
}
.img__caption{
  display: block;
  font-size: calc(20vw / 7.5);
  margin-top: calc(8vw / 7.5)
}

/*** 四季 ***/
.content__wrapper.season{
  background: url("../img/bg_mitsuuroko02.jpg") repeat;
}
.head-title#season{
  margin-bottom: calc(100vw / 7.5);
}
.season__list{
  display: flex;
  flex-wrap: wrap;
  gap: calc(60vw / 7.5) calc(24vw / 7.5);
  margin-bottom: calc(80vw / 7.5);
}
.season__list>li{
  width: calc((100% - (24vw / 7.5)) / 2);
  position: relative;
  background: #FFF;
  display: flex;
  flex-direction: column;
}
.season__list>li::before{
  content: "";
  background: var(--bg-img-setting);
  width: calc(80vw / 7.5);
  height: calc(80vw / 7.5);
  position: absolute;
  top: calc(-40vw / 7.5);
  right: 0;
  left: 0;
  margin: auto
}
.season__list>li:first-child::before{
  background-image: url("../img/badge_spring.png")
}
.season__list>li:nth-child(2)::before{
  background-image: url("../img/badge_summer.png")
}
.season__list>li:nth-child(3)::before{
  background-image: url("../img/badge_autumn.png")
}
.season__list>li:last-child::before{
  background-image: url("../img/badge_winter.png")
}
.season__txt{
  padding: calc(24vw / 7.5) calc(16vw / 7.5);
  line-height: 1.5;
  flex-grow: 1
}
.season__data{
  display: block;
  font-size: calc(20vw / 7.5);
  font-family: var(--font_sans);
  margin-top: calc(8vw / 7.5);
}
.season__data:empty{
  display: none
}

.article__list{
  display: flex;
  flex-wrap: wrap;
  gap: calc(16vw / 7.5);
}
.article__list>li{
  width: calc((100% - (24vw / 7.5)) / 2);
  background: #FFF;
}
.article__list>li>a{
  display: block;
  height: 100%;
  position: relative
}
.article__list>li>a::after{
  content: "";
  width: calc(32vw / 7.5);
  height: calc(32vw / 7.5);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: var(--content-color-green);
  position: absolute;
  right: 0;
  bottom: 0;
}
.article__img{
  width: 100%;
  height: calc(200vw / 7.5);
}
.article__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article__txt{
  padding: calc(16vw / 7.5);
  line-height: 1.5;
  flex-grow: 1
}
.copyright{
  margin-top: calc(40vw / 7.5);
  text-align: right
}

/*** 冬ライトアップ ***/
.content__wrapper.special{
  background: #1A3155;
}
.head-title#lightup{
  color: #FFF;
}
.special__content{
  display: flex;
  flex-direction: column;
  gap: calc(32vw / 7.5);
  margin-bottom: calc(32vw / 7.5);
}
.special__content__left{
  order: 2;
  width: 100%;
}
.special__content__right{
  order: 1;
  width: 100%;
}
.event__catch{
  font-size: calc(32vw / 7.5);
  font-weight: bold;
  color: #FFF;
  margin-bottom: calc(16vw / 7.5);
  line-height: 1.25
}
.event__txt{
  color: #FFF;
  line-height: 1.5
}
.event__notice{
  margin-top: calc(24vw / 7.5);;
}
.event__notice>li{
  font-size: calc(20vw / 7.5);;
  color: #FFF;
  padding-left: 1.0em;
  text-indent: -1.0em;
  line-height: 1.5
}
.content__wrapper.special .sub-title,
.content__wrapper.special .close-txt{
  color: #FFF
}
