@charset "UTF-8";

/*============================================================================================
      General
=============================================================================================*/
/*    Fonts
=====================================================*/
.g_yugo{
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
.g_mPlusRounded{
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.g_roboto{
  font-family: 'Roboto', sans-serif;
}
.g_bmwB{
  font-family: 'BMWSansBold', sans-serif;
}
.g_bmwR{
  font-family: 'BMWSansReg' sans-serif;
}



/*    Hamburger Menu
=====================================================*/
/*-- Initial --*/
.g_hamb{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}
.g_hamb_inr{
  width: 18px;
  height: 15px;
  position: relative;
  z-index: 100;
}
.g_hamb_inr div{
  width: inherit;
  height: 1px;
  display: block;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: transform .2s, top .2s, bottom .2s;
  transition: transform .2s, top .2s, bottom .2s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.g_hamb .g_hamb_inr_top{
  bottom: auto;
}
.g_hamb .g_hamb_inr_btm{
  top: auto;
}

/*-- Opened --*/
.g_hamb.js_open .g_hamb_inr_mdl{
  opacity: 0;
}
.g_hamb.js_open .g_hamb_inr_top{
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 0;
}
.g_hamb.js_open .g_hamb_inr_btm{
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
}

@media (max-width: 576px){
  .g_hamb_inr{
    width: 4.8vw;
  }
}



/*    Slider
=====================================================*/
/*-- Default Custom --*/
.g_slider{
  margin: auto;
  width: 83%;
  max-width: 335px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
}
.g_slider .slick-list,
.g_slider .slick-track{
  height: inherit;
}
.g_slider .slick-track{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.g_slider.slick-dotted {
  margin-bottom: 0;
}
.g_slider .slick-dots{
  top: 10px;
  right: 0;
  left: 0;
  padding-top: 0;
  text-align: center;
  height: 6px;
}
.g_slider .slick-dots li {
  width: 6px;
  height: 6px;
  margin: 0 5px;
  overflow: visible;
}
.g_slider .slick-dots li button{
  overflow: visible;
}
.g_slider .slick-dots li button::before {
  background-color: #707070;
  border-radius: 50%;
}
.g_slider .slick-dots li.slick-active button::before {
  background-color: #fff;
  color: black;
}
.g_slider_prev,
.g_slider_next{
  width: 0;
  height: 0;
  border-style: solid;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0.7;
  display: block;
  position: absolute;
  cursor: pointer;
  z-index: 2;
}
.g_slider_prev{
  border-width: 10px 12px 10px 0;
  border-color: transparent #ffffff transparent transparent;
  left: -22px;
}
.g_slider_next{
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent #ffffff;
  right: -22px;
}

/*-- Original --*/
.g_slider_itm,
.g_slider_itm.slick-slide{
  color: #000;
  width: 100%;
  height: auto;
  /* min-height: 454px; */
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}
.g_slider_itm[data-slick-index="-2"]{}
.g_slider_itm[data-slick-index="-1"]{}
.g_slider_itm[data-slick-index="0"]{}
.g_slider_itm[data-slick-index="1"]{}
.g_slider_itm[data-slick-index="2"]{}
.g_slider_itm[data-slick-index="3"]{}
.g_slider_itm[data-slick-index="4"]{}

.g_slider_itm_box{
  padding: 30px 20px;
}
.g_slider_itm_img{
  width: 100%;
  height: 0;
  padding-top: calc(100% * 0.55);
  position: relative;
}
.g_slider_itm_img img{
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}
/*    Popup
=====================================================*/
#js_popup{
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 414px;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
  z-index: -10;
}
#js_popup.js_show{
  opacity: 1;
  visibility: visible;
  z-index: 10000;
}
#js_close_btn{
  position: absolute;
  top: 20px;
  right: 5%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: #FFF;
  border-radius: 50%;
  z-index: 3;
}
#js_close_btn::before,
#js_close_btn::after{
  width: 13px;
  height: 2px;
  display: block;
  background-color: #666;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
#js_close_btn::before{
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#js_close_btn::after{
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#js_bg{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.8);
  z-index: 1;
  cursor: pointer;
}

@media (max-width: 895px){
  #js_popup{
    max-width: 100%;
  }
}

/*    Section
=====================================================*/
.g_sec{
  padding: 40px 0 80px;
}
.g_bd_t{
  border-top: 1px solid #000;
}
.g_bg{
  background-color: #F5F5F5;
}

/*    Heading
=====================================================*/
.g_ttl_lg,
.g_ttl_lg__left{
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.5;
}
.g_ttl_lg__left{
  text-align: left;
}
.g_ttl_md{
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.55;
  margin-bottom: 0.5em;
}
.g_ttl_sm{
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.g_ttl_bg{
  font-size: 1.4rem;
  line-height: 1.55;
  background-color: #373737;
  padding: 8px 5%;
}

.g_pgHd{
  padding-bottom: 20px;
  padding-right: 5%;
  padding-left: 5%;
  border-bottom: 1px solid #000;
}

@media (max-width: 576px){
  .g_ttl_lg,
  .g_ttl_lg__left{
    font-size: 4.8vw;
  }
  .g_pgHd{
    padding-bottom: 5.333vw;
  }
}

/*    Text - basic -
=====================================================*/
.g_txt,
.g_txt__cnt{
  font-size: 1.4rem;
}
.g_txt__cnt{
  text-align: center;
}
.g_txt a,
.g_txt__cnt a{
  color: #0066B1;
  text-decoration: underline;
}
.g_cap{
  font-size: 1rem;
  line-height: 1.5;
}
.g_txt_sec .g_txt + .g_txt,
.g_cap_sec .g_cap + .g_cap{
  margin-top: 0.5em;
}

/*    Button - Reset -
=====================================================*/
/*    - Reset - input, textarea
=====================================================*/
input[type='text'],
select,
textarea{

}
input[type='submit'],
input[type='button'],
button{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: inherit;
  outline: none;
}
input,
select{
  line-height: 1;
}
select{
  color: inherit;
}
textarea{
  resize: vertical;
  height: 220px;
}
input[type='submit'],
input[type='button'],
input[type='radio'],
input[type='checkbox'],
label,
button,
select {
  cursor: pointer;
}
select::-ms-expand{
  display: none;
}
::-webkit-input-placeholder{ /* WebKit, Blink, Edge */
  color: #ddd;
}
:-ms-input-placeholder{ /* Internet Explorer 10-11 */
  color: #ddd;
}
::placeholder{ /* Others */
  color: #ddd;
}

/*    Form - basic -
=====================================================*/
/* 共通 */
.g_step{
  width: 100%;
  margin: 0 0 20px;
}
.g_step_itm{
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  width: 25.5%;
  background-color: #373737;
  padding: 5px 0;
}
.g_step_itm.active{
  color: #000;
  background-color: #fff;
  
}
.g_step_itm::before{
  width: 5px;
  height: 5px;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transform-origin: center;
  top: 0;
  bottom: 0;
  right: -27%;
  margin: auto;
}

/* .g_step_itm.active::before{
  border-color: #0066B1;
} */
/* 入力 */
.g_must{
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  width: 44px;
  height: 19px;
  line-height: 19px;
  display: inline-block;
  margin-right: 10px;
  background-color: #0066B1;
}
.g_form_sec{
  margin-bottom: 20px;
}
.g_form_sec dt{
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.g_form_sec p{
  font-size: 1.2rem;
  margin-top: 5px;
}
.g_form_sec p + p{
  margin-top: 0;
}
.g_form_dd_txt{
  font-size: 1.2rem;
  display: block;
  margin-bottom: 5px;
}
input,
textarea,
select{
  font-size: 16px;
  width: 100%;
  padding: 16px 13px;
  border-radius: 5px;
  border: 1px solid #ddd;
}
input[type='radio'],
input[type='checkbox']{
  padding: 0;
}
input[type='text'],
textarea{
  color: #000;
  background-color: #fff;
}
select{
  color: #000;
  padding-right: 27px;
  line-height: 50px;
  height: 50px;
  background-color: #fff;
  padding-top: 0;
  padding-bottom: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
  color: #ACACAC;
}
input::-moz-placeholder,
textarea::-moz-placeholder{
  color: #ACACAC;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder{
  color: #ACACAC;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder{
  color: #ACACAC;
}
input::placeholder,
textarea::placeholder{
  color: #ACACAC;
}

.g_select::before{
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #333333 transparent transparent transparent;
  top: 23px;
  right: 10px;
}
.g_agree{
  font-size: 1.6rem;
  margin-top: 10px;
}
.g_agree span{
  font-size: inherit;
  line-height: 1.3;
  margin: 0 0 0 2px;
}
input[type='checkbox']{
  width: 16px;
  height: 16px;
  padding: 0;
  display: inline-block;
}
.g_form_txt a{
  color: #0066B1;
  text-decoration: underline;
}
.error{
  color: #FF0000;
  font-size: 1.2rem;
  margin-top: 5px;
  display: block;
}
.g_change_password{
  font-size: 1.6rem;
  line-height: 1;
}
.g_change_password input{
  margin: 0 8px 0 0;
}

/* 確認 */
.g_confirm_sec{
  padding: 18px 0;
}
.g_confirm_sec + .g_confirm_sec{
  border-top: 1px solid #000;
}
.g_confirm_sec dt{
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.g_confirm_sec dd{
  font-size: 1.6rem;
}
.g_confirm_btn input[type='submit'].g_btn{
  width: 72%;
}
.g_confirm_btn button[type='button'].g_btn__02{
  width: 25%;
}

/*    Button - basic -
=====================================================*/
.g_btn,
input[type='submit'].g_btn,
.g_btn__02,
input[type='submit'].g_btn__02,
button[type='button'].g_btn__02,
.g_btn__03{
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: 60px;
  display: block;
  padding: 0;
  border-radius: 5px;
  position: relative;
  box-shadow: 0px 3px 9px 0px rgba(0,0,0,0.16);
  border: none;
}
input[type='submit'].g_btn,
input[type='submit'].g_btn__02,
button[type='button'].g_btn__02{
  line-height: 60px;
}
.g_btn__03.getted,
input[type='submit'].g_btn:disabled{
  background-color: #838383;
}
.g_btn::before,
.g_btn::after{
  content: "";
  margin: auto;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  position: absolute;
  pointer-events: none;
  top: 0;
  bottom: 0;
}
.g_btn a,
.g_btn__02 a,
.g_btn__03 a{
  width: 100%;
  height: 100%;
  padding: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.g_btn,
input[type='submit'].g_btn,
button[type='button'].g_btn{
  color: #fff;
  background-color: #0066B1;
}
.g_btn__02,
input[type='submit'].g_btn__02,
button[type='button'].g_btn__02{
  color: #000;
  background-color: #E3E3E3;
}
.g_btn__03{
  color: #fff;
  background-color: #0066B1;
}

.g_btn__ic::before{
  width: 22px;
  height: 22px;
  background-image: url(../img/common/ic_list.svg);
  top: 0;
  bottom: 0;
  left: 20px;
}

.g_btn__map,
.g_btn__list{
  font-size: 1.3rem;
  font-family: inherit;
  width: 47.7%;
  height: auto;
}
.g_btn__map::before,
.g_btn__list::before{
  width: 26px;
  height: 26px;
  top: 20px;
  left: 0;
  right: 0;
  bottom: auto;
}
.g_btn__map::before{
  background-image: url(../img/common/ic_map.svg);
}
.g_btn__list::before{
  background-image: url(../img/common/ic_list.svg);
}
.g_btn__map a,
.g_btn__list a{
  padding: 56px 15px 18px;
}

@media (max-width: 576px){
  .g_btn__map::before,
  .g_btn__list::before{
    width: 6.933vw;
    height: 6.933vw;
    top: 5.333vw;
    bottom: auto;
  }

  .g_btn__map a,
  .g_btn__list a{
    padding: 14.933vw 4vw 4.8vw;
  }
}


/*    Decoration
=====================================================*/
/* 外部リンクアイコン */
.g_tab{
  position: relative;
  display: inline;
  width: 1em;
  height: 1em;
  padding-right: 1.5em;
}
.g_tab::before,
.g_tab::after{
  content: "";
  margin: auto;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  background-color: #fff;
  position: absolute;
  width: 0.7em;
  height: 0.7em;
  border: 1px solid #222;
  right: 0.25em;
  bottom: 0.375em;
  display: inline;
  pointer-events: none;
  -webkit-transition: border .3s;
  transition: border .3s;
  margin: 0;
}
.g_tab::before{
    right: 0;
    bottom: 0.125em;
}
.g_tab:hover::before,
.g_tab:hover::after{
    border-color: #8a8a8a;
}

.g_bold{
  font-weight: bold;
}
.g_em{
  color: #0066B1;
  font-weight: bold;
  font-size: 2.6rem;
  text-align: right;
  line-height: 1.2;
  display: inline-block;
}
.g_em_nml{
  color: #0066B1;
  font-weight: bold;
}
.g_bold{
  font-weight: bold;
}
.g_underline{
  text-decoration: underline;
}


/*    Information list
=====================================================*/
.g_info_itm{
  padding: 15px 0;
  border-top: 1px dotted #fdc702;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.g_info_itm:first-child{
  border-top: none;
}
.g_info_itm_cap{
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.g_info_itm_label{
  min-width: 63px;
  height: 22px;
  border: 1px solid #012a7c;
  text-align: center;
  font-size: 1.2rem;
  color: #012a7c;
  margin: 0 20px;
  margin-top: calc(((1.5rem * 1.75) - 22px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.g_info_itm_label__imp{
  background-color: #fdc702;
  color: #222;
  border-color: #fdc702;
}
.g_info_itm_txt{
  font-size: 1.5rem;
}
.g_info_itm_txt a{
  -webkit-transition: color .2s;
  transition: color .2s;
}
.g_info_itm_txt a:hover{
  color: #fdc702;
}

/*     Parts Navi
=====================================================*/
.g_navi{
  width: 100%;
  height: 53px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #212121;
  z-index: 100;
}
.g_navi_lst{
  width: 100%;
  max-width: 414px;
  height: 100%;
  margin: 0 auto;
}
.g_navi_itm{
  font-size: 0;
  width: 20%;
  height: 100%;
  position: relative;
}
.g_navi_itm a{
  width: 100%;
  height: 100%;
  display: block;
  padding: 10px 0;
}
.g_navi_itm::before{
  content: '';
  width: 56px;
  height: 38px;
  position: absolute;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  position: absolute;
  pointer-events: none;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.g_navi_itm__mypage::before{
  background-image: url(../img/common/ic_fixed_mypage_off.svg);
}
.g_navi_itm__map::before{
  background-image: url(../img/common/ic_fixed_map_off.svg);
}
.g_navi_itm__spot::before{
  background-image: url(../img/common/ic_fixed_spot_off.svg);
}
.g_navi_itm__rank::before{
  background-image: url(../img/common/ic_fixed_rank_off.svg);
}
.g_navi_itm__gift::before{
  background-image: url(../img/common/ic_fixed_gift_off.svg);
}

/* 滞在時 */
.g_navi_itm__mypage.active::before{
  background-image: url(../img/common/ic_fixed_mypage.svg);
}
.g_navi_itm__map.active::before{
  background-image: url(../img/common/ic_fixed_map.svg);
}
.g_navi_itm__spot.active::before{
  background-image: url(../img/common/ic_fixed_spot.svg);
}
.g_navi_itm__rank.active::before{
  background-image: url(../img/common/ic_fixed_rank.svg);
}
.g_navi_itm__gift.active::before{
  background-image: url(../img/common/ic_fixed_gift.svg);
}

@media (max-width: 576px){
  .g_navi{
    height: 14.133vw;
  }
  .g_navi_itm a{
    padding: 2.667vw 0;
  }
  .g_navi_itm::before{
    width: 14.933vw;
    height: 10.133vw;
  }
}




/*     List
=====================================================*/
.g_lst_sec + .g_lst_sec{
  margin-top: 30px;
}
.g_lst_ttl{
  padding: 0 5%;
  margin-bottom: 15px;
}
.g_lst{
  border-top: 1px solid #000;
}
.g_lst_itm{
  border-bottom: 1px solid #000;
}
.g_lst_itm a{
  display: block;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-left: 5%;
  padding-right: calc(5% + 1.5em);
}
.g_lst_itm::before{
  font-size: inherit;
  width: 0.4em;
  height: 0.4em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transform-origin: center;
  top: 0;
  bottom: 0;
  right: 5%;
  margin: auto;
}
.g_lst_itm.getted a{
  background-color: #000;
  padding-right: calc(5% + 5.5em);
}
.g_lst_itm.getted::after{
  content: '取得済み';
  color: #0066B1;
  font-size: 1rem;
  line-height: 1.4;
  white-space: pre;
  width: 4em;
  height: 1.5em;
  top: 0;
  bottom: 0;
  right: calc(5% + 1.8em);
  margin: auto;
}
.g_lst_txt{
  margin-top: 5px;
}

.g_lst_ic{
  color: #0066B1;
  font-size: 1rem;
  font-weight: bold;
  padding-left: 23px;
  margin-bottom: 10px;
}
.g_lst_ic::before{
  width: 17px;
  height: 21px;
  background-image: url(../img/spot_list_details/ic_special.svg);
  top: -1px;
  left: 0;
}
.g_lst_ic.getted a{
  color: #000;
  background-color: #F8F8F8;
  padding-right: calc(5% + 5.5em);
}
.g_lst_ic.getted::after{
  content: '取得済み';
  color: #0066B1;
  font-size: 1rem;
  line-height: 1.4;
  white-space: pre;
  width: 4em;
  height: 1.5em;
  top: 0;
  bottom: 0;
  right: calc(5% + 1.8em);
  margin: auto;
}

/*   PullDown
=====================================================*/
.g_pullDown{
  position: relative;
  cursor: pointer;
}
.g_pullDown::before,
.g_pullDown::after{
  content: "";
  display: block;
  background-color: #fff;
  margin: auto;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  position: absolute;
  pointer-events: none;
  top: 0;
  bottom: 0;
}
.g_pullDown::before{
  width: 11px;
  height: 1px;
  right: 3%;
}
.g_pullDown::after{
  width: 1px;
  height: 11px;
  right: calc(3% + 5px);
}
.js_open.g_pullDown::before{
  display: none;
}
.js_open.g_pullDown::after{
  transition: all .3s linear;
  -webkit-transform: rotate(90deg) translateY(0px);
  transform: rotate(90deg) translateY(0px);
}


