@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);
}

.nopc{
  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: 500px;
  background: url("../img/bg_mv.jpg") var(--bg-cover-setting);
  position: relative
}
.title-logo>img{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto
}
.nav__wrapper{
  background: #000;
}
.nav__wrapper .inner{
  display: flex;
}
.nav__list{
  width: calc(100% - 100px);
  margin: auto;
  display: flex;
  justify-content: space-between;
  border-left: var(--content-border_s) var(--content-color-gray);
}
.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: 16px 8px 30px;
  font-size: 16px;
  color: #FFF;
  text-align: center;
  position: relative
}
.nav__list>li>a::after{
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-down);
  width: 12px;
  height: 10px;
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  margin: auto
}
.nav__list>li>a:hover{
  background: var(--content-color-green);
}
.display_selected {
  width: 100px;
  height: 100%;
  background: var(--content-color-green);
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  line-height: 48px;
  position: relative;
  cursor: pointer;
  z-index: 20
}
.display_selected::after {
  content: "";
  background: var(--content-arrow-down) var(--bg-img-setting);
  width: 12px;
  height: 10px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 8px;
  margin: auto;
}
.dep-select-zone {
  display: none;
  width: 100px;
  background: #FFF;
  position: absolute;
  z-index: 30;
  border: var(--content-border_s) var(--content-color-green);
  border-top: none;
}
.dep-select li {
  cursor: default;
  padding: 2px 8px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5
}
.dep-select li:hover, .dep-select li.selected {
  color: #FFF;
  background: var(--content-color-green);
}
.close-button{
  display: none
}

/***** メインコンテンツ *****/
.content__wrapper{
  padding: 64px 0;
}
.head-title{
  margin-bottom: 32px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.head-title>span{
  display: inline-block;
  font-size: 40px;
  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: 51px;
  height: 43px;
  display: block;
}
.sub-title{
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}
.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;
  gap: 16px;
  margin: 24px auto;
  justify-content: center;
}
.more__link{
  width: calc((100% - (16px * 2)) / 3);
  max-width: 480px;
  flex-grow: 1
}
.more__link>a{
  display: block;
  padding: 16px;
  font-size: 14px;
  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: 10px;
  height: 12px;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto
}
.more__link>a:hover{
  background: #000
}

/*** 白川郷とは ***/
.content__wrapper.about{
  background: url("../img/bg_mitsuuroko01.jpg") repeat;
}
.about__content{
  background: rgba(255 255 255 / 80%);
  padding: 24px 48px;
  margin-bottom: 40px;
}
.about__txt{
  font-size: 16px;
  text-align: center;
  line-height: 1.4
}
.about__txt.is-green{
  font-weight: bold;
}
.about__txt+.about__txt{
  margin-top: 16px;
}
.notice__box{
  width: 660px;
  margin: 24px auto 0;
  background: var(--content-color-beige);
  padding: 16px;
  font-family: var(--font-sans);
}
.notice__midashi{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}
.notice__list>li{
  padding-left: 1.0em;
  text-indent: -1.0em;
  line-height: 1.5
}
.spot__content{
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.spot__select{
  width: 616px;
  height: 722px;
  background: url("../img/map.png") var(--bg-img-setting);
  position: relative
}
.spot__select>li{
  position: absolute;
  background: var(--content-color-green);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: bold;
  color: #FFF;
  padding: 4px 20px 5px 4px;
  cursor: pointer;
}
.spot__select>li.is-active{
  background: #000
}
.spot__select>li::after{
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-right);
  width: 10px;
  height: 12px;
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  margin: auto
}
.spot__select>li.spot1{
  top: 0;
  right: 0;
}
.spot__select>li.spot2{
  top: 100px;
  right: 55px;
}
.spot__select>li.spot3{
  top: 325px;
  right: 90px;
}
.spot__select>li.spot4{
  top: 430px;
  right: 105px;
}
.spot__select>li.spot5{
  bottom: 175px;
  right: 165px;
}
.spot__select>li.spot6{
  bottom: 140px;
  left: 250px;
}
.spot__select>li.spot7{
  bottom: 65px;
  left: 80px;
}
.spot__select>li:hover{
  background: #000
}
.spot__list{
  flex: 1;
  font-family: var(--font-sans);
}
.spot__list>li{
  display: none;
  background: #FFF;
  box-shadow: var(--content-shadow);
}
.spot__list>li.is-view{
  display: block
}
.spot__name{
  background: #000;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  padding: 8px 0
}
.spot__txt{
  padding: 10px;
  line-height: 1.5
}
.img__caption{
  display: block;
  font-size: 12px;
  margin-top: 4px;
}

/*** 四季 ***/
.content__wrapper.season{
  background: url("../img/bg_mitsuuroko02.jpg") repeat;
}
.head-title#season{
  margin-bottom: 80px;
}
.season__list{
  display: flex;
  gap: 24px;
  margin-bottom: 64px;
}
.season__list>li{
  width: calc((100% - (24px * 3)) / 4);
  position: relative;
  background: #FFF;
  display: flex;
  flex-direction: column;
}
.season__list>li::before{
  content: "";
  background: var(--bg-img-setting);
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  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: 16px 8px;
  line-height: 1.5;
  flex-grow: 1
}
.season__data{
  display: block;
  font-size: 12px;
  font-family: var(--font_sans);
  margin-top: 4px
}
.season__data:empty{
  display: none
}

.article__list{
  display: flex;
  gap: 24px;
}
.article__list>li{
  width: calc((100% - (24px * 3)) / 4);
  background: #FFF;
}
.article__list>li>a{
  display: block;
  height: 100%;
  position: relative
}
.article__list>li>a::after{
  content: "";
  width: 16px;
  height: 16px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: var(--content-color-green);
  position: absolute;
  right: 0;
  bottom: 0;
}
.article__list>li>a:hover{
  box-shadow: 0 2px 20px rgb(0 0 0 / 25%)
}
.article__img{
  width: 100%;
  height: 140px;
}
.article__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article__txt{
  padding: 16px 8px;
  line-height: 1.5;
  flex-grow: 1
}
.copyright{
  margin-top: 24px;
  text-align: right
}

/*** 冬ライトアップ ***/
.content__wrapper.special{
  background: #1A3155;
}
.head-title#lightup{
  color: #FFF;
}
.special__content{
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.special__content__left,
.special__content__right{
  width: calc((100% - 24px) / 2);
}
.event__catch{
  font-size: 18px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 16px;
}
.event__txt{
  color: #FFF;
  line-height: 1.5
}
.event__notice{
  margin-top: 16px;
}
.event__notice>li{
  font-size: 12px;
  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
}
