@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

/* CSS Document */
:root{
  --content-color-base: #2C2A29;
  --content-color-yellow: #f9e426;
  --content-color-gold: #8c6223;
  --bg-img-setting: no-repeat center center / contain;
  --content-width-sp: calc(336vw / 3.75);
  --content-width-pc: 1104px;
  --content-width: min(var(--content-width-sp), var(--content-width-pc));
  --content-width-tab: min(calc(100% - (96vw / 7.68)), var(--content-width-pc));
  --font-size-pc: 16px;
  --font-size-sp: calc(14vw / 3.75);
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-iroha: irohakakuc, sans-serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-hover-speed: 0.3s;
  --mv-transition-speed: 1s;
  --content-shadow: 0px 0px 9.4px 0.6px rgba(255, 255, 255, 0.4);
  --content-shadow_product: 0 0 8 2 rgba(255 / 255 / 255 / 80%);
  --content-shadow_btn: 0 0 4.85px 0.15px rgba(255 / 255 / 255 / 60%);
  --content-arrow-down_g: url(../img/arrow01.svg);
  --content-arrow-down_y: url(../img/arrow02.svg);
  --content-arrow-right_g: url(../img/arrow04.svg);
  --content-arrow-right_y: url(../img/arrow03.svg);
  --content-border-1: 1px solid;
  --content-border-2: 2px solid;
  --content-border-3: 3px solid;
  --content-border-6: 6px solid;
  --content-star-yellow: url("../img/ico_light01.svg");
  --content-star-gold: url("../img/ico_light02.svg");
  --content-star-white: url("../img/ico_light03.svg");
}

.nosp,
.is-pc,
.is-tb{
  display: none
}
.main{
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  color: var(--content-color-base);
  line-height: 1.3;
  position: relative;
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}
a{
  transition: var(--content-hover-speed);
  color: var(--content-color-base);
}
.is-fit{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.note-txt{
  display: block;
  font-size: 12px;
  padding-left: 1.0em;
  text-indent: -1.0em;
}

.breadcrumb-list{
  background: #FFF;
}

/***** タイトル・ナビ *****/
.main::before{
  content: "";
  width: 100%;
  height: 100vh;
  background: no-repeat center center / cover;
  background-image: url("../img/bgmv.jpg");
  background-color: var(--content-color-base);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  transition: filter var(--mv-transition-speed);
  margin: -3px
}
.main.is-blur::before{
  filter: blur(5px)
}
.title-wrapper{
  width: var(--content-width);
  display: grid;
  place-items: center;
  gap: calc(40vw / 3.75);
  margin: auto;
  padding-top: calc(80vw / 3.75)
}
.main-title{
  text-align: center;
}
.menu-list{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(8vw / 7.5);
  justify-content: center;
}
.menu-list>li>a{
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
  border-radius: 50%;
  background: var(--content-color-yellow);
  box-shadow: var(--content-shadow);
  position: relative
}
.in-circle{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-iroha);
  font-size: calc(16vw / 3.75);
  font-weight: bold;
  color: var(--content-color-gold);
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.in-circle small{
  display: block;
  font-size: calc(10vw / 3.75);
}

/***** メインコンテンツ *****/
.content-wrapper{
  padding: calc(60vw / 3.75) 0;
}
.content-wrapper .inner{
  display: grid;
  gap: calc(40vw / 3.75)
}
.head-title{
  text-align: center;
  font-family: var(--font-iroha);
}
.head-title:not(#recommend)>span{
  font-size: calc(30vw / 3.75);
  display: flex;
  gap: calc(8vw / 3.75);
  align-items: center;
  justify-content: center;
}

/*** .select__content ***/
.nav-wrapper{
  display: grid;
  gap: calc(16vw / 3.75);
}
.nav-midashi{
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(8vw / 3.75);
  align-items: flex-start
}
.head-title#recommend{
  font-size: calc(20vw / 3.75);
  color: #FFF;
  padding-top: calc(80vw / 3.75);
  position: relative
}
.head-title#recommend>span{
  display: block;
  font-size: calc(28vw / 3.75);
  color: var(--content-color-yellow);
  line-height: 1.2
}
.head-title#recommend::before{
  content: "";
  background: url("../img/bg_ttl_osusume.svg") var(--bg-img-setting);
  width: 100%;
  height: calc(70vw / 3.75);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto
}
.bodycopy{
  color: #FFF;
  line-height: calc(35 / 20)
}
.nav-map{
  display: grid;
  gap: calc(24vw / 3.75)
}
.nav-map-img{
  width: 100%;
  text-align: center;
}
.nav-map-list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(8vw / 3.75);
}
.nav-map-list>li{
  border: var(--content-border-1) #FFF;
  color: #FFF;
  text-align: center;
  border-radius: 8px;
  box-shadow: var(--content-shadow);
  padding: calc(12vw / 3.75) 0;
  line-height: 1.0
}
.nav-map-list>li.is-active{
  border: none;
  box-shadow: none;
  background: var(--content-color-yellow);
  color: var(--content-color-gold)
}
.area-item{
  display: none
}

/*** おすすめイルミスポット ***/
.recommend-container{
  display: grid;
  gap: calc(40vw / 3.75);
}
.recommend-wrapper{
  display: grid;
  gap: calc(24vw / 3.75);
}
.recommend-wrapper.is-hide{
  display: none
}
.recommend-content{
  display: grid;
  gap: calc(16vw / 3.75);
}
.recommend-box{
  display: grid;
  background: rgba(255 255 255 / 70%);
}
.recommend-img{
  order: 1
}
.recommend-item{
  order: 2;
  padding: calc(10vw / 3.75);
}
.recommend-titlebox{
  background: #FFF;
  padding: calc(10vw / 3.75) 0;
  margin-bottom: calc(10vw / 3.75);
  border: var(--content-border-2);
  font-size: calc(16vw / 3.75);
  color: var(--content-color-gold);
  text-align: center   
}
.recommend-area{
  display: flex;
  gap: calc(4vw / 3.75);
  justify-content: center;
  align-items: center;
}
.recommend-area::before,
.recommend-area::after{
  content: "";
  background: var(--content-star-gold) var(--bg-img-setting);
  width: calc(12vw / 3.75);
  height: calc(15vw / 3.75);
  display: block;
}
.recommend-title{
  font-family: var(--font-iroha);
  line-height: 1.5
}
.title-sub{
  display: block;
}
.title-main{
  display: block;
  font-size: calc(22vw / 3.75);
  line-height: 1.0
}
.title-main>small{
  font-size: 80%;
}
.recommend-catch{
  display: flex;
  gap: calc(4vw / 3.75);
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-gold);
  position: relative;
  margin-bottom: calc(10vw / 3.75);
}
.recommend-catch::before{
  content: "";
  display: block;
  background: var(--content-star-yellow) var(--bg-img-setting);
  width: calc(18vw / 3.75);
  height: calc(22.5vw / 3.75);
}
.recommend-txt{
  color: #000;
  line-height: 1.5
}
.recommend-data{
  background: #FFF;
  border: var(--content-border-2) var(--content-color-gold);
  padding: calc(10vw / 3.75);
  display: grid;
  gap: calc(16vw / 3.75);
}
.recommend-data>li{
  display: flex;
  gap: calc(4vw / 3.75);
  position: relative
}
.recommend-data>li:first-child::after{
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: var(--content-border-1) var(--content-color-gold);
  position: absolute;
  bottom: calc(-8vw/ 3.75);
  left: 0;
}
.recommend-data>li::before{
  content: "";
  display: block;
  background: var(--bg-img-setting);
}
.recommend-data>li:first-child::before{
  background-image: url("../img/ico_date.svg");
  width: calc(24vw / 3.75);
  height: calc(24vw / 3.75);
}
.recommend-data>li:last-child::before{
  background-image: url("../img/ico_time.svg");
  width: calc(24vw / 3.75);
  height: calc(23vw / 3.75);
}
.recommend-data-txt{
  font-size: 12px;
}
.recommend-data-txt .midashi{
  color: var(--content-color-gold);
  display: inline-block;
  margin-right: calc(4vw / 3.75);
}
.content-wrapper.other .note-txt{
  color: #FFF
}

/*** ツアー商品 ***/
.sub-title{
  text-align: center;
  font-family: var(--font-iroha);
  margin-bottom: calc(10vw / 3.75)
}
.sub-title>span{
  display: flex;
  gap: calc(8vw / 3.75);
  align-items: center;
  justify-content: center;
  font-size: calc(28vw / 3.75);
  font-weight: bold;
  color: var(--content-color-yellow);
  position: relative
}
.sub-title>span::before,
.sub-title>span::after{
  content: "";
  display: block;
  background: var(--content-star-yellow) var(--bg-img-setting);
  width: calc(24vw / 3.75);
  height: calc(30vw / 3.75);
}
.product-list.card-style>li .product-list__item .item-txt__port{
  background: rgba(140 98 35 / 70%)
}
.more-link{
  width: 100%;
  margin: calc(16vw / 3.75) auto 0;
}
.more-link>a{
  display: block;
  background: var(--content-color-yellow);
  color: var(--content-color-gold);
  text-align: center;
  padding: calc(12vw / 3.75);
  border-radius: 32px;
  box-shadow: var(--content-shadow);
  position: relative
}
.more-link>a::after{
  content: "";
  background: var(--bg-img-setting);
  background-image: var(--content-arrow-right_g);
  width: calc(8vw / 3.75);
  height: calc(13vw / 3.75);
  position: absolute;
  top: 0;
  right: calc(8vw / 3.75);
  bottom: 0;
  margin: auto;
}
.more-link>a:hover{

}
.close-txt{
  color: #FFF;
  font-size: 16px;
}

/*** 楽しみ方 ***/
.content-wrapper.howto{
  background: url("../img/bg_howto.jpg") repeat;
  border-top: var(--content-border-6) var(--content-color-gold);
  border-bottom: var(--content-border-6) var(--content-color-gold);
}
.head-title#howto>span{
  color: var(--content-color-gold);
}
.head-title#howto>span::before,
.head-title#howto>span::after{
  content: "";
  display: block;
  background: var(--content-star-gold) var(--bg-img-setting);
  width: calc(24vw / 3.75);
  height: calc(30vw / 3.75);
}
.howto-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(16vw / 3.75);
  justify-content: center;
}
.howto-img{
  margin-bottom: calc(16vw / 3.75);
  position: relative;
}
.howto-img>img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: var(--content-border-2) var(--content-color-gold);
  overflow: hidden;
}
.howto-img::after{
  content: "";
  background: var(--bg-img-setting);
  width: 100%;
  height: calc(60vw / 3.75);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto
}
.howto-list>li:first-child .howto-img::after{
  background-image: url("../img/ico_pt01.svg")
}
.howto-list>li:nth-child(2) .howto-img::after{
  background-image: url("../img/ico_pt02.svg")
}
.howto-list>li:nth-child(3) .howto-img::after{
  background-image: url("../img/ico_pt03.svg")
}
.howto-list>li:last-child .howto-img::after{
  background-image: url("../img/ico_pt04.svg")
}
.howto-txt{
  line-height: 1.75
}
.howto-txt .point{
  background: var(--content-color-yellow)
}

/*** 全国おすすめ ***/
.content-wrapper.other{
  padding-top: 0
}
.parallax{
  display: block;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: -1;
  padding: 30px 0;
}
.parallax::after{
  background: url("../img/bg_area.jpg") var(--bg-img-setting), var(--content-color-gold);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.head-title#other>span{
  color: #FFF;
}
.head-title#other>span::before,
.head-title#other>span::after{
  content: "";
  display: block;
  background: var(--content-star-white) var(--bg-img-setting);
  width: calc(24vw / 3.75);
  height: calc(30vw / 3.75);
}
.spot-list{
  display: grid;
  gap: calc(24vw/ 3.75);
}
.spot-list>li{
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  gap: calc(4vw/ 3.75);
}
.spot-img{
  width: 100%;
  height: 230px;
  border: var(--content-border-2) var(--content-color-gold);
  position: relative
}
.area-icon{
  background: var(--content-color-gold);
  padding: 0 calc(4vw / 3.75) calc(4vw / 3.75);
  font-size: 16px;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: calc(4vw / 3.75);
  align-items: center
}
.area-icon::before{
  content: "";
  display: block;
  background: var(--content-star-yellow) var(--bg-img-setting);
  width: calc(12vw / 3.75);
  height: calc(15vw / 3.75);
}
.copyright{
  display: inline-block;
  background: rgba(255 255 255 / 80%);
  padding: 0 4px;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.spot-name{
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
}
.spot-name>small{
  font-size: 14px;
}
.spot-txt{
  color: #FFF;
  line-height: 1.5
}
.spot-txt>sup{
  font-size: 10px;
  vertical-align: super
}
.spot-data{
  margin-top: calc(8vw / 3.75);
  padding-top: calc(8vw / 3.75);
  border-top: var(--content-border-1) #FFF;
}
.spot-data>li{
  color: #FFF;
  font-size: 12px;
  line-height: 1.5
}
.spot-data>li>a{
  color: #FFF;
  text-decoration: underline
}
.spot-link{
  margin-top: calc(20vw/ 3.75);
}
.spot-link>a{
  display: block;
  background: #FFF;
  border: var(--content-border-2);
  border-radius: 24px;
  padding: calc(8vw / 3.75);
  font-size: 16px;
  color: var(--content-color-gold);
  text-align: center;
  position: relative
}
.spot-link>a::after{
  content: "";
  background: var(--content-arrow-right_g) var(--bg-img-setting);
  width: calc(8vw / 3.75);
  height: calc(13vw / 3.75);
  position: absolute;
  top: 0;
  right: calc(8vw / 3.75);
  bottom: 0;
  margin: auto
}

/*.close-txt{
  font-size: 16px;
  border: var(--content-border-1);
  padding: 16px;
}*/