@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

:root{
  --content-color-forest: #005341;
  --content-color-green: #08785f;
  --content-color-ocher: #c6a131;
  --content-color-orange: #ea580c;
  --content-color-base: #333;
  --bg-img-setting: no-repeat center center / contain;
  --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 3px 0 0 rgba(0 0 0 / 20%);
  --content-arrow-down: url(../img/arrow01.svg);
  --content-arrow-link: url(../img/arrow02.svg);
  --content-arrow-right: url(../img/arrow03.svg);
  --content-border_s: 1px solid;
  --content-border_m: 3px solid;
  --content-border_l: 4px solid;
}
.nopc{
  display: none
}
.main{
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  font-weight: 400;
  position: relative;
  color: var(--content-color-base);
  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%;
  background: var(--content-color-forest);
}
.title__wrapper .inner{
  position: relative;
  padding: 40px 0;
}
.title-logo{
  text-align: center;
}
.dep-select-nav{
  position: absolute;
  top: 0;
  right: 0;
}
.display_selected {
  background: var(--content-color-ocher);
  width: 125px;
  height: 100%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 8px 14px;
}
.display_selected::after {
  content: "";
  background: var(--content-arrow-down) var(--bg-img-setting);
  width: 13px;
  height: 11px;
  display: block;
}
.dep-select-zone {
  display: none;
  width: 125px;
  position: absolute;
  z-index: 30;
  border: 1px solid var(--content-color-ocher);
  border-top: none;
  background: #FFF;
  line-height: 1.5
}
.dep-select>li {
  cursor: default;
  padding: 4px 8px;
  text-align: center;
  font-weight: bold;
}
.dep-select li:hover,
.dep-select li.selected {
  background: var(--content-color-ocher);
  color: #FFF;
}
.close-button{
  display: none
}
.catch-copy{
  background: var(--content-color-ocher);
  padding: 28px 0;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
}

.main__content{
  width: 100%;
  clip-path: inset(0 0 0 0);
}
.bg__wrapper{
  background: url("../img/bg_leaf.webp") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.is-fit{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.note__list>li,
.note__txt{
  display: block;
  font-size: 12px;
  font-weight: normal;
  padding-left: 1.0em;
  text-indent: -1.0em;
  line-height: calc(21 / 14)
}
.link__button{
  width: 750px;
  margin: auto;
}
.link__button>a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--content-color-green);
  border-radius: 29px;
  font-size: 20px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  padding: 20px 0;
  position: relative
}
.link__button>a::after{
  content: "";
  background: var(--bg-img-setting);
  background-image: var(--content-arrow-right);
  width: 23px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 44px;
  bottom: 0;
  margin: auto;
}

/*** アトラクション ***/
.content__wrapper.attraction{
  padding: 120px 0;
  background: linear-gradient(to bottom, transparent 0, #02271f 100%);
}
.item__container .head-title{
  font-size: 54px;
  font-weight: 900;
  color: rgba(255 255 255 / 60%);
  text-align: center;
  margin-bottom: 24px;
}
.bodycopy__box{
  width: 750px;
  min-height: 137px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--content-color-forest);
  margin: 0 auto 80px;
  position: relative
}
.bodycopy__box::before{
  content: "";
  background: url("../img/bg_catch.png") var(--bg-img-setting);
  width: 750px;
  height: 290px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1
}
.bodycopy{
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: bold;
  color: #FFF;
  text-align: center;  
  line-height: calc(57 / 32)
}
.bodycopy>small{
  display: block;
  font-family: var(--font-sans);
  font-size: 22px;
}

/* パークマップ */
.map__content{
  padding-bottom: 76px;
}
.map__img{
  margin-bottom: 24px
}
.select__button{
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  justify-content: space-between;
}
.select__button>li{
  width: calc((100% - (18px * 4)) / 5);
  height: 60px;
  background: var(--content-color-ocher);
  display: flex;
  gap: 8px;
  align-items: center;
  color: #FFF;
  border-radius: 6px;
  padding: 0 8px
}
.num{
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: bold;
}
.area__name{
  font-size: 12px;
  line-height: calc(18 / 12)
}
.en__name{
  display: block;
  font-family: var(--font-serif);
}
.select__button>li:nth-child(-n+4){
  width: calc((100% - (24px * 3)) / 4);
  gap: 21px;
  padding: 0 18px;
}
.select__button>li:nth-child(-n+4) .num{
  font-size: 40px;
}
.select__button>li:nth-child(-n+4) .area__name{
  font-size: 14px;
  line-height: calc(21 / 14)
}
.select__button>li.is-current,
.select__button>li:hover{
  background: var(--content-color-orange);
}

/* アトラクション共通 */
.title__box{
  margin-bottom: 10px;
  line-height: calc(34 / 26);
}
.title__en{
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--content-color-ocher);
}
.attraction-title{
  font-size: 26px;
}
.attraction-title>small{
  font-size: 16px;
}
.attraction-catch{
  font-size: 18px;
  font-weight: bold;
}
.attraction__copy{
  line-height: calc(28 / 14);
}
.map__link>a{
  font-family: var(--font-serif);
  font-weight: bold;
  color: var(--content-color-orange);
  text-decoration: underline
}
.attraction__note{
  display: block;
  margin-top: 8px;
}
.attraction__note:empty{
  display: none
}

/* A群 */
.top__list{
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.top__list>li{
  display: flex;
}
.top__list>li:nth-child(3){
  background: linear-gradient(to right, #FFF 50%, transparent 100%);
}
.top__list>li.is-row::before{
  content: "";
  background: no-repeat right top / cover;
  width: 50%;
  height:  calc(540vw / 19.2);
  display: block;
}
.top__list>li.is-row::after{
  content: "";
  display: block;
  background: linear-gradient(to right, #FFF 20%, transparent 100%);
  flex-grow: 1;
  flex-shrink: 1;
}
.top__list>li:first-child::before{
  background-image: url("../img/photo/ph_a_dinosaur_safari.jpg");
}
.top__list>li:nth-child(3)::before{
  background-image: url("../img/photo/ph_a_spa_junglia.jpg");
  
}
.top__list>li.is-reverse::after{
  content: "";
  background: no-repeat left top / cover;
  width: 50%;
  height:  calc(540vw / 19.2);
  display: block;
}
.top__list>li.is-reverse::before{
  content: "";
  display: block;
  background: linear-gradient(to left, #FFF 20%, transparent 100%);
  flex-grow: 1;
  flex-shrink: 1;
}
.top__list>li:nth-child(2)::after{
  background-image: url("../img/photo/ph_a_horizon_balloon.jpg")
}
.top__list>li:last-child::after{
  background-image: url("../img/photo/ph_a_yambaru_friends.jpg")
}
.top__list>li .attraction__item{
  width: 496px;
  min-height: calc(540vw / 19.2);
  background: #FFF;
  padding-top: calc(40vw / 19.2);
  flex-shrink: 0;
}
.top__list>li.is-row .attraction__item{
  padding-left: calc(40vw / 19.2);
}
.top__list>li.is-reverse .attraction__item{
  padding-right: calc(40vw / 19.2);
}
.top__list>li .title__box{
  margin-bottom: calc(16vw / 19.2);
}
.top__list>li .attraction-title{
  font-size: max((32vw / 19.2), 32px);
}
.top__list>li .title__en,
.top__list>li .attraction-catch{
  font-size: max((18vw / 19.2), 18px);
}

.top__list>li .attraction__copy{
  font-size: max(14px, (14vw / 19.2));
  padding-bottom: calc(8vw / 19.2);
}

/* B群・その他 */
.second__list{
  display: flex;
  flex-wrap: wrap;
  gap: 24px 22px;
  margin-bottom: 40px;
}
.second__list>li{
  background: #FFF;
}
.second__list .is-wide{
  width: 100%;
  display: flex;
}
.second__list .is-wide .second__img{
  width: 316px;
  height: 316px;
}
.second__list .is-wide .attraction__item{
  flex: 1;
  padding: 24px
}
.second__list .is-box{
  width: calc((100% - (22px * 2)) / 3);
  background: #FFF
}
.second__list .is-box .second__img{
  width: 100%;
  height: 178px;
}
.second__list .is-box .attraction__item{
  padding: 10px;
}
.second__list .is-box .title__box{
  margin-bottom: 0
}
.second__list .is-box .title__en{
  font-size: 12px;
}
.second__list .is-box .attraction-title{
  font-size: 22px;
  margin-bottom: 16px;
}
.second__list .is-box .attraction-title>small{
  display: block;
  font-size: 12px;
}
.second__list .is-box .attraction-catch{
  font-size: 14px;
}

.information__box{
  background: #FFF;
  padding: 40px 32px;
  margin-bottom: 24px
}
.information__box .link__button{
  margin-bottom: 32px;
}
.information__box .link__button>a::after{
  background-image: var(--content-arrow-link);
  width: 28px;
  height: 28px;
  right: 44px;
}
.information__box .link__button>a:hover{
  background: var(--content-color-forest);
}
.info__txt{
  font-size: 17px;
  font-weight: bold;
  color: var(--content-color-orange);
  text-align: center;
  margin-bottom: 16px;
}
.credit__txt{
  font-size: 19px;
  font-weight: bold;
  color: #FFF;
  text-align: right
}

/*** 商品 ***/
.content__wrapper.product{
  background: url("../img/bg_leaf_tour.png") no-repeat center top / cover, #eee2c3;
  padding: 80px 0
}
.release__date{
  font-size: 54px;
  font-weight: 900;
  color: var(--content-color-orange);
  text-align: center;
  letter-spacing: calc(80em / 1000);
  margin-bottom: 48px;
}
.content__wrapper.product .head-title{
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
.area00{
  display: none
}
.js-product-wrapper{
  margin-bottom: 80px;
}
.product-list{
  line-height: 1.4
}
.area00 .link__button{
  margin-top: 20px
}
.area00 .link__button>a{
  background: var(--content-color-ocher);
  box-shadow: 0 0 6px rgba(0 0 0 / 30%);
}
.area00 .link__button>a:hover{
  background: var(--content-color-orange)
}
.ticket-notice::after {
  font-size: 12px;
  font-weight: bold;
  color: #333;
  display: block;
  padding-left: 1.0em;
  text-indent: -1.0em
}
.ticket-notice.full::after{
  content: "※基本代金にJUNGLIA OKINAWA 1dayチケット代は含まれています。"
}
.ticket-notice.after2::after{
  content: "※基本代金にJUNGLIA OKINAWA 午後チケット代は含まれています。"
}
.ticket-notice.false{
  display: none
}


.ticket__box{
  background: #FFF;
  padding: 20px 25px 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between
}
.ticket__txt{
  line-height: calc(54 / 36);
  letter-spacing: calc(20em / 1000);
}
.ticket__txt>a{
  pointer-events: none;
  font-size: 36px;
  font-weight: 900;
  color: var(--content-color-green);
}
.ticket__txt span{
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: var(--content-color-base);
}
.ticket__link{
  width:126px;
}

.links__box{
  background: #FFF;
  padding: 20px;
  margin-top: 40px;
}
.links__midashi{
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 16px;
}
.other__links{
  display: flex;
  gap: 24px;
}
.other__links>li{
  width: calc((100% - 24px) / 2);
}
.other__links>li.link__button>a:hover{
  background: var(--content-color-forest);
}

/*** フッターバナー ***/
.content__wrapper.foot{
  padding: 85px 0 80px;
}
.content__wrapper.foot .inner{
  background: #FFF;
  padding: 34px 50px;
}
.content__wrapper.foot .inner .bnr__list{
  gap: 34px;
}
.content__wrapper.foot .inner .bnr__list>li{
  width: calc((100% - (34px * 3)) / 4)
}

/*** フロートバナー ***/
#float-bnr{
  width: 240px;
  height: 240px;
  position: fixed;
  top: 400px;
  right: 0;
  z-index: 500
}