@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* CSS Document */
:root {
  --content-color-navy: #324565;
  --content-color-lightblue: #5398C1;
  --content-color-blue: #2B86BD;
  --content-color-purple1: #4c4c9d;
  --content-color-purple2: #9999cc;
  --content-color-purple3: #c8c8e4;
  --content-color-gray: #434343;
  --content-color-base: #2C2A29;
  --bg-img-setting: no-repeat center center / cover;
  --bg-mv-setting: no-repeat center top / 1920px;
  --bg-width-pc: max(100%, 1920px);
  --content-width: 1104px;
  --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;
  --content-hover-speed: 0.3s;
  --content-shadow: 0 0 18px 2px rgba(0 0 0 / 20%);
  --content-arrow-down_w: url(../img/nav_arrow_w.svg);
  --content-arrow-down: url(../img/nav_arrow.svg);
  --content-border_s: 2px solid;
  --content-border_m: 3px solid;
  --content-border_l: 4px solid;
}

/* ============================================
   表示切り替え
============================================ */
.pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block !important;
  }

}

@media (max-width: 768px) {}


/* ============================================
   基本設定
============================================ */
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

.main {
  background: #F2F7FC;
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  font-weight: 500;
  color: var(--content-color-base);
  position: relative;
  line-height: 1.5;
}

.main * {
  box-sizing: border-box;
}

.inner {
  width: 100%;
  max-width: var(--content-width);
  margin: auto;
}

a {
  transition: var(--content-hover-speed);
}

.note__txt {
  display: block;
  font-size: 12px;
  padding-left: 1.0em;
  text-indent: -1.0em;
}

sup {
  font-size: 10px;
}

img {
  max-width: 100%;
}


/***** タイトル・ナビ *****/
.mv__wrapper {
  position: relative;
  width: 100%;
  margin-inline: auto;
  margin-bottom: calc(84px + 24px);
}

.main-titlebox {
  position: absolute;
  text-align: center;
  max-width: var(--content-width);
  width: 100%;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
}

.mv_slider {
  min-height: 530px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.mv_slider:after {
  content: "";
  background: url(../img/mv_wave.svg) repeat-x;
  width: 100%;
  height: 117px;
  position: absolute;
  left: 0;
  bottom: -80px;
}

.slick-slide {
  position: relative;
}

.slick-img img {
  width: 100%;
  min-height: 530px;
  object-fit: cover;
}

.add-animation img {
  animation: zoomUp 10s linear 0s normal both;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}


@media (max-width: 1104px) {
  .mv__wrapper {
    margin-bottom: 56px;
  }

  .mv_slider {
    min-height: 340px;
    height: 55vh;
  }

  .slick-img img {
    min-height: 340px;
    height: 55vh;
  }

  .mv_slider::after {
    display: none;
  }

  .main-titlebox {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 340px;
    height: 55vh;
  }

  .main-titlebox>div {
    width: 100%;
  }

  .main-title img {
    width: 100%;
  }

}

.nav__wrapper {
  border-radius: 10px;
  background: var(--content-color-lightblue);
  text-align: center;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 10;
  padding: 24px;
  max-width: 1074px;
  margin: auto;
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
}

.nav__wrapper::before {
  content: url(../img/illust_snow_crystal.svg);
  width: 30px;
  height: 38px;
  position: absolute;
  left: 8px;
  top: -15px;
  z-index: 1;
}

.nav__wrapper::after {
  content: url(../img/illust_snow_crystal.svg);
  width: 30px;
  height: 38px;
  position: absolute;
  right: 8px;
  bottom: -15px;
  z-index: 1;
}


.menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: -1;
}

.menu-list>li>a {
  padding: 0 16px;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  display: block;
  width: 100%;
  text-decoration: none;
}

.menu-list>li {
  position: relative;
}

.menu-list>li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  margin: auto;
  display: block;
  height: 2.8em;
  width: 2px;
  background: #fff;
}

.menu-list>li>a>span {
  display: block;
}

.menu-list>li>a:hover {}

.dep-select-nav {
  padding: 0 16px;
}

.display_selected {
  overflow: hidden;
  border-radius: 5em;
  background: var(--content-color-navy);
  padding: 4px 30px 4px 14px;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative;
  cursor: pointer;
  z-index: 20
}

.display_selected::after {
  content: "";
  background: var(--content-arrow-down_w) var(--bg-img-setting);
  width: 13px;
  height: 8px;
  position: absolute;
  right: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.dep-select-zone {
  display: none;
  overflow: hidden;
  min-width: 12em;
  position: absolute;
  left: 0;
  right: 0;
  top: 1em;
  margin: auto;
  z-index: 30;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 1px 4px 1px var(--Unit-Color-Alpha-black-1, rgba(44, 42, 41, 0.15));
  padding: 8px 0;
}

.dep-select li {
  text-align: left;
  cursor: default;
  padding: 8px 24px;
  font-size: 14px;
  line-height: 1.5
}

.dep-select li:hover {
  background: #C0DBFF;
}

.dep-select li.selected {
  font-weight: 700;
}

.close-button {
  display: none
}

@media (max-width: 1104px) {
  .nav__wrapper {
    width: 100%;
    border-radius: 0;
    padding: 0;
    position: relative;
    bottom: 0;
    /* overflow-x: hidden; */
  }

  .nav__wrapper::before {
    left: -8px;
    top: -23px;
  }

  .nav__wrapper::after {
    right: -8px;
    bottom: -23px;
  }

  .menu-list {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    justify-content: flex-start;
  }

  .menu-list>li {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .menu-list>li:not(:last-child)::after {
    display: none;
  }

  .menu-list>li:not(:nth-child(3n)) {
    border-right: 1px solid #fff;
  }

  .menu-list>li:nth-child(-n+6) {
    border-bottom: 1px solid #fff;
  }

  .menu-list>li>a {
    font-size: 15px;
    padding: 18px 8px;
  }

  .menu-list>li:last-child {
    order: -1;
    grid-column: span 3;
    width: 100%;
    padding: 0;
  }

  .menu-list>li>a>span {
    display: inline;
  }

  .dep-select-nav {
    padding: 0;
    width: 100%;
  }

  .display_selected {
    border-radius: 0;
    padding: 16px 30px 16px 16px;
  }

  .display_selected::after {
    content: "";
    position: relative;
    display: inline-block;
    right: -4px;
  }
}

/***** メインコンテンツ *****/

.main {
  padding-bottom: 284px;
}

.main::before {
  content: "";
  background: url(../img/illust_tree.svg) no-repeat;
  background-size: cover;
  width: 385px;
  height: 170px;
  flex-shrink: 0;
  aspect-ratio: 77/34;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.main::after {
  content: "";
  background: url(../img/illust_snowman.svg) no-repeat;
  background-size: cover;
  width: 82px;
  height: 160px;
  flex-shrink: 0;
  position: absolute;
  right: 50px;
  bottom: -10px;
}


@media (max-width: 768px) {

  .main {
    padding-bottom: 138px;
  }

  .main::before {
    content: "";
    width: 180px;
    height: 79px;
    flex-shrink: 0;
    aspect-ratio: 180/79;
  }

  .main::after {
    content: "";
    width: 41px;
    height: 81px;
    flex-shrink: 0;
    right: 20px;
  }
}

.content__wrapper:not(:last-child) {
  position: relative;
  padding-bottom: 93px;
  z-index: 1;
}

.content__wrapper .inner {
  padding: 48px 40px;
  border-radius: 30px;
  background: #FFF;
  box-shadow: 2px 4px 14px 0 rgba(0, 0, 0, 0.10);
}

.content__wrapper::before {
  content: "";
  background: url(../img/illust_snow.svg) no-repeat;
  background-size: cover;
  width: 457px;
  height: 413px;
  aspect-ratio: 457/413;
  z-index: -1;
  position: absolute;
  top: -80px;
}

.main__content {
  position: relative;
}

.main__content .content__wrapper::before {
  left: 0;
}

.area__container .content__wrapper:nth-child(odd):before {
  right: 0;
}

.area__container .content__wrapper:nth-child(even)::before {
  left: 0;
}

.head-title {
  margin: 0 auto 24px;
  font-weight: bold;
  position: relative;
  line-height: 1.5
}

.head-entitle {
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.head-entitle::before {
  content: "";
  width: 24px;
  height: 4px;
  border-radius: 10px;
  background: var(--content-color-lightblue);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.head__content {
  width: 100%;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 40px;
  margin-bottom: 48px;
}

.content__inner {
  margin: auto;
}

.content__inner.left {}

.content__inner.right {
  flex-direction: row-reverse;
}

.head__content .area_img {
  width: 100%;
}

.area_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .content__wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .content__wrapper:not(:last-child) {
    padding-bottom: 50px;
  }

  .content__wrapper .inner {
    padding: 24px 20px;
    box-shadow: none;
  }


  .head__content {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
    margin-bottom: 32px;
  }

  .head__content .area_img picture {
    width: 100%;
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    display: inline-block;
  }

  .head-entitle {
    padding: 4px 0;
    padding-left: 24px;
    margin-bottom: 6px;
    height: 22px;
  }

  .head-entitle img {
    display: block;
    height: 100%;
  }

  .head-entitle::before {
    content: "";
    width: 16px;
    height: 2px;
  }
}


.catch_txt {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.info__txt {
  font-size: 16px;
  margin-bottom: 34px;
  line-height: 1.5;
}

.area_copy {
  text-align: right;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 0;
}

.period__list>li {
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.period__list>li+li {
  margin-top: 16px;
}

.period__title {
  background: var(--content-color-lightblue);
  display: inline-block;
  width: 112px;
  padding: 3px 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #FFF;
}

.period__data {
  width: calc(100% - 112px - 4px);
  padding: 2px 0;
  font-size: 16px;
}

.period__list>li small {
  font-size: 12px
}

@media (max-width: 768px) {
  .head-title {
    margin: 0 auto 16px;
  }

  .catch_txt {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .info__txt {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .period__list>li {
    flex-wrap: wrap;
    gap: 6px;
  }

  .period__title {
    width: auto;
  }

  .period__data {
    width: 100%;
    font-size: 14px;
  }
}

/*** サブ ***/
.data__content>section {
  padding-bottom: 48px;
}

.sub-title {
  padding: 0 24px;
  position: relative;
  margin-bottom: 24px;
  color: var(--content-color-navy);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  background: url(../img/line-dot.png) repeat-x center;
}

.line-dot {
  padding: 0 24px;
  position: relative;
  display: inline-block;
  background: #FFF;
}

@media (max-width: 768px) {
  .data__content>section {
    padding-bottom: 32px;
  }

  .sub-title {
    padding: 0 18px;
    font-size: 22px;
  }

}

/*** ゲレンデ情報 ***/
.course_data {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.gerende__box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.gerende__data {
  flex: 1;
  width: calc(100% - 360px);
}

.data__name {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}


@media (max-width: 768px) {}

.map__link {
  width: 360px
}

.map_click {
  color: var(--content-color-blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  text-align: right;
  width: 100%;
}

.map_click::before {
  content: var(--content-arrow-down);
  display: inline-block;
  margin-right: 8px;
}

.map__link a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.data__item+.data__item {
  margin-top: 16px;

}

.lb-data .lb-number {
  display: none !important;
}

@media (max-width: 1104px) {

  .gerende__data {
    flex: 1;
    width: calc(100% - 250px);
  }

  .map__link {
    width: 250px
  }
}


@media (max-width: 600px) {

  .gerende__box {
    gap: 32px;
  }

  .gerende__data {
    width: 100%;
  }

  .course_data,
  .data__name {
    font-size: 16px;
  }

  .map__link {
    width: 100%
  }

  .map_click {
    font-size: 14px;
  }
}

/*  */
/* 画像を開いたとき、中央に配置するための上書き */
#lightbox {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 9999 !important;
  margin: 0 !important;
}

/* オーバーレイを全画面に広げる */
#lightboxOverlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 9998 !important;
}

/* 画像のサイズが画面に収まるように調整 */
#lightbox .lb-image {
  max-width: 90vw !important;
  max-height: 90vh !important;
  width: auto !important;
  height: auto !important;
}


/* レート */
.rate_table {
  display: flex;
  justify-content: space-between;
}

.rate_table>li {
  min-height: 70px;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  line-height: 1.5;
  display: flex;
  padding: 16px;
  align-items: center;
  justify-content: center
}

.rate_table.time>li:first-child {
  background: var(--content-color-purple2);
  width: 68%;
  flex-grow: 1
}

.rate_table.time>li:last-child {
  background: var(--content-color-purple1);
  width: 40%
}

.rate_table.slope>li:first-child {
  background: var(--content-color-purple3);
  width: 30%
}

.rate_table.slope>li:nth-child(2) {
  background: var(--content-color-purple2);
  width: 40%
}

.rate_table.slope>li:last-child {
  background: var(--content-color-purple1);
  width: 30%
}

.rate_table.ratio>li:first-child {
  background: var(--content-color-purple2);
  width: 65%;
  flex-grow: 1
}

.rate_table.ratio>li:last-child {
  background: var(--content-color-purple1);
  width: 35%
}

.rate_table>li .table__sub {
  display: block;
}

.rate_table>li>span>small {
  font-size: 14px;
}

.notice__list {
  margin-top: 18px;
}

.notice__list>li {
  font-size: 12px;
  line-height: 1.5;
  padding-left: 1.0em;
  text-indent: -1.0em;
}

.notice__list>li:not(:first-child) {
  margin-top: 4px;
}


@media (max-width: 768px) {
  .rate_table>li {
    padding: 8px;
    min-height: 36px;
    font-size: 12px;
    line-height: 150%;
  }
}

/* おすすめスポット */
.recommend_list {
  display: flex;
  gap: 12px;
  padding-top: 20px;
}

.recommend_list>li {
  width: calc((100% - (12px * 3)) / 4);
  background: #FFF;
}

.spot_img {
  width: 100%;
  height: 145px;
}

.spot_img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.spot__item {
  padding: 15px 0;
}

.spot_name {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 8px;
}

.spot_txt {
  line-height: 1.5;
  margin-bottom: 16px;
}

.spot_data>li {
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.spot_data>li+li {
  margin-top: 16px
}

.spot_data>li .midashi {
  width: 4em;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 3px 0.5em;
  background: var(--content-color-lightblue);
  color: #fff;
  display: inline-block;
}

.spot_data>li>div {
  width: calc(100% - 4em - 8px);
  padding: 3px 0;
}

@media (max-width: 768px) {
  .sp_scroll {
    width: 100%;
    overflow-x: scroll;
  }

  .recommend_list {
    width: calc(80% * 4);
    padding-top: 0;
  }

  .recommend_list>li {
    width: 80%;
  }

  .spot_data>li {
    font-size: 14px;
    display: block;
    gap: 6px;
  }

  .spot_data>li>div {
    width: 100%;
  }
}

/* HISなら！うれしいポイント */
.goodpoint_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 20px;
}

.goodpoint_list>div {
  width: calc((100% / 2) - 12px);
  background: #FFF;
}

.goodpoint_img picture {
  width: 100%;
  height: 212px;
  margin-bottom: 14px;
}

.goodpoint_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.goodpoint_name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.goodpoint_txt {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 4px;
}

.goodpoint_notes {
  font-size: 14px;
  line-height: 150%;
}

.goodpoint_notes li {
  text-indent: -1em;
  padding-left: 1em;
}

.goodpoint_notes li+li {
  margin-top: 6px;
}


@media (max-width: 768px) {
  .goodpoint_list {
    padding-top: 0px;
  }

  .goodpoint_list>div {
    width: 100%;
  }

  .goodpoint_img picture {
    width: 100%;
    height: 147px;
    margin-bottom: 6px;
  }

  .goodpoint_name {
    margin-bottom: 6px;
  }
}

/**トマムPF限定特典**/
#hoshino .goodpoint_list>div:first-child{
  background: #fae8e8;
}
#hoshino .goodpoint_list>div:first-child .goodpoint__item{
  padding: 8px;
}
#hoshino .goodpoint_list>div:first-child .goodpoint__item .goodpoint_name{
  color: #da6776
}
#hoshino .goodpoint_list>div:first-child .goodpoint_img{
  position: relative
}
#hoshino .goodpoint_list>div:first-child .goodpoint_img::after{
  content: "スキーパンフレット限定特典";
  background: #da6776;
  padding: 4px;
  font-size: min(18px, (14vw / 3.75));
  font-weight: bold;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}



/* ============================================
   pagetop
============================================ */

.page-top-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  outline: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: transparent;
  outline: none;
  border: none;
  width: auto;
  height: auto;
}

.page-top__img--pc {
  display: block;
}

.page-top__img--sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .page-top__img--pc {
    display: none;
  }

  .page-top__img--sp {
    display: block;
    width: 54px;
    height: 49px;
    zoom: 0;
  }
}

@media screen and (min-width: 751px) {
  .page-top-button {
    width: auto;
    height: auto;
  }
}

.area00 {
  display: none
}
.more-link{
  width: 600px;
  margin: 24px auto 0;
}
.more-link>a{
  display: block;
  background: var(--content-color-blue);
  border-radius: 100px;
  padding: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  text-decoration: none
}
.more-link>a:hover{
  opacity: .8
}
@media screen and (max-width: 750px) {
  .more-link{
    width: 100%;
  }
}