.c-stroke-btn {
  position: relative;
  padding: 11px 24px;
  border: 1px solid transparent;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.c-stroke-btn__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-stroke-btn__text {
  
  font-size: 1.2rem;
  font-weight: normal;
  text-decoration: none;
}

.c-stroke-btn__text::after {
  display: block;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.c-stroke-btn--black {
  border-color: #000;
  color: #000;
}

.c-stroke-btn--black:hover {
  background-color: #000;
  color: #000;
}

.c-stroke-btn--white {
  border-color: #fff;
  color: #fff;
}

.c-stroke-btn--white:hover {
  background-color: #fff;
  color: #000;
}

.js-fadein {
  opacity: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.js-fadein.is-animated {
  opacity: 1;
}

.js-fadein-up {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.js-fadein-up.is-animated {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.js-fadein-zoomout {
  overflow: hidden;
}

.js-fadein-zoomout img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.js-fadein-zoomout.is-animated img {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

#site_body {
  overflow: unset;
}

.page {
  padding-top: 0;
  overflow: unset;
}

.page::before {
  display: block;
  visibility: hidden;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  content: "";
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.page:not(.is-modal-initialized)::before {
  visibility: visible;
  opacity: 1;
}

.page .u-hover-swap-underline::before, .page .u-hover-swap-underline::after {
  background-color: #fff;
}

.collection-ski-2022-2023 {
  position: relative;
  background-color: #fff;
  color: #000;
  
  font-size: 1.4rem;
  letter-spacing: -0.025em;
}

.main-content {
  background-color: #fff;
}

.pg-header-notice {
  padding: 20px 5%;
  background-color: #ededed;
  
}

.pg-header-notice__container {
  gap: 40px;
}

@media (min-width: 48.0625em) {
  .pg-header-notice__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.pg-header-notice__header {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.8rem;
  line-height: 1.4;
}

@media (min-width: 48.0625em) {
  .pg-header-notice__header {
    font-size: 2rem;
  }
}

.pg-header-notice__title {
  font-weight: bold;
}

@media (max-width: 48em) {
  .pg-header-notice__content {
    margin-top: 6px;
  }
}

.pg-header-notice__text {
  font-size: 1.2rem;
  line-height: 1.8;
}

.pg-header-notice__text a {
  text-decoration: underline;
}

.pg-header-notice__text a:hover {
  text-decoration: none;
}

@media (min-width: 48.0625em) {
  .pg-header-notice__text {
    font-size: 1.3rem;
  }
}

.pg-header {
  width: 100%;
  padding: 0 clamp(12px, 3.2vw, 18px);
  color: #fff;
  mix-blend-mode: difference;
}

@media (min-width: 48.0625em) {
  .pg-header {
    position: absolute;
    top: 0;
    padding: 0 1.25vw;
  }
}

@media (min-width: 48.0625em) {
  .pg-header__container {
    display: grid;
  }
  .pg-header__container > * {
    grid-area: 1 / -1;
  }
}

.pg-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 60px;
}

@media (min-width: 48.0625em) {
  .pg-header__content {
    height: 90px;
  }
}

.pg-headline {
  font-size: 1.8rem;
  font-weight: normal;
}

@media (min-width: 48.0625em) {
  .pg-headline {
    font-size: 2.4rem;
  }
}

.pg-navi {
  z-index: 100;
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  color: #fff;
  mix-blend-mode: difference;
}

@media (min-width: 48.0625em) {
  .pg-navi {
    top: 70px;
  }
}

.pg-navi__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 60px;
  font-size: 1.6rem;
}

@media (min-width: 48.0625em) {
  .pg-navi__items {
    height: 90px;
  }
}

@media (min-width: 48.0625em) {
  .pg-navi__items {
    font-size: 2.2rem;
  }
}

.pg-navi__item {
  line-height: 1.2;
}

.pg-navi__item + .pg-navi__item {
  margin-left: 32px;
}

.pg-navi__item a {
  display: block;
  position: relative;
  text-decoration: none;
}

.pg-navi__item a::after {
  display: block;
  width: 0;
  height: 1px;
  background-color: #fff;
  content: "";
}

.pg-navi__item.is-active a::after {
  width: 100%;
}

.pg-head-link {
  font-size: 1.6rem;
}

@media (min-width: 48.0625em) {
  .pg-head-link {
    font-size: 2.2rem;
  }
}

@media (max-width: 48em) {
  .pg-section {
    padding: 0 3.2vw 60px;
  }
}

@media (min-width: 48.0625em) {
  .pg-section {
    padding: 0 1.25vw 100px;
  }
}

.pg-look:hover {
  cursor: pointer;
}

.pg-look:not(:first-child) {
  margin-top: 24px;
}

@media (min-width: 48.0625em) {
  .pg-look:not(:first-child) {
    margin-top: 40px;
  }
}

.pg-look__images {
  display: grid;
}

@media (max-width: 48em) {
  .pg-look__images .pg-look__img {
    grid-area: 1 / -1;
  }
}

@media (min-width: 48.0625em) {
  .pg-look__images {
    grid-template-columns: repeat(2, auto);
  }
}

.pg-look__img {
  width: 100%;
  height: 100%;
}

.pg-look__img:first-child {
  z-index: 2;
}

@media (max-width: 48em) {
  .pg-look__img:not(:first-child) {
    display: none;
  }
}

.pg-look__title {
  margin-top: 8px;
  font-size: 1.3rem;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 48.0625em) {
  .pg-look__title {
    margin-top: 14px;
    font-size: 1.8rem;
  }
}

.pg-field-gallery {
  margin-top: 24px;
}

@media (min-width: 48.0625em) {
  .pg-field-gallery {
    margin-top: 40px;
  }
}

.pg-field-gallery__container {
  grid-gap: 14px clamp(12px, 3.2vw, 18px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 48.0625em) {
  .pg-field-gallery__container {
    grid-gap: 40px 1.28571vw;
    grid-template-columns: repeat(3, 1fr);
  }
}

.pg-field:hover {
  cursor: pointer;
}

.pg-field__images {
  display: grid;
}

.pg-field__images .pg-field__img {
  grid-area: 1 / -1;
}

.pg-field__img {
  width: 100%;
  height: 100%;
}

.pg-field__img:first-child {
  z-index: 2;
}

.pg-field__title {
  margin-top: 8px;
  font-size: 1.3rem;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 48.0625em) {
  .pg-field__title {
    margin-top: 14px;
    font-size: 1.8rem;
  }
}

.pg-credit {
  display: none;
  z-index: 2;
  position: relative;
  width: 100%;
}

.l-modal .pg-credit {
  display: inline-block;
  padding: 16px;
  color: #000;
}

@media (max-width: 48em) {
  .l-modal .pg-credit {
    background-color: #fff;
  }
}

@media (min-width: 48.0625em) {
  .l-modal .pg-credit {
    position: absolute;
    top: 0;
    left: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
    mix-blend-mode: difference;
  }
}

.pg-credit__data + .pg-credit__data {
  margin-top: 16px;
}

.pg-credit__data small {
  font-size: 1rem;
}

.pg-credit__data span {
  font-size: 1.2rem;
}

.pg-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 48em) {
  .pg-buttons {
    padding: 0 3.2vw 60px;
  }
}

@media (min-width: 48.0625em) {
  .pg-buttons {
    padding: 0 1.25vw 100px;
  }
}

.pg-fill-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
  max-width: 560px;
  height: 56px;
  border: 1px solid #000;
  background-color: #000;
  font-size: 1.5rem;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pg-fill-button a {
  color: #fff;
  text-decoration: none;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.pg-fill-button a::after {
  display: block;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  content: "";
}

@media (min-width: 48.0625em) {
  .pg-fill-button {
    height: 80px;
    font-size: 1.6rem;
  }
  .pg-fill-button:hover {
    background-color: #fff;
  }
  .pg-fill-button:hover a {
    color: #000;
  }
}

.l-modal {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  display: none;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #fff;
}

.l-modal::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  margin: auto;
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  border-right-color: transparent;
  border-left-color: transparent;
  -webkit-animation: circle-loader 1s linear 0s infinite;
  animation: circle-loader 1s linear 0s infinite;
  content: "";
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.l-modal.is-load::before {
  opacity: 0;
}

.l-modal__container {
  height: 100%;
  background-color: #fff;
}

.l-modal__close {
  z-index: 5;
  position: fixed;
  top: 8px;
  width: 64px;
  height: 64px;
  mix-blend-mode: difference;
}

@media (max-width: 48em) {
  .l-modal__close {
    right: 0;
  }
}

@media (min-width: 48.0625em) {
  .l-modal__close {
    left: calc(((100vw - 80vh) / 2) + 80vh);
  }
}

.l-modal__close::before, .l-modal__close::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1px;
  margin: auto;
  background-color: #fff;
  content: "";
}

.browser-ie .l-modal__close::before, .browser-ie .l-modal__close::after {
  background-color: #808080;
}

.l-modal__close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.l-modal__close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.l-modal__close:hover {
  cursor: pointer;
}

.l-modal__content {
  height: 100%;
}

.c-collection-swiper {
  height: 100%;
  background-color: #fff;
}

.c-collection-swiper .swiper-container {
  background-color: #fff;
}

@media (min-width: 48.0625em) {
  .c-collection-swiper .swiper-container {
    height: 100%;
  }
  .c-collection-swiper .swiper-container:hover .swiper-button:before {
    opacity: 1;
  }
}

.c-collection-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.c-collection-swiper .swiper-button {
  z-index: 100;
  position: absolute;
  width: 44px;
  height: 44px;
  margin: auto;
  outline: none;
  mix-blend-mode: difference;
}

.c-collection-swiper .swiper-button::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: border-color;
  transition-property: border-color;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media only screen and (max-width: 48em) {
  .c-collection-swiper .swiper-button {
    top: 63vw;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media only screen and (min-width: 48.0625em) {
  .c-collection-swiper .swiper-button {
    width: 64px;
    height: 64px;
  }
  .c-collection-swiper .swiper-button::after {
    width: 14px;
    height: 14px;
  }
  .c-collection-swiper .swiper-button:hover {
    cursor: pointer;
  }
}

.c-collection-swiper .swiper-button-prev {
  margin-right: 0;
}

.c-collection-swiper .swiper-button-prev::after {
  -webkit-transform: translateX(25%) rotate(-135deg);
  transform: translateX(25%) rotate(-135deg);
}

@media only screen and (max-width: 48em) {
  .c-collection-swiper .swiper-button-prev {
    left: 0;
  }
}

@media only screen and (min-width: 48.0625em) {
  .c-collection-swiper .swiper-button-prev {
    right: calc(((100vw - 80vh) / 2) + 80vh);
  }
}

.c-collection-swiper .swiper-button-next {
  margin-left: 0;
}

.c-collection-swiper .swiper-button-next::after {
  -webkit-transform: translateX(-25%) rotate(45deg);
  transform: translateX(-25%) rotate(45deg);
}

@media only screen and (max-width: 48em) {
  .c-collection-swiper .swiper-button-next {
    right: 0;
  }
}

@media only screen and (min-width: 48.0625em) {
  .c-collection-swiper .swiper-button-next {
    left: calc(((100vw - 80vh) / 2) + 80vh);
  }
}
