@charset "UTF-8";
/*=========================================================
  reset
=========================================================*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, p, blockquote, th, td, figure, figcaption {
  margin: 0;
  padding: 0
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  font-size: clamp(6px, calc(10 / 1400 * 100vw), 10px);
  height: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
body {
  font-style: normal;
  line-height: 1.666;
  font-weight: 500;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
svg {
  width: 100%;
}
table {
  border-collapse: collapse;
  border-spacing: 0
}
input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  text-transform: none;
  background: none;
  border: none;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  touch-action: manipulation;
  padding: 0;
}
select {
  appearance: none;
}
*:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #F7F4F1 inset;
  -webkit-text-fill-color: inherit;
}
iframe, embed, object {
  max-width: 100%;
  border: 0;
}
ol, ul {
  list-style: none
}
caption, th {
  text-align: left
}
sup {
  vertical-align: text-top
}
sub {
  vertical-align: text-bottom
}
fieldset {
  border: 0;
}
legend {
  display: block;
}
blockquote, q {
  quotes: none
}
/*=========================================================
  common
=========================================================*/
body {
  font-size: 1.5rem;
  color: #333333;
  background-color: #FFFFFF;
  font-family: 'Noto Sans JP', sans-serif;
}
.inner {
  width: 110rem;
  max-width: 90%;
  margin: 0 auto;
}
.number {
  font-family: 'Noto Sans', sans-serif;
}
.ttl {
  line-height: 1;
  margin-bottom: 1.8rem;
  display: inline-flex;
  flex-direction: column;
  gap: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.ttl__en {
  font-family: Manrope;
  font-size: 4rem;
  letter-spacing: 0.15em;
}
.ttl__ja {
  font-size: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  border-radius: 1rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.btn__icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity .3s ease;
}
.icon--normal {
  opacity: 1;
}
.icon--hover {
  opacity: 0;
}
.btn:hover .icon--normal {
  opacity: 0;
}
.btn:hover .icon--hover {
  opacity: 1;
}
.fade-in-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-element.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.ttl__en {
  font-family: Manrope;
  font-size: 4rem;
}
.ttl__ja {
  font-size: 2rem;
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  html {
    font-size: clamp(8px, calc(10 / 390 * 100vw), 10px);
  }
  .inner {
    width: 34rem;
  }
  .ttl__en {
    font-family: Manrope;
    font-size: 3rem;
  }
  .ttl__ja {
    font-size: 1.8rem;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/*=========================================================
  header
=========================================================*/
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #FFF;
}
.header__inner {
  margin: 0 auto;
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo a {
  display: block;
  width: 22.1rem;
  line-height: 0;
}
.header__logo svg {
  width: 100%;
  height: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.header__menu {
  display: flex;
  gap: 3rem;
  line-height: 1;
}
.header__menu-item {
  text-align: center;
  padding: 0 1rem;
}
.header__menu-link {
  font-size: 1.4rem;
  font-weight: 500;
  transition: opacity 0.3s;
  color: #0077D0;
  font-weight: 700;
  letter-spacing: 0;
  gap: 0.6rem;
  margin-bottom: 0;
}
.header__menu-link:hover {
  opacity: 0.6;
}
.header__menu-item--disabled .header__menu-link {
  color: #D6E2E8;
  pointer-events: none;
  cursor: default;
}
.header__menu-item--disabled .header__menu-link:hover {
  opacity: 1;
}
.header .ttl__ja {
  font-size: 1.5rem;
}
.header .ttl__en {
  font-size: 1rem;
}
.header__sns {
  display: flex;
  gap: 2rem;
}
.header__sns a {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.header__sns a:hover {
  opacity: 0.6;
}
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 0.965rem;
  width: 3.424rem;
  height: 2.635rem;
  justify-content: center;
  align-items: center;
}
.header__hamburger:focus-visible {
  outline: none;
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 0.235rem;
  background-color: #333;
  transition: all 0.3s;
  transform-origin: center;
}
.header__hamburger.is-active {
  gap: 0;
}
.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(0.2rem) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-0.2rem) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .header {
    height: 7rem;
  }
  .header__nav {
    display: none;
  }
  .header__hamburger {
    display: flex;
  }
  .header__inner {
    padding: 2rem;
  }
  .header__logo a {
    width: 18.411rem;
  }
  .header.menu-open {
    position: fixed;
  }
}
/*=========================================================
  sp-menu
=========================================================*/
.sp-menu {
  position: fixed;
  top: 7rem;
  right: -100%;
  width: 100%;
  height: calc(100vh - 7rem);
  z-index: 999;
  transition: right 0.3s;
  overflow-y: auto;
  padding-top: 0.1rem;
  background: #FFF;
}
.sp-menu.is-open {
  right: 0;
}
.sp-menu__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
.sp-menu .header__menu-item {
  padding: 2.5rem 2rem;
  text-align: left;
  border-bottom: 1px solid #D6E2E8;
}
.sp-menu .header__menu-item:first-child {
  border-top: 1px solid #D6E2E8;
}
.sp-menu__list li a {
  font-weight: 700;
  display: block;
}
.sp-menu .ttl__en {
  font-size: 1.3rem;
  padding-left: 1rem;
}
.sp-menu__sns {
  display: flex;
  gap: 4rem;
  justify-content: center;
}
.sp-menu__sns a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*=========================================================
  kv
=========================================================*/
.kv {
  position: relative;
  padding: 0 5rem 6.7rem;
}
.kv__slider-wrapper {
  border-radius: 0 0 10rem 10rem;
  overflow: hidden;
}
.kv__slides {
  border-radius: 0 0 10rem 10rem;
  overflow: hidden;
}
.kv__slide {
  border-radius: 0 0 10rem 10rem;
  overflow: hidden;
}
.kv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kv__banner {
  position: absolute;
  top: 5rem;
  left: 11rem;
  width: 27.1rem;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .kv {
    padding: 0;
  }
  .kv__slider-wrapper {
    border-radius: 0;
    overflow: hidden;
  }
  .kv__banner {
    position: static;
    width: 34rem;
    margin: 3rem auto 0;
  }
}
/*=========================================================
  info
=========================================================*/
.info__grid {
  display: grid;
  grid-template-columns: repeat(6, auto);
  padding: 2rem 0;
}
.info__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 3rem;
}
.info__item:first-child {
  padding-left: 0;
}
.info__item:nth-child(6) {
  padding-right: 0;
}
.info__icon {
  width: 3rem;
  height: 3rem;
}
.info__icon--w25 {
  width: 2.5rem;
  height: 2.5rem;
}
.info__icon--w275 {
  width: 2.75rem;
  height: 2.75rem;
}
.info__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
  font-weight: 700;
}
.info__item:not(:first-child) {
  border-left: 1px solid #D6E2E8;
}
.info__label {
  color: #0077D0;
  line-height: 1.6;
}
.info__label .date-main {
  font-size: 2rem;
}
.info__value {
  font-size: 2rem;
  line-height: 1.2;
  display: flex;
  align-items: baseline;
}
.info__value span {
  font-size: 1.5rem;
  padding: 0 0.2rem;
}
.x__button {
  grid-column: 5 / 7;
  grid-row: 2;
  margin-top: 2rem;
  justify-self: flex-end;
}
.x__button .btn {
  width: 26.7rem;
  padding: 1rem 2rem;
  gap: 3.2rem;
  color: #fff;
  background-color: #0077D0;
  justify-content: flex-end;
  border: 1px solid transparent;
}
.x__button .btn:active {
  transform: scale(0.98);
  opacity: 0.9;
}
@media (hover: hover) and (pointer: fine) {
  .x__button .btn:hover {
    color: #0077D0;
    background-color: #fff;
    border: 1px solid #0077D0;
  }
  .x__button .btn:hover .icon--hover {
    --icon-bg: #0077D0;
    --icon-fg: #fff;
  }
}
.x__button .btn__icons {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}
.x__button .icon--normal {
  --icon-bg: #fff;
  --icon-fg: #0077D0;
}
.x__button .icon--hover {
  --icon-bg: #fff;
  --icon-fg: #0077D0;
}
@media screen and (max-width: 768px) {
  .info__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 2rem 0;
    padding: 5rem 0;
  }
  .info__item {
    padding: 0;
  }
  .info__item:first-child {
    grid-column: 1 / -1;
  }
  .info__item:nth-child(even) {
    border-left: none;
  }
  .x__button {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
    justify-self: normal;
  }
  .x__button .btn {
    width: 100%;
    font-size: 1.3rem;
    padding: 1.15rem 1.5rem;
    gap: 1rem;
  }
}
/*=========================================================
  gelande
=========================================================*/
.gelande {
  position: relative;
  padding: 8rem 0 12rem;
  background:
    linear-gradient(to bottom,
      #FFFFFF 0%,
      #F0F4F6 55%,
      #FDFDFD 100%);
  z-index: 0;
}
.gelande::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5.3rem;
  width: 100%;
  aspect-ratio: 1400 / 550;
  background: url('/assets/images/bg-forest.png') no-repeat center bottom;
  background-size: cover;
  z-index: -1;
}
.gelande__intro {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  position: relative;
  margin-bottom: -3rem;
}
.gelande__text {
  width: 46.4rem;
  line-height: 2;
  padding-top: 9.8rem;
}
.gelande .ttl__en {
  color: #0077d0;
}
.gelande__illust {
  width: 38.7rem;
  margin-top: 2.55rem;
}
.gelande__img {
  width: 57.6rem;
}
.gelande__img img {
  border-radius: 15rem 15rem 15rem 0;
}
@media screen and (max-width: 768px) {
  .gelande {
    padding: 0 0 25rem;
  }
  .gelande::after {
    bottom: -2.9rem;
    aspect-ratio: 780 / 558;
    background: url('/assets/images/bg-forest_sp.png') no-repeat center bottom;
    background-size: cover;
  }
  .gelande__img {
    order: -1;
    width: 100%;
  }
  .gelande__img img {
    border-radius: 10rem 10rem 10rem 0;
  }
  .gelande__intro {
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 0;
  }
  .gelande__text {
    padding-top: 0;
    width: 100%;
  }
  .gelande__illust {
    width: 100%;
    margin-bottom: 4rem;
    margin-top: 1.25rem;
  }
}
/*=========================================================
  gelande-map
=========================================================*/
.gelande-map {
  margin-bottom: 5rem;
  color: #0077D0;
}
.gelande-map__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  width: 40rem;
  border: 1px solid #0077D0;
  border-radius: 3rem 3rem 3rem 0;
  padding: 1rem 0;
  margin: 0 0 2rem auto;
}
.gelande-map__image {
  width: 100%;
  overflow: hidden;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .gelande-map {
    margin-bottom: 3rem;
  }
  .gelande-map__title {
    width: 100%;
    font-size: 1.8rem;
  }
  .gelande-map__note {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 2.5;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .gelande-map__note svg {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
  }
}
/*=========================================================
  gelande-cards
=========================================================*/
.gelande-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.1rem;
}
.gelande-card {
  background-color: #fff;
  filter: drop-shadow(0 0 1.5rem rgba(0, 0, 0, 0.05));
  border-radius: 2rem;
  padding: 5rem 4rem 4.6rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.gelande-card__level {
  display: flex;
  gap: 1rem;
}
.gelande-level {
  width: 5rem;
  margin-bottom: 1rem;
  text-align: center;
  border-radius: 0.5rem;
  color: #D6E2E8;
  line-height: 1.8;
  background-color: transparent;
}
.gelande-level.is-active {
  color: #fff;
}
.gelande-level.is-active.gelande-level--beginner {
  background-color: #40C08D;
}
.gelande-level.is-active.gelande-level--intermediate {
  background-color: #F46C6C;
}
.gelande-level.is-active.gelande-level--advanced {
  background-color: #0077D0;
}
.gelande-card__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.gelande-card__slider {
  position: relative;
  padding-bottom: 4.6rem;
}
.gelande-card__slides {
  border-radius: 5rem 5rem 5rem 0;
  overflow: hidden;
}
.gelande-card__slide img {
  width: 100%;
  height: auto;
  display: block;
}
.gelande-card__slider .splide__arrow {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background-color: #0077D0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.gelande-card__slider .splide__arrow:hover {
  opacity: 0.6;
}
.gelande-card__slider .splide__arrow--prev {
  left: -2rem;
  right: auto;
}
.gelande-card__slider .splide__arrow--next {
  right: -2rem;
  left: auto;
}
.gelande-card__slider .splide__arrow svg {
  display: none;
}
.gelande-card__slider .splide__arrow::before {
  content: '';
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF
}
.gelande-card__slider .splide__arrow--prev::before {
  transform: rotate(-135deg);
  margin-left: 0.3rem;
}
.gelande-card__slider .splide__arrow--next::before {
  transform: rotate(45deg);
  margin-right: 0.3rem;
}
.gelande-card__slider .splide__pagination {
  position: absolute;
  bottom: 1.7rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  pointer-events: auto;
}
.gelande-card__slider .splide__pagination__page {
  width: 0.8rem;
  height: 0.8rem;
  background-color: #D6E2E8;
  border: none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s;
  opacity: 1;
}
.gelande-card__slider .splide__pagination__page.is-active {
  background-color: #0077D0;
}
.gelande-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.gelande-card__text {
  margin-bottom: 2.5rem;
}
.gelande-card__info {
  display: grid;
  grid-template-columns: 10.1rem auto;
  row-gap: 10px;
  margin-top: auto;
}
.gelande-card__info dt {
  padding: 1.05rem 1.9rem 1.05rem 1.9rem;
  border: 1px solid #D6E2E8;
  border-radius: 10px 0 0 10px;
  border-right: none;
  position: relative;
}
.gelande-card__info dt::after {
  content: '';
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: #D6E2E8;
}
.gelande-card__info dd {
  padding: 1.05rem 0 1.05rem 2rem;
  border: 1px solid #D6E2E8;
  border-radius: 0 10px 10px 0;
  border-left: none;
}
@media screen and (max-width: 768px) {
  .gelande-cards__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gelande-card {
    padding: 5rem 2.5rem;
  }
  .gelande-card__title {
    font-size: 1.8rem;
  }
}
/*=========================================================
  instagram
=========================================================*/
.instagram {
  position: relative;
  padding: 12rem 0 1.6rem;
  background-color: #AFDBE6;
  border-radius: 10rem 10rem 0 0;
}
.instagram .inner {
  display: grid;
  direction: rtl;
  grid-template-columns: 1fr 95rem;
  align-items: start;
}
.instagram .ttl {
  writing-mode: vertical-rl;
  text-orientation: sideways;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .instagram {
    padding: 6rem 0 3rem;
    border-radius: 3rem 3rem 0 0;
  }
  .instagram .inner {
    grid-template-columns: 1fr 25.5rem;
  }
  .instagram .ttl {
    gap: 1.7rem;
  }
}
/*=========================================================
  scroll-text
=========================================================*/
.scroll-text {
  background-color: #AFDBE6;
  overflow: hidden;
  color: #fff;
}
.scroll-text .splide__track {
  overflow: visible;
}
.scroll-text .splide__list {
  display: flex;
  align-items: center;
}
.scroll-text .splide__slide {
  width: auto !important;
  flex-shrink: 0;
}
.scroll-text__item {
  font-size: 11rem;
  font-weight: 800;
  font-family: Manrope;
  line-height: 1;
  padding-right: 5rem;
  display: block;
  white-space: nowrap;
  transform: translateY(1.3rem);
}
@media screen and (max-width: 768px) {
  .scroll-text__item {
    font-size: 6.6rem;
    transform: translateY(0.8rem);
    padding-right: 3rem;
  }
}
/*=========================================================
  resort-image
=========================================================*/
.resort-image {
  position: relative;
  height: 200vh;
}
.resort-image__wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.resort-image__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splide__slide img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .resort-image {
    position: relative;
    height: 90rem;
  }
  .resort-image__wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 45rem;
    overflow: hidden;
  }
  .resort-image__wrapper picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .resort-image__wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
}
/*=========================================================
  ticket
=========================================================*/
.ticket {
  background: #2057A0;
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
  margin-top: -100vh;
}
.ticket .ttl {
  color: #fff;
}
.ticket__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10rem;
}
.ticket__banner {
  width: 81.4rem;
  overflow: hidden;
}
.ticket__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ticket__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 3rem;
  column-gap: 2rem;
  align-items: start;
  grid-template-rows: auto 1fr;
}
.ticket-card {
  background-color: #fff;
  padding: 5.8rem 3.5rem 3rem;
  border-radius: 2rem;
  filter: drop-shadow(0 0 1.5rem rgba(0, 0, 0, 0.05));
  text-align: center;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
.ticket-card__title,
.season-pass__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2057A0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ticket-card__title span {
  font-size: 1.8rem;
  line-height: 1.33333;
  display: block;
}
.ticket-card__title::after,
.season-pass__title::after {
  content: '';
  display: block;
  width: 30px;
  height: 4px;
  background-color: currentColor;
  margin: 2.6rem auto 0;
}
.ticket-card__content {
  display: grid;
  grid-template-columns: auto 9rem;
  font-weight: 700;
  grid-auto-rows: 1fr;
  flex-grow: 1;
}
.ticket-card--single .ticket-card__content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ticket-card--single .ticket-card__price {
  border-bottom: none;
}
.ticket-card__category,
.season-pass__category {
  line-height: 1.2;
  padding: 3rem 0;
  display: flex;
  align-items: center;
}
.ticket-card__price,
.season-pass__price {
  font-size: 2.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.ticket-card__category,
.ticket-card__price {
  border-bottom: 1px solid #D6E2E8;
}
.ticket-card__price .unit,
.season-pass__price .unit {
  font-size: 2rem;
}
.ticket-card__category:last-of-type,
.ticket-card__price:last-of-type {
  border-bottom: none;
}
.ticket-card__text,
.season-pass__text {
  font-size: 1.4rem;
}
.ticket-card__category:first-of-type:before {
  content: none;
}
.season-pass {
  background-color: #FFFFE6;
  padding: 6rem;
  text-align: center;
  border-radius: 2rem;
}
.season-pass__plan + .season-pass__plan {
  margin-top: 5rem;
}
.season-pass__title {
  line-height: 1.5;
}
.season-pass__title span {
  display: inline-block;
}
.season-pass__content {
  display: grid;
  grid-template-columns: repeat(6, auto);
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-top: 3rem;
  font-weight: 700;
}
.season-pass__plan--early .season-pass__title span,
.season-pass__plan--early .season-pass__price span {
  color: #F28043;
}
.season-pass__category {
  position: relative;
  padding: 0 2.5rem 0 5rem;
}
.season-pass__category:first-child {
  padding: 0 2.5rem 0 0;
}
.season-pass__category::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 3.4rem;
  background-color: #D6E2E8;
}
.season-pass__category:first-of-type::before {
  display: none;
}
.season-pass__price {
  padding: 0 5rem 0 0;
  line-height: 3.4rem;
}
.season-pass__price:last-child {
  padding: 0;
}
.ticket__notes {
  color: #F2FCFF;
  font-weight: 700;
  text-align: right;
  margin: 3rem 0 5rem;
}
.ticket__button {
  text-align: center;
}
.ticket__button .btn {
  font-size: 2rem;
  gap: 2rem;
  padding: 2rem 5rem;
  color: #fff;
  background-color: #F28043;
}
.ticket__button .btn:active {
  transform: scale(0.98);
  opacity: 0.9;
}
@media (hover: hover) and (pointer: fine) {
  .ticket__button .btn:hover {
    color: #F28043;
    background-color: #fff;
  }
  .ticket__button .btn:hover .icon--hover {
    --icon-bg: #F28043;
    --icon-fg: #fff;
  }
}
.ticket__button .btn__icons {
  position: relative;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
}
.ticket__button .icon--normal {
  --icon-bg: #fff;
  --icon-fg: #F28043;
}
.ticket__button .icon--hover {
  --icon-bg: #fff;
  --icon-fg: #F28043;
}
@media screen and (max-width: 768px) {
  .ticket {
    margin-top: -45rem;
    position: relative;
    z-index: 2;
    padding: 8rem 0;
  }
  .ticket__header {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 4rem;
  }
  .ticket-card--single .ticket-card__content {
    min-height: auto;
    margin: 3rem 0;
  }
  .ticket__banner {
    width: 100%;
  }
  .ticket__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ticket-card {
    grid-template-rows: auto;
  }
  .season-pass {
    padding: 6rem 3.5rem 3rem;
  }
  .season-pass__plan + .season-pass__plan {
    margin-top: 2rem;
  }
  .season-pass__content {
    grid-template-columns: auto 10rem;
    justify-content: normal;
    margin-top: 0;
    gap: 0;
    align-items: stretch;
  }
  .season-pass__category,
  .season-pass__price {
    padding: 0;
    line-height: 1;
    border-bottom: 1px solid #D6E2E8;
  }
  .season-pass__category {
    padding: 3rem 0;
  }
  .season-pass__category:first-child {
    padding: 3rem 0;
  }
  .season-pass__category::before {
    display: none;
  }
  .season-pass__category:last-of-type,
  .season-pass__price:last-of-type {
    border-bottom: none;
  }
  .ticket__notes {
    text-align-last: left;
    font-size: 1.4rem;
    margin: 1.55rem 0 3.55rem;
  }
  .ticket__button .btn {
    padding: 2rem;
  }
}
/*=========================================================
  access
=========================================================*/
.access {
  padding: 10rem 0 12rem;
  background: url(../images/bg-snowresort02.jpg) center/cover no-repeat;
}
.access__content {
  position: relative;
  width: 110rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.access__text {
  color: #fff;
  background-color: #0077D0;
  padding: 8rem 0 8rem 15rem;
  flex: 1;
  position: relative;
  border-radius: 0 10rem 10rem 0;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
}
.access__heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 5.25rem;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  line-height: 1;
}
.access__heading:nth-of-type(2) {
  margin-top: 6rem;
}
.icon-location {
  width: 1.6rem;
  height: 2rem;
}
.icon-train {
  width: 1.7rem;
  height: 2rem;
}
.icon-car {
  width: 2rem;
  height: 1.8rem;
}
.access__text p,
.access__text dt,
.access__text dd {
  line-height: 2;
}
.access__text dl {
  margin-bottom: 3.2rem;
}
.access__text dl:last-child {
  margin-bottom: 0;
}
.access__map {
  width: 70.4rem;
  border-radius: 5rem;
  overflow: hidden;
  z-index: 10;
  margin-left: -23.4rem;
}
.access__map img {
  width: 70.4rem;
  height: auto;
  border-radius: 5rem;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .access {
    padding: 8rem 0 5rem;
    background: url(../images/bg-snowresort02_sp.jpg) left top/cover no-repeat;
  }
  .access__content {
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
    gap: 0;
  }
  .access__text {
    width: 100%;
    padding: 0;
    border-radius: 3rem 3rem 0 0;
    padding: 8rem 2.5rem 0;
  }
  .access__heading {
    margin-top: 3rem;
  }
  .access__heading:nth-of-type(2) {
    margin-top: 3.05rem;
  }
  .access__map {
    width: 100%;
    border-radius: 0 0 3rem 3rem;
    overflow: hidden;
    padding: 3.25rem 2.5rem 2.5rem;
    margin: 0;
    background-color: #0077D0;
  }
  .access__map img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 3rem;
    display: block;
  }
}
/*=========================================================
  image-scroll
=========================================================*/
.footer__image-scroll {
  padding-bottom: 10.5rem;
}
.footer__image-scroll .splide__slide:nth-child(even) {
  margin-top: 5.5rem;
}
.footer__image-scroll .splide__slide img {
  width: 44rem;
  height: auto;
  display: block;
  border-radius: 3rem;
}
@media screen and (max-width: 768px) {
  .footer__image-scroll {
    padding-bottom: 5.5rem;
  }
  .footer__image-scroll .splide__slide:nth-child(even) {
    margin-top: 1.518rem;
  }
  .footer__image-scroll .splide__slide img {
    width: 12.257rem;
    border-radius: 0.836rem;
  }
  .image-scroll__content img {
    width: 30rem;
    height: 22.5rem;
  }
}
/*=========================================================
  footer
=========================================================*/
.footer {
  background-color: #2057A0;
  color: #fff;
  padding: 2.5rem 4rem 2.5rem 5rem;
}
.footer__content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  line-height: 1.6;
  row-gap: 1.1rem;
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.footer__link p + p::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #fff;
  margin-right: 3rem;
  vertical-align: middle;
}
.footer__link a {
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}
.footer__link a:hover {
  text-decoration: underline;
  text-underline-offset: 0.8rem;
}
.footer__copyright {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 3rem;
    text-align: center;
  }
  .footer__content {
    row-gap: 1.8rem;
  }
  .footer__copyright {
    font-size: 1.2rem;
    line-height: 2;
  }
  .footer__link {
    font-size: 1.3rem;
    line-height: 1.846;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1.5rem;
  }
  .footer__link-company {
    width: 100%;
  }
  .footer__link p + p::before {
    display: none;
  }
}
/*=========================================================
    floating-banner
=========================================================*/
.floating-banner {
  position: fixed;
  bottom: 12rem;
  right: 6.5rem;
  width: 17rem;
  height: 17rem;
  z-index: 900;
  transition: opacity 0.5s ease;
}
.floating-banner:hover {
  opacity: 0.6;
}
.floating-banner a {
  display: block;
  width: 100%;
  height: 100%;
}
.floating-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 0 1.5rem rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 768px) {
  .floating-banner {
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
    transform: translateY(0);
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
  .floating-banner.is-hidden {
    opacity: 0;
    transform: translateY(2rem);
    pointer-events: none;
  }
}
/*=========================================================
  modal
=========================================================*/
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgb(51, 51, 51, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  position: relative;
  width: 94.1rem;
  max-width: 90%;
  max-height: 85vh;
  background: linear-gradient(to right, #0077D0, #62E1CC);
  border-radius: 2rem;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s;
  padding: 3rem;
}
.modal-overlay.is-active .modal {
  transform: scale(1);
}
.modal__close {
  position: absolute;
  top: 4rem;
  right: 4rem;
  width: 5rem;
  height: 5rem;
  background-color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 10;
}
.modal__close:hover {
  background-color: rgb(255, 255, 255, 0.6);
}
.modal__close span {
  position: absolute;
  width: 2.5rem;
  height: 0.172rem;
  background-color: #333;
}
.modal__close span:first-child {
  transform: rotate(45deg);
}
.modal__close span:last-child {
  transform: rotate(-45deg);
}
.modal__content {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 37rem;
  height: 100%;
  border-radius: 2rem;
}
.modal__text {
  padding: 3.5rem 5.2rem 4rem;
}
.modal__logo {
  width: 7rem;
  height: 7.5rem;
  margin: 0 auto 1.75rem;
}
.modal__logo svg {
  display: block;
  width: 100%;
  height: 100%;
}
.modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 2rem 2rem 0;
}
.modal__title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 2.2rem;
  text-align: center;
  color: #0077D0;
}
.modal__info p {
  margin-bottom: 2.6rem;
}
.modal__info p:last-child {
  margin-bottom: 0;
}
.modal__info span {
  font-size: 1.7rem;
  line-height: 1.47;
  color: #0077D0;
  font-weight: 800;
  letter-spacing: -0.015em;
}
@media screen and (max-width: 768px) {
  .modal {
    width: 35rem;
    height: auto;
    max-height: 90vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
  }
  .modal__close {
    top: 3rem;
    right: 3rem;
    filter: drop-shadow(0 0 1.5rem rgba(0, 0, 0, 0.05));
  }
  .modal__content {
    display: block;
    background: #FCFAF3;
    height: 100%;
    flex: 1 1 auto;
    overflow: visible;
  }
  .modal__text {
    padding: 3rem 1.5rem 2.4rem;
    overflow-y: auto;
    max-height: calc(90vh - 10rem);
    -webkit-overflow-scrolling: touch;
  }
  .modal__logo {
    width: 4rem;
    height: 4.285rem;
    flex-shrink: 0;
  }
  .modal__title {
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
    flex-shrink: 0;
  }
  .modal__image {
    display: none;
    overflow: hidden;
  }
  .modal__info {
    font-size: 1.4rem;
    line-height: 1.7857;
  }
}
/*KVアニメーション停止*/
/* @media screen and (max-width: 768px) {
  .kv__slider-wrapper .splide__track {
    border-radius: 0 0 10rem 10rem;
  }
} */