/* ===============================================
# LINE UP 商品一覧（カテゴリー別一覧）
=============================================== */

.lineup {
  margin-top: 135px;
}

.lineup__items {
  margin-top: 150px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* column-gap: 115px;
  row-gap: 164px; */
  column-gap: calc( 115/ 1920 * 100vw);
  row-gap: calc( 164/ 1920 * 100vw);
}

.lineup__item {
  max-width: 519px;
  width: 100%;
  margin-inline: auto;
}

.lineup__imgWrapper {
  position: relative;
}

.lineup__img {
  width: 100%;
  /* max-width: 493px; */
  max-width: 519px;
  aspect-ratio: 1/1;
}

.lineup__subImg {
  position: absolute;
  bottom: -26px;
  right: 0;
  z-index: 1;
}

.lineup__subImg img {
  width: 100%;
  max-width: 187px;
  aspect-ratio: 1/1;
}

.lineup__product {
  margin-top: 51px;
}

.lineup__productNameEn {
  margin-top: 30px;
  /* font-size: 36px; */
  font-size: 3.6rem;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #867A77;
}

.lineup__productNameJp {
  margin-top: 20px;
  /* font-size: 16px; */
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1;
  letter-spacing: 0.4em;
  color: #867A77;
}

.lineup__price {
  margin-top: 18px;
  /* font-size: 22px; */
  font-size: 2.2rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  letter-spacing: 0.4em;
  color: #867A77;
}

.lineup__delivery {
  margin-top: 25px;
  /* font-size: 22px; */
  font-size: 2.2rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  letter-spacing: 0.4em;
  color: #867A77;
}

.lineup__delivery span {
  margin-right: 25px;
  /* font-size: 16px; */
  font-size: 1.6rem;
}

.lineup__buttonWrapper {
  margin-top: 31px;
}

.lineup__button {
  display: block;
  margin-inline: auto;
  text-align: center;
  max-width: 100%;
  width: 387px;
  height: 73px;
  border-radius: 37px;
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 73px;
  letter-spacing: 0.8em;
  box-shadow: 0 0 20px rgb(0, 0, 0, 0.1);
}

.lineup__button--colorInversion {
  background: #CBC3B5;
  color: #fff !important;
}

.lineup__buttonIcon {
  width: 30px;
  aspect-ratio: 30/25;
  vertical-align: middle;
  margin-right: 35px;
}

.lineup__sort {
  margin-top: 61px;
  /* max-width: 984px; */
  max-width: 1120px;
  margin-inline: auto;
  padding: 0 20px;
}

@media screen and (min-width: 768px) and (max-width: 920px) {
  .lineup__sort {
    max-width: 590px;
  }
}


.lineup__item.is-hidden {
  display: none;
}

@media screen and (max-width: 767.98px) {
  .lineup {
    margin-top: 70px;
  }

  .lineup__items {
    margin-top: 75px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 35px;
    padding: 0 10px;
  }

  .lineup__subImg img {
    width: 120px;
    height: 120px;
  }

  .lineup__product {
    margin-top: 25px;
  }

  .lineup__productNameEn {
    /* font-size: 1.4rem; */
    font-size: 1.3em;
    margin-top: 10px;
  }

  .lineup__productNameJp {
    /* font-size: 1rem; */
    font-size: 1em;
    margin-top: 10px;
    letter-spacing: 0.01em;
  }

  .lineup__price {
    /* font-size: 1.2rem; */
    font-size: 1.2em;
    margin-top: 15px;
    letter-spacing: 0.2em;
  }

  .lineup__delivery {
    /* font-size: 1rem; */
    font-size: 1em;
    margin-top: 15px;
    letter-spacing: 0.1em;
  }

  .lineup__delivery span {
    display: block;
    margin-right: 0;
    margin-bottom: 8px;
    /* font-size: 1rem; */
    font-size: 1em;
    letter-spacing: 0.2em;
  }

  .lineup__buttonWrapper {
    margin-top: 20px;
  }

  .lineup__button {
    height: 60px;
    line-height: 60px;
    font-size: 1.6rem;
    letter-spacing: 0.7em;
  }

  .lineup__buttonIcon {
    margin-right: 16px;
    width: 25px;
  }

}

@media screen and (max-width: 575.98px) {
  .lineup__buttonWrapper {
    margin-top: 15px;
  }

  .lineup__button {
    height: 50px;
    line-height: 50px;
    font-size: 1.3rem;
    letter-spacing: 0.6em;
    width: 225px;
  }

  .lineup__buttonIcon {
    margin-right: 10px;
    width: 20px;
  }
}

@media screen and (max-width: 375.98px) {
  .lineup__items {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* ===============================================
# sort
=============================================== */
.c-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
}
@media screen and (min-width: 768px) {
  .c-sort {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-sort__all {
  width: 32%;
}

.c-sort__all span {
  display: inline-block;
  background-color: #fff;
  border-radius: 100vmax;
  text-align: center;
  padding: 13px;
  color: #867A77;
  font-size: 16px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  min-width: 234px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) and (max-width: 920px) {
  .c-sort__all {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .c-sort__all {
    width: 100%;
    text-align: center;
  }

  .c-sort__all span {
    margin-inline: auto;
    min-width: 142px;
  }
}

.c-sort__all input:checked + span {
  background-color: #BA968C;
  color: #fff;
}

/* .c-sort__all {
  min-width: 112px;
  color: #867A77;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .c-sort__all {
    margin-inline: auto;
  }
}

.c-sort__all input:checked + span {
  padding-bottom: 6px;
  border-bottom: 4px solid #BA968C;
} */


.c-sort__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin-inline: auto;
  width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 920px) {
  .c-sort__items {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .c-sort__items {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
  }
}

.c-sort__item {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 100vmax;
  text-align: center;
  padding: 9px 10px;
  padding: 0.5625rem 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-sort__item {
    padding: 0.75rem 0.625rem 0.5625rem;
    min-width: 10.5625rem;
  }
}

.c-sort__selectItem span {
  display: inline-block;
  background-color: #fff;
  border-radius: 100vmax;
  text-align: center;
  padding: 13px;
  color: #867A77;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  min-width: 234px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
}
.c-sort__selectItem input:checked + span {
  background-color: #BA968C;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .c-sort__selectItem span {
    min-width: 142px;
  }
}

/* フォームリセット */
.c-sort input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

.c-sort input[type="checkbox"],
.c-sort input[type="radio"] {
  display: none;
}

.c-sort label {
  cursor: pointer;
}
