@charset "UTF-8";

/* common */
.main-area,
.main_inner {
  width: 100%;
  margin: auto;
  padding-bottom: calc(110 * (100vw / 375));
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", HGS明朝E, "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 400
}

.main-area,
.main-area *,
.main-area :after,
.main-area :before,
.main_inner,
.main_inner *,
.main_inner :after,
.main_inner :before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.main-area img,
.main-area svg,
.main_inner img,
.main_inner svg {
  width: 100%;
  height: auto
}

.main-area a,
.main_inner a {
  overflow: visible
}

.main-area a:hover,
.main_inner a:hover {
  cursor: pointer
}

.sp-component {
  display: block
}

.pc-component {
  display: none
}

@media only screen and (min-width:768px) {
  .main-area,
  .main_inner {
    padding-bottom: 14rem;
  }

  .main-area {
    margin-top: 4rem;
  }
}

/* ===============================================
* LPレイアウト *
=============================================== */
.pc_view{
  display: block;
}
.smp_view{
  display: none;
}

@media screen and (max-width: 767px) {
  .pc_view{
    display: none;
  }
  .smp_view{
    display: block;
  }
}

@media screen and (min-width: 768px) {
}

/* ===============================================
* slider調整 *
=============================================== */
.mv_slider{
  width: 90rem;
  margin: 0 auto;
  position: relative;
}
.mv_slider_inner {
  display: flex;
  justify-content: center;
}
.slider__wrap {
  position: relative;
  overflow: hidden;
  width: 45rem;
}
.ratio-1_1:before {
    content: "";
    display: block;
    padding-top: 134%;
}
.slider__text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7.6rem;
  margin: 0 auto;
  width: 28rem;
  z-index: 99;
}
.slider {
  backface-visibility: hidden;
}
.slider__slide {
  position: absolute;
  overflow: hidden;
  top: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.slider__slide-img {
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/*右 下から上へのアニメーション*/
.slider__slide.active {
  top: 0;
  animation-duration: 1500ms;
  animation-name: slide-in;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  z-index: 50;
}
.slider__slide.active > .slider__slide-img {
  animation-duration: 1500ms;
  animation-name: img-in;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.slider__slide.inactive {
  top: 0;
  animation-duration: 1500ms;
  animation-name: slide-out;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  z-index: 0;
}
.slider__slide.inactive > .slider__slide-img {
  animation-duration: 1500ms;
  animation-name: img-out;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.slider__slide.active-default {
  top: 0;
}
@keyframes slide-in {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes img-in {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes img-out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50%);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.slider__slide:nth-child(1) .slider__slide-img {
  background-image: url("../img/01.jpg");
}
.slider__slide:nth-child(2) .slider__slide-img {
  background-image: url("../img/03.jpg");
}
.slider__slide:nth-child(3) .slider__slide-img {
  background-image: url("../img/05.jpg");
}
.slider__slide:nth-child(4) .slider__slide-img {
  background-image: url("../img/07.jpg");
}
.slider__slide:nth-child(5) .slider__slide-img {
  background-image: url("../img/09.jpg");
}
.slider__slide:nth-child(6) .slider__slide-img {
  background-image: url("../img/11.jpg");
}
.slider__slide:nth-child(7) .slider__slide-img {
  background-image: url("../img/13.jpg");
}
.slider__slide:nth-child(8) .slider__slide-img {
  background-image: url("../img/15.jpg");
}
.slider__slide:nth-child(9) .slider__slide-img {
  background-image: url("../img/17.jpg");
}
.slider__slide:nth-child(10) .slider__slide-img {
  background-image: url("../img/19.jpg");
}
.slider__slide:nth-child(11) .slider__slide-img {
  background-image: url("../img/21.jpg");
}
.slider__slide:nth-child(12) .slider__slide-img {
  background-image: url("../img/23.jpg");
}

/*左 上から下へのアニメーション*/
.slider__slide_2.active {
  top: 0;
  animation-duration: 1500ms;
  animation-name: slide-in_2;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  z-index: 50;
}
.slider__slide_2.active > .slider__slide-img {
  animation-duration: 1500ms;
  animation-name: img-in_2;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.slider__slide_2.inactive {
  top: 0;
  animation-duration: 1500ms;
  animation-name: slide-out_2;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  z-index: 0;
}
.slider__slide_2.inactive > .slider__slide-img {
  animation-duration: 1500ms;
  animation-name: img-out_2;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes slide-in_2 {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes img-in_2 {
  0% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-out_2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes img-out_2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.slider__slide_2:nth-child(1) .slider__slide-img {
  background-image: url("../img/02.jpg");
}
.slider__slide_2:nth-child(2) .slider__slide-img {
  background-image: url("../img/04.jpg");
}
.slider__slide_2:nth-child(3) .slider__slide-img {
  background-image: url("../img/06.jpg");
}
.slider__slide_2:nth-child(4) .slider__slide-img {
  background-image: url("../img/08.jpg");
}
.slider__slide_2:nth-child(5) .slider__slide-img {
  background-image: url("../img/10.jpg");
}
.slider__slide_2:nth-child(6) .slider__slide-img {
  background-image: url("../img/12.jpg");
}
.slider__slide_2:nth-child(7) .slider__slide-img {
  background-image: url("../img/14.jpg");
}
.slider__slide_2:nth-child(8) .slider__slide-img {
  background-image: url("../img/16.jpg");
}
.slider__slide_2:nth-child(9) .slider__slide-img {
  background-image: url("../img/18.jpg");
}
.slider__slide_2:nth-child(10) .slider__slide-img {
  background-image: url("../img/20.jpg");
}
.slider__slide_2:nth-child(11) .slider__slide-img {
  background-image: url("../img/22.jpg");
}
.slider__slide:nth-child(12) .slider__slide-img {
  background-image: url("../img/24.jpg");
}

@media screen and (max-width: 767px) {
  .mv_slider{
    width: calc(345 * (100vw / 375));
    margin: 0 auto;
    margin-top: calc(20 * (100vw / 375));
  }
  .slider__wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    height: auto;
    float: none;
    margin-bottom: 10%;
  }
  .ratio-1_1:before {
    content: "";
    display: block;
    padding-top: 134%;
  }
  .slider__text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(35 * (100vw / 375));
    margin: auto;
    width: calc(250 * (100vw / 375));
    z-index: 99;
  }
  .slider__slide:nth-child(1) .slider__slide-img {
    background-image: url("../img/01.jpg");
  }
  .slider__slide:nth-child(2) .slider__slide-img {
    background-image: url("../img/02.jpg");
  }
  .slider__slide:nth-child(3) .slider__slide-img {
    background-image: url("../img/03.jpg");
  }
  .slider__slide:nth-child(4) .slider__slide-img {
    background-image: url("../img/04.jpg");
  }
  .slider__slide:nth-child(5) .slider__slide-img {
    background-image: url("../img/05.jpg");
  }
  .slider__slide:nth-child(6) .slider__slide-img {
    background-image: url("../img/06.jpg");
  }
  .slider__slide:nth-child(7) .slider__slide-img {
    background-image: url("../img/07.jpg");
  }
  .slider__slide:nth-child(8) .slider__slide-img {
    background-image: url("../img/08.jpg");
  }
  .slider__slide:nth-child(9) .slider__slide-img {
    background-image: url("../img/09.jpg");
  }
  .slider__slide:nth-child(10) .slider__slide-img {
    background-image: url("../img/10.jpg");
  }
  .slider__slide:nth-child(11) .slider__slide-img {
    background-image: url("../img/11.jpg");
  }
  .slider__slide:nth-child(12) .slider__slide-img {
    background-image: url("../img/12.jpg");
  }
  .slider__slide:nth-child(13) .slider__slide-img {
    background-image: url("../img/13.jpg");
  }
  .slider__slide:nth-child(14) .slider__slide-img {
    background-image: url("../img/14.jpg");
  }
  .slider__slide:nth-child(15) .slider__slide-img {
    background-image: url("../img/15.jpg");
  }
  .slider__slide:nth-child(16) .slider__slide-img {
    background-image: url("../img/16.jpg");
  }
  .slider__slide:nth-child(17) .slider__slide-img {
    background-image: url("../img/17.jpg");
  }
  .slider__slide:nth-child(18) .slider__slide-img {
    background-image: url("../img/18.jpg");
  }
  .slider__slide:nth-child(19) .slider__slide-img {
    background-image: url("../img/19.jpg");
  }
  .slider__slide:nth-child(20) .slider__slide-img {
    background-image: url("../img/20.jpg");
  }
  .slider__slide:nth-child(21) .slider__slide-img {
    background-image: url("../img/21.jpg");
  }
  .slider__slide:nth-child(22) .slider__slide-img {
    background-image: url("../img/22.jpg");
  }
  .slider__slide:nth-child(23) .slider__slide-img {
    background-image: url("../img/23.jpg");
  }
  .slider__slide:nth-child(24) .slider__slide-img {
    background-image: url("../img/24.jpg");
  }
}

/* ===============================================
* モーダル *
=============================================== */
/* --- for small viewport --- */
/* Gallery */
.p-gallery {
}
.p-gallery__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 100%));
  gap: var(--gap-x, 0px) var(--gap-y, 0px);
}
.p-gallery__item {
}
.p-gallery__trigger {
  display: block;
}

/* Modal */
.p-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  display: none;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: var(--white, #fff);
}
.p-modal-body {
  height: 100%;
  margin: 0 auto;
}
.p-modal-contents {
  height: 100%;
}
.p-modal-inner {
  position: relative;
}
.p-modal-close {
  position: absolute;
  z-index: 1;
}
.p-modal-placeholder {
  display: flex;
}
.p-modal__image {
}
.p-modal__text-wrapper {
}

/* クレジット */
.p-modal__text .credit-txt{
  display: block;
  color: #333;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 2;
  text-align: right;
}

/* リンクあり */
.credit-txt .credit-price {
  text-decoration: underline;
}
.p-modal__credit--disabled {
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}

/* リンクなし */
.p-modal__text .credit-txt.notClick {
  pointer-events: none;
}
.credit-txt.notClick .credit-price {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
/* Gallery */
  .p-gallery {
    margin-top: calc(40 * (100vw / 375));
  }
  .p-gallery__list {
    --gap-x: calc(9 * (100vw / 375));
    --gap-y: calc(9 * (100vw / 375));
    padding: 0 calc(15*(100vw / 375));
  }
  .p-gallery__item {
  }
  .p-gallery__trigger {
  }
  /* Modal */
  .p-modal-body {
    width: 100%;
    padding: calc(55 * (100vw / 375)) calc(45 * (100vw / 375)) 0;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .p-modal-inner {
    height: 100%;
  }
  .p-modal-close {
    top: calc(-40 * (100vw / 375));
    right: calc(-30 * (100vw / 375));
    width: calc(20 * (100vw / 375));
    height: calc(20 * (100vw / 375));
  }
  .p-modal-placeholder {
    flex-direction: column;
    row-gap: calc(19 * (100vw / 375));
    height: 100%;
  }
  .p-modal__image {
  }
  .p-modal__image img {
    height: 100%;
    object-fit: contain;
  }
  /* .p-modal__text-wrapper {
    overflow-y: auto;
    overscroll-behavior-y: contain;
  } */
  .p-modal__text-wrapper {
    display: flex;
    justify-content: right;
    padding-bottom: calc(20 * (100vw / 375));
  }
  .p-modal__text {
    font-size: calc(12 * (100vw / 375));
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
    /* Gallery */
  .p-gallery {
    margin-top: 6rem;
  }
  .p-gallery__list {
    grid-template-columns: repeat(2, minmax(0, 100%));
    --gap-x: 2rem;
    --gap-y: 2rem;
    width: 74rem;
    margin: 0 auto;
  }
  .p-gallery__item {
  }
  .p-gallery__trigger {
  }
  /* Modal */
  .p-modal {
    padding: 4.1rem 0;
  }
  .p-modal-body {
    position: relative;
    width: min(100%, 88rem);
    margin: 0 auto;
    padding: 0 2rem;
  }
  .p-modal-contents {
    display: flex;
    align-items: center;
    padding: 0 2rem;
  }
  .p-modal-inner {
    position: relative;
  }
  .p-modal-close {
    top: 0;
    right: 0;
    width: 2rem;
    height: 2rem;
  }
  .p-modal-placeholder {
    justify-content: center;
    align-items: flex-end;
  }
  .p-modal__image,
  .p-modal__text-wrapper {
    flex-grow: 0;
    flex-shrink: 0;
  }
  .p-modal__image {
    width: 48rem;
  }
  .p-modal__image img {
  }
  .p-modal__text-wrapper {
    display: grid;
    place-items: end;
    width: 32rem;
  }
  .p-modal__text {
    font-size: 1.2rem;
  }
}


/* ===============================================
* btn *
=============================================== */
.link-btn {
  display: block;
  width: calc(335 * (100vw / 375));
  height: calc(50 * (100vw / 375));
  margin-right: auto;
  margin-left: auto;
}

.link-btn--newarrivals {
  margin-top: calc(40*(100vw / 375));
}

.link-btn--top {
  margin-top: calc(30 * (100vw / 375));
  margin-bottom: calc(80 * (100vw / 375))
}

@media only screen and (min-width:768px) {
  .link-btn {
    width: 40rem;
    height: 5rem;
  }

  .link-btn--newarrivals {
    margin-top: 9.5rem;
  }

  .link-btn--top {
    margin-top: 2rem;
    margin-bottom: 8.1rem;
  }
}