@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@500;600;700&display=swap');

:root{
  --content-color-base: #2e342f;
  --content-color-gold: #a7a238;
  --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-arrow-down: url(../images/aro01.png);
  --content-arrow-down_on: url(../images/aro01_on.png);
  --content-border_s: 1px solid;
  --content-border_m: 2px solid;
  --content-border_l: 4px solid;
}

.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);
}

/***** タイトル・ナビ *****/ 
#mv_slider {
  width: 100%;
  height: 500px;
  position: relative
}
.main-title{
  height: 100%;
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center
}
.nav__wrapper{
  background: #000;
  border-bottom: var(--content-border_l) var(--content-color-gold)
}
.nav__wrapper .inner{
  display: flex;
  justify-content: space-between
}
.nav__list{
  display: flex;
  width: calc(100% - 120px);
  border-right: var(--content-border_s) var(--content-color-gold);
}
.nav__list>li{
  width: calc(100% / 3);
  border-left: var(--content-border_s) var(--content-color-gold);
}
.nav__list>li>a{
  display: block;
  padding: 16px 8px 24px;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative;
}
.nav__list>li>a::after {
  content: "";
  background: var(--bg-img-setting);
  background-image: var(--content-arrow-down);
  width: 16px;
  height: 11px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 4px;
  margin: auto
}
.nav__list>li>a:hover {
  background: #FFF;
  color: var(--content-color-gold);
}
.nav__list>li>a:hover::after {
  background-image: var(--content-arrow-down_on);
}
.display_selected {
  width: 120px;
  height: 100%;
  background: var(--content-color-gold);
  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: 16px;
  height: 11px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 4px;
  margin: auto;
}
.dep-select-zone {
  display: none;
  width: 120px;
  background: #FFF;
  position: absolute;
  z-index: 30;
  border: var(--content-border_s) var(--content-color-gold);
  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-gold);
}
.close-button{
  display: none
}

/***** メインコンテンツ *****/
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}
@keyframes title_img {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1
  }
}

.content__wrapper {
  width: 100%;
  padding: 60px 0;
}
.head-title:not(#hotel){
  font-size: 36px;
  font-weight: bold;
  color: var(--content-color-base);
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  line-height: 1.5
}
.head-title>small{
  display: block;
  font-size: 50%;
  font-weight: normal;
}
.head-title:not(#hotel){
  margin-bottom: 64px;
}
.head-title:not(#hotel)::before{
  content: "";
  background: url("../images/h2_deco_moon_activity.png") var(--bg-img-setting);
  width: 112px;
  height: 119px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto
}
.head-title:not(#hotel)::after{
  content: "";
  display: block;
  width: 140px;
  height: 4px;
  background: var(--content-color-base);
  position: absolute;
  right: 0;
  bottom: -40px;
  left: 0;
  margin: auto;
}
.sub-title:not(.upgrade){
  width: 380px;
  font-size: 32px;
  color: var(--content-color-base);
  text-align: center;
  padding: 0 8px 16px;
  margin: 0 auto 24px;
  border-bottom: var(--content-border_s) var(--content-color-base)
}
.bodycopy{
  font-size: 16px;
  text-align: center;
  line-height: 1.5  
}
.leadcopy{
  text-align: center;
  line-height: 1.5;
}

/*** 過ごし方 ***/
.activity__content {
  margin: 32px auto;
  width: 100%;
  height: 325px;
  background: url("../images/pc_bg_jungle.jpg") var(--bg-cover-setting);
}
.activity__content .inner{
  display: flex;
  flex-direction: row-reverse;
  height: 325px;
}
.activity__inbox{
  width: 480px;
  height: 100%;
  padding-right: 32px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.upper__list,
.lower__list{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.upper__list{
  margin-bottom: 48px
}
.upper__list>li,
.lower__list>li:nth-child(-n+2){
  width: calc((100% - 24px) / 2);
}
.lower__list>li{
  width: calc((100% - (24px * 2)) / 3);
}
.activity__midashi{
  font-size: 18px;
  font-weight: bold;
  border-bottom: var(--content-border_s) var(--content-color-base);
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.activity__item{
  display: contents
}
.adtivity__txt{
  line-height: 1.5;
  margin-bottom: 4px;
}
.activity__icon .icon__txt{
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--content-color-gold);
  text-align: center;
  border: var(--content-border_s);
  padding: 4px;
}
.activity__img{
  width: 100%;
  height: 200px;
  margin-bottom: 16px;
}
.lower__list>li:nth-child(-n+2) .activity__img{
  height: 280px;
}
.activity__img>img{
  width: 100%;
  height:100%;
  object-fit: cover;
  object-position: center;
}

/*** ホテル詳細 ***/
.content__wrapper.hotel {
  background: url("../images/pc_bg_hotel.jpg") var(--bg-cover-setting);
  padding-top: 48px;
}
.hotel__content{
  width: 100%;
  display: flex;
}
.hotel__content::before{
  content: "";
  display: block;
  background: #000;
  flex-grow: 1;
}
.hotel__content::after{
  content: "";
  display: block;
  background: transparent;
  flex-grow: 1;
}
.hotel__content .inner{
  display: flex;
  gap: 24px;
}
.hotel__titlebox,
.hotel_roombox{
  width: calc((100% - 24px) / 2);
}
.hotel__titlebox{
  padding: 16px;
  background: #000
}
.head-title#hotel{
  font-size: 36px;
  font-weight: bold;
  color: var(--content-color-gold);
  margin-bottom: 24px;
  line-height: 1.25;
  position: relative;
  z-index: 20
}
.head-title#hotel>span{
  position: relative;
  z-index: 20
}
.head-title#hotel>span>small{
  color: #FFF;
  display: block;
  font-size: 50%;
  font-weight: normal;
}
.head-title#hotel::before{
  content: "";
  background: url("../images/h2_deco_moon_hotel.png") var(--bg-img-setting);
  width: 65px;
  height: 67px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0
}
.hotel__titlebox .bodycopy{
  padding-left: 24px;
  padding-bottom: 48px;
  color: #FFF;
  text-align: left;
  border-left: var(--content-border_s);
}
.room__img{
  position: relative
}
.room__badge {
  display: block;
  background: var(--content-color-gold);
  line-height: 30px;
  padding: 4px;
  font-size: 16px;
  color: #FFF;
  position: absolute;
  top: 8px;
  left: 0;
  z-index: 20;
}
.room__badge::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border: solid 19px var(--content-color-gold);
  border-right: solid 19px transparent;
  top: 0;
  right: -20px;
  z-index: -5
}
.room__txtbox{
  background: #000;
  padding: 8px;
}
.room__txt{
  color: #FFF;
  line-height: 1.25
}
.room__data{
  margin-top: 4px;
}
.room__data>span{
  display: inline-block;
  background: var(--content-color-gold);
  font-size: 12px;
  font-weight: bold;
  color: #FFF;
  padding: 4px;
}
.upgrade__content{
  margin: 64px auto 32px;
  background: #000;
  padding: 32px 64px
}
.sub-title.upgrade {
  font-size: 32px;
  color: #FFF;
  text-align: center;
  line-height: 1.25;
  position: relative;
  margin-bottom: 64px;
}
.sub-title.upgrade small {
  display: block;
  font-size: 50%;
}
.sub-title.upgrade::after{
  content: "";
  display: block;
  width: 140px;
  height: 2px;
  background: var(--content-color-gold);
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 0;
  margin: auto;
}
.upgrade__inbox {
  display: flex;
  gap: 60px;
}
.upgrade__img,
.upgrade__item{
  width: calc((100% - 60px) / 2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.upgrade__img>img{
  width: 380px;
  box-shadow: 4px 4px 0 rgba(136, 132, 44)
}
.upgrade__midashi {
  width: 350px;
  font-size: 24px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: var(--content-border_s)
}
.upgrade__item .room__txtbox{
  background: none;
  width: 350px;
  padding: 0
}
.upgrade__item .room__txtbox .room__txt{
  line-height: 1.5
}

/*** ツアー ***/
.content__wrapper.tour{
  border-bottom: var(--content-border_l) var(--content-color-gold);
}
.area00 {
  display: none;
}
.product-list{
  font-family: var(--font-sans);
  line-height: 1.4;
  margin-bottom: 48px;
}

.content__wrapper.search{
  font-family: var(--font-sans);
  background: url("../images/bg.gif") repeat
}
