/* collection */
/* var */
/* collection-page */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes arrow {
  0% {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0.5;
    transform: translate3d(-50%, -8px, 0);
  }
}
.collection-page .nav-contents {
  position: fixed;
  width: auto;
  padding: 150px 0 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .collection-page .nav-contents {
    padding: 150px 0 0 40px;
  }
}
.collection-page .nav-contents__menu-item a {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 1.2em 0;
  padding: 0;
  font-family: "Jost";
  font-size: max(0.8333vw, 10px);
  line-height: 1;
  color: #3F668C;
}
.collection-page .nav-contents__menu-item a span {
  position: relative;
  padding: 0 0 0.3em 0;
}
.collection-page .nav-contents__menu-item a span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid;
  border-color: inherit;
  transform: scaleX(0);
  transition: 0.3s;
  transform-origin: top left;
}
.collection-page .nav-contents__menu-item a:hover span:after {
  transform: scaleX(1);
}
.collection-page .mv {
  position: relative;
  width: 83.8%;
  margin: 0 0 0 16.2%;
  animation: fadeIn 1s ease 0s 1 normal;
  z-index: 998;
}
@media screen and (max-width: 1280px) {
  .collection-page .mv {
    width: 81.25%;
    margin: 0 0 0 18.75%;
  }
}
@media screen and (max-width: 736px) {
  .collection-page .mv {
    width: 100%;
    height: 100vh;
    margin: 0;
  }
}
.collection-page .mv .scoll-down {
  position: absolute;
  left: calc(50% - 1.875vw);
  bottom: 4em;
  z-index: 99;
  font-size: 0.9375vw;
  font-family: "Jost";
  font-weight: 500;
  color: #fff;
  animation: arrow 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s infinite alternate;
}
@media screen and (max-width: 736px) {
  .collection-page .mv .scoll-down {
    display: none;
  }
}
.collection-page .mv .scoll-down::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -2em;
  left: calc(50% - 1em);
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 2em;
  height: 2em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
.collection-page .mv .button-catalog {
  display: none;
  position: fixed;
  left: 6vw;
  top: calc(100dvh - 6vw - 80px);
  z-index: 99;
}
.collection-page .mv .button-catalog a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  color: #fff;
  font-size: 0.6875rem;
  text-align: center;
  font-family: "Jost";
  font-weight: 500;
  border-radius: 100%;
  border: 1px solid #fff;
  background-color: #503535;
}
@media screen and (max-width: 736px) {
  .collection-page .mv .button-catalog {
    display: block;
  }
}
.collection-page .copy {
  padding: 9.89vw 0 0 0;
}
@media screen and (max-width: 736px) {
  .collection-page .copy {
    text-align: left;
    padding: 50.76vw 0 10vw 0;
  }
}
.collection-page .copy__title {
  color: #3F668C;
  font-size: max(2.1vw, 24px);
  font-family: "Jost";
  font-weight: 400;
  letter-spacing: 1px;
}
.collection-page .copy p {
  margin: 4.166vw 0 0 0;
  font-size: max(1.05vw, 13px);
  line-height: 2.6em;
  color: #3F668C;
}
@media screen and (max-width: 736px) {
  .collection-page .copy p {
    margin: 6vw 0 0 0;
    font-size: 3.076vw;
    line-height: 2em;
  }
}
.collection-page .copy p.copy__attention {
  margin: 7.29vw 0 0 0;
  font-size: 0.8125rem;
  font-size: max(0.67vw, 10px);
  line-height: 2em;
}
@media screen and (max-width: 736px) {
  .collection-page .copy p.copy__attention {
    margin: 38.46vw 0 0 0;
    line-height: 1.5em;
  }
}
.collection-page .contents__wrapper {
  padding: 0 10.4% 0 29.1%;
  min-width: 960px;
}
@media screen and (max-width: 1280px) {
  .collection-page .contents__wrapper {
    padding: 0 10% 0 18.75%;
  }
}
@media screen and (max-width: 736px) {
  .collection-page .contents__wrapper {
    min-width: auto;
    padding: 0 7.69%;
  }
}
.collection-page .page__nav {
  display: block;
  position: fixed;
  right: 30px;
  top: 60px;
  height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  z-index: 997;
}
@media screen and (max-width: 1280px) {
  .collection-page .page__nav {
    display: none;
  }
}
@media screen and (max-width: 736px) {
  .collection-page .page__nav {
    display: none;
  }
}
.collection-page .page__nav ul {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.collection-page .page__nav ul:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  height: calc(100% - 20px);
  border-right: 1px solid #3F668C;
}
.collection-page .page__nav ul li {
  position: relative;
  text-indent: -999999px;
  width: 20px;
  height: 20px;
}
.collection-page .page__nav ul li a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.collection-page .page__nav ul li a::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 6px;
  width: 9px;
  height: 1px;
  border-top: 1px solid #3F668C;
}
.collection-page .page__nav ul li a::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 11px;
  width: 11px;
  height: 11px;
  background-color: #3F668C;
  transform: scale(0);
  transition: 0.3s ease-in-out;
}
.collection-page .page__nav ul li a.active::after {
  transform: scale(1);
}
.collection-page .page__nav ul li a:hover::after {
  transform: scale(1);
}
.collection-page .page__nav p {
  writing-mode: vertical-rl;
  color: #3F668C;
  font-family: "Jost";
  padding: 0 0 0 10px;
  font-size: 1rem;
  font-weight: 500;
}
.collection-page .page-top {
  position: fixed;
  left: 50px;
  bottom: 30px;
  width: 2.604vw;
  min-width: 36px;
  height: calc(2.604vw + 10px);
  min-height: 46px;
  display: inline-block;
  cursor: pointer;
}
@media screen and (max-width: 736px) {
  .collection-page .page-top {
    display: none;
  }
}
.collection-page .page-top a {
  display: inline-block;
  width: 2.604vw;
  min-width: 36px;
  height: calc(2.604vw + 10px);
  min-height: 46px;
}
.collection-page .page-top svg {
  display: inline-block;
  margin: 10px 0 0 0;
  min-width: 36px;
  min-height: 36px;
  width: 2.604vw;
  height: 2.604vw;
  transform: rotate(90deg);
  fill: #3F668C;
  transition: 0.3s ease-in-out all;
}
.collection-page .page-top:hover svg {
  transform: translateY(-10px) rotate(90deg);
}
.collection-page .bnr {
  margin: 23.59vw 0 0 0;
}
@media screen and (max-width: 736px) {
  .collection-page .bnr {
    margin: 51.28vw 0 0 0;
  }
}
.collection-page .gallery__target {
  padding-top: 300px;
}
.collection-page .gallery__target#no1 {
  margin: 8vw auto 0 auto;
}
.collection-page .gallery__item {
  position: relative;
  max-width: 1160px;
  margin: calc(18.333vw - 300px) auto 0 auto;
}
@media screen and (max-width: 1280px) {
  .collection-page .gallery__item {
    margin: calc(18.333vw - 300px) auto 0 4vw;
  }
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item {
    margin: calc(37vw - 300px) auto 0 auto;
  }
}
.collection-page .gallery__item__title {
  position: absolute;
  top: 0;
  left: 0;
  width: 14.82%;
  z-index: 2;
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__title {
    width: 17.5vw;
  }
}
.collection-page .gallery__item__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 1;
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__container {
    display: block;
  }
}
.collection-page .gallery__item__slider {
  position: relative;
  width: 43%;
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__slider {
    width: 100%;
  }
}
.collection-page .gallery__item__slider__caption {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 0.8em 0 0 0;
}
@media screen and (max-width: 1280px) {
  .collection-page .gallery__item__slider__caption {
    position: relative;
    width: 100%;
  }
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__slider__caption {
    position: initial;
  }
}
.collection-page .gallery__item__slider__number {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__slider__number {
    position: absolute;
    top: auto;
    bottom: 20px;
    left: calc(50% - 44px);
    z-index: 1;
  }
}
.collection-page .gallery__item__slider__number span {
  position: relative;
  font-family: "Sawarabi Gothic";
  font-size: max(0.89vw, 0.625rem);
  line-height: 1;
  color: #3F668C;
  padding: 0 1vw;
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__slider__number span {
    font-size: 0.625rem;
    padding: 0 2vw;
    color: #CFF0F8;
  }
}
.collection-page .gallery__item__slider__number .line {
  width: 1.25vw;
  padding: 0;
  border-top: 1px solid #3F668C;
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__slider__number .line {
    width: 26px;
    border-top: 1px solid #CFF0F8;
  }
}
.collection-page .gallery__item__slider .swiper-button-prev,
.collection-page .gallery__item__slider .swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
  width: 1.4vw;
  height: 1.4vw;
}
.collection-page .gallery__item__slider .swiper-button-prev svg,
.collection-page .gallery__item__slider .swiper-button-next svg {
  fill: #3F668C;
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__slider .swiper-button-prev svg,
  .collection-page .gallery__item__slider .swiper-button-next svg {
    fill: #CFF0F8;
  }
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__slider .swiper-button-prev,
  .collection-page .gallery__item__slider .swiper-button-next {
    width: 27px;
    height: 27px;
    position: absolute;
    top: calc(50% - 13.5px);
    left: 2vw;
  }
}
.collection-page .gallery__item__slider .swiper-button-next {
  transform: rotate(180deg);
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__slider .swiper-button-next {
    left: auto;
    right: 2vw;
  }
}
.collection-page .gallery__item__detail {
  width: 51.7%;
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__detail {
    width: 100%;
  }
}
.collection-page .gallery__item__caption {
  display: flex;
  margin: 1.5em 0 0 0;
  font-size: max(0.729vw, 0.75rem);
  min-height: 40px;
}
@media screen and (max-width: 1280px) {
  .collection-page .gallery__item__caption {
    margin: 1em 0 0 0;
    display: block;
  }
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__caption {
    margin: 0;
    display: block;
  }
}
.collection-page .gallery__item__spec {
  color: #3F668C;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__spec {
    flex-direction: column;
    align-items: flex-start;
  }
}
.collection-page .gallery__item__spec__container {
  font-size: max(0.729vw, 0.75rem);
}
@media screen and (max-width: 1280px) {
  .collection-page .gallery__item__spec__container {
    margin: 0 0 0.6em 0;
  }
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__spec__container {
    margin: 0 0 1em 0;
  }
}
.collection-page .gallery__item__spec__name {
  margin: 0;
  min-width: 9em;
  padding: 0.05em 1em;
  display: inline-block;
  font-size: max(0.729vw, 0.75rem);
  text-align: center;
  border: #3F668C 1px solid;
}
@media screen and (max-width: 1280px) {
  .collection-page .gallery__item__spec__name {
    padding: 0.05em 0.5em;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__spec__name {
    padding: 0.05em 1em;
    font-size: 0.6875rem;
    letter-spacing: 0;
  }
}
.collection-page .gallery__item__spec__price {
  padding: 0 0 0 1em;
  letter-spacing: 0.1em;
  align-items: center;
  font-family: "Sawarabi Gothic";
  font-size: max(0.729vw, 0.75rem);
}
@media screen and (max-width: 1280px) {
  .collection-page .gallery__item__spec__price {
    padding: 0 0 0 1em;
  }
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__spec__price {
    padding: 0 0 0 1em;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
  }
}
.collection-page .gallery__item__button {
  width: 50%;
}
@media screen and (max-width: 1280px) {
  .collection-page .gallery__item__button {
    width: 100%;
  }
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__button {
    width: 100%;
  }
}
.collection-page .gallery__item__button a {
  display: flex;
  padding: 1em 1em;
  min-height: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: max(0.729vw, 0.75rem);
  line-height: 2em;
  color: #CFF0F8;
  background: #3F668C;
  white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .collection-page .gallery__item__button a {
    padding: 0.5em 0;
    line-height: 1.5em;
    min-height: auto;
  }
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__button a {
    padding: 1em 1em;
    font-size: 0.6875rem;
    line-height: 15px;
  }
}
.collection-page .gallery__item__button a:hover {
  opacity: 0.7;
}
.collection-page .gallery__item__button a:hover svg {
  transform: rotate(180deg) translateX(-0.2em);
}
.collection-page .gallery__item__button svg {
  transform: rotate(180deg);
  fill: #CFF0F8;
  display: inline-block;
  margin: 0 0 0 0.5em;
  width: 1.4vw;
  height: 1.4vw;
  transition: 0.5s;
}
@media screen and (max-width: 736px) {
  .collection-page .gallery__item__button svg {
    width: 15px;
    height: 15px;
    font-size: 0.6875rem;
  }
}/*# sourceMappingURL=collection.css.map */