@charset "UTF-8";

/**
* 11_ツアー詳細
*
* 2026.03.31 燃油別パターン追加
*
*/

.contents .tour_head .head_tour_price .surcharge_att {
  display: flex;
  align-items: center;
}

.contents .tour_head .head_tour_price .att {
  color: var(--color-text);
  margin: 0 4px 0 0;
  line-height: 18px;
}

.contents .surcharge_swich {
  display: none;
  position: fixed;
}

.contents .surcharge_swich.is_open::after {
  content: "";
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: var(--vw);
  z-index: 1;
}

.contents .surcharge_swich_btn {
  background: #fff;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  font-size: 1.1rem;
  height: 18px;
  justify-content: center;
  line-height: 1.2;
  padding: 0 7px 0 0;
  position: relative;
  width: 48px;
}

.contents .surcharge_swich_btn::after {
  content: "";
  background: url(../img/arr_1_green.svg) center center/100% auto no-repeat;
  width: 7px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 4px;
}

.contents .surcharge_swich_box {
  background: #fff;
  border: 1px solid var(--color-border-form);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 15px 28px;
  position: absolute;
  width: 430px;
  z-index: 2;
  right: 0;
}

.contents .surcharge_swich_box {
  top: calc(100% + 6px);
}

.contents .surcharge_swich_box p {
  color: var(--color-text-black);
  font-size: 1.3rem;
  line-height: 1.75;
}

.contents .surcharge_swich_close {
  aspect-ratio: 1/1;
  background: url(../img/days_pop_close.svg) center center/100% auto no-repeat;
  cursor: pointer;
  font-size: 0;
  overflow: hidden;
  position: absolute;
  right: -8px;
  top: -8px;
  width: 32px;
  z-index: 4;
}

@media screen and (min-width: 601px), print {
  .contents .surcharge_swich_btn.vsp600 {
    display: none;
  }
}

@media screen and (min-width: 961px), print {
  .contents .tour_head .head_tour_price .surcharge_att {
    justify-content: space-between;
    margin-top: 6px;
  }

  .contents .surcharge_swich {
    z-index: 2;
  }
}

@media screen and (max-width: 960px) {
  .contents .surcharge_swich {
    z-index: 200;
  }
}

@media screen and (max-width: 600px) {
  .contents .tour_head .head_tour_price .surcharge_att {
    margin-top: 1.33vw;
    justify-content: center;
  }

  .contents .tour_head .head_tour_price .att {
    line-height: 16px;
    font-size: 3.07vw;
    margin: 0 1.33vw 0 0;
  }

  .contents .surcharge_swich_btn {
    width: 20.53vw;
    height: 18px;
    padding-bottom: 1px;
    font-size: 2.4vw;
    padding-right: 2vw;
    border-radius: 1.07vw;
    letter-spacing: -0.04em;
  }

  .contents .surcharge_swich_btn::after {
    right: 1.07vw;
  }

  .contents .surcharge_swich_btn.vpc600 {
    display: none;
  }

  .contents .surcharge_swich_box {
    border-radius: 1.28vw;
    padding: 4vw 6.67vw;
    right: 0;
    width: 84.67vw;
    margin: 0 3.67vw;
  }

  .contents .surcharge_swich_box {
    top: calc(100% + 0.8vw);
  }

  .contents .surcharge_swich_close {
    right: -1.6vw;
    top: -1.6vw;
    width: 7.47vw;
  }
}

@media screen and (max-width: 1210px) and (min-width: 961px) {
  .contents .tour_head .head_tour_price .att {
    display: inline-block;
  }
}