@charset "euc-jp";

#productList .productList__unit:nth-child(5) {
  display: list-item !important;
}

/* ************************************************
*  Sort
* ************************************************ */
.sortWrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  font-size: 14px;
  line-height: 1;
}
.sort {
  display: flex;
  align-items: center;
  gap: 40px;
}
.sort__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  padding-right: 24px;
  color: #222222;
  cursor: pointer;
  width: 120px;
  height: 30px;
  outline: none;
  border: none;
}
.productList__count {
  line-height: 1;
  display: flex;
}
@media screen and (max-width: 767px) {
  .sortWrapper {
    justify-content: space-between;
  }
  .sort {
    gap: 20px;
  }
  .sort__select {
    width: 100px;
  }
}

/* ************************************************
*  Free Space
* ************************************************ */
.freeSpace {
  display: flex;
  gap: 34px;
}
.freeSpace img {
  width: 100%;
  height: auto;
}
.freeSpace__left {
  width: 50%;
}
.freeSpace__right {
  width: 50%;
}
.freeSpace__title {
  line-height: 1;
  margin-bottom: 36px;
}
.freeSpace__title__main {
  font-family: "TC Avant Garde Gothic Pro", sans-serif;
  font-size: 45px;
  font-weight: bold;
  display: block;
}
.freeSpace__title__sub {
  font-size: 26px;
  font-weight: bold;
  display: block;
  margin-top: 17px;
}
.freeSpace__text {
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 767px) {/* SP */
  .freeSpace {
    flex-direction: column-reverse;
  }
  .freeSpace__left {
    width: 100%;
  }
  .freeSpace__right {
    width: calc(100% + 40px);
    margin-left:-20px;
    margin-right:-20px;
  }
  .freeSpace__title {
    margin-bottom: 0;
  }
  .freeSpace__text {
    display: none;
  }
  .freeSpace__title__main {
    font-size: 26px;
  }
  .freeSpace__title__sub {
    font-size: 16px;
  }
}

/* ************************************************
*  SubGroupArea
* ************************************************ */
#subGroupArea {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
#subGroupArea a {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  text-decoration: none;

  padding: 20px 55px 20px 10px;
  flex: 1 0 20%;
  text-align: center;

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 3px;
  cursor: pointer;
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}
#subGroupArea a span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  font-weight: bold;
}
#subGroupArea a::after {
  content: "";
  display: inline-block;
  position: relative;
  width: 31px;
  height: 8px;
  transform: skewX(42deg);
  z-index: 0;
  transition: 0.3s;
  position: absolute;
  top: 34%;
  right: 21px;
  border-right: #000 solid 2px;
  border-bottom: #000 solid 1px;
}
#subGroupArea a.current {
  background-color: #000;
  color: #fff;
}
#subGroupArea a.current::after {
  border-right: #fff solid 2px;
  border-bottom: #fff solid 1px;
}
#subGroupArea a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {/* SP */
  #subGroupArea {
    gap: 10px 20px;
    flex-wrap: wrap;
  }
  #subGroupArea a {
    font-size: 12px;
    padding: 10px 20px 10px 10px;
    flex: 0 0 auto;
    min-height: 45px;
    width: calc(50% - 10px);
  }
  #subGroupArea a::after {
    content: "";
    display: inline-block;
    position: relative;
    width: 6px;
    height: 6px;
    z-index: 0;
    transition: 0.3s;
    position: absolute;
    top: 50%;
    right: 10px;
    border-top: #000 solid 2px;
    border-right: #000 solid 2px;
    border-bottom: none;
    transform: translateY(-50%) rotate(45deg);
  }
  #subGroupArea a.current::after {
    border-top: #fff solid 2px;
    border-right: #fff solid 2px;
    border-bottom: none;
  }
}
