@charset "utf-8";


/*  l-lineup
--------------------------------------------------*/
.l-lineup {
  padding-block: 5rem 5.9375rem;
  border-radius: 20px;
  background: var(--white);
}
.lineup-container {
  margin-top: 3.75rem;
  padding-top: 3.75rem;
  border-top: solid 1px var(--border-base);
}
.lineup-contents + .lineup-contents {
  margin-top: 3.75rem;
  padding-top: 3.75rem;
  border-top: solid 1px var(--border-base);
}
.lineup-contents__list {
  position: relative;
  margin-top: 3.75rem;
}
.lineup-contents__list + .lineup-contents__list {
  margin-top: 3.75rem;
  padding-top: 3.75rem;
  border-top: solid 1px var(--border-base);
}
.lineup-contents__list__item {
  position: relative;
  width: 100%;
}
.lineup-contents__list__item + .lineup-contents__list__item {
  margin-top: 3.75rem;
  padding-top: 3.75rem;
  border-top: solid 1px var(--border-base);
}
.lineup-contents__list__item__photo {
  width: calc(642 / 1344 * 100%);
  border-radius: 12px;
  overflow: hidden;
}
.lineup-contents__list__item[data-status="new"] .lineup-contents__list__item__photo::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100 / 642 * 100%);
  aspect-ratio: 1 / 1;
  background: url(../img/icon_new.svg) no-repeat center center/cover;
  z-index: 1;
}
/* .lineup-contents__list__item[data-status="sold"] .lineup-contents__list__item__photo::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100 / 642 * 100%);
  aspect-ratio: 1 / 1;
  background: url(../img/icon_sold.svg) no-repeat center center/cover;
  z-index: 1;
} */
.lineup-contents__list__item__detail {
  width: calc(642 / 1344 * 100%);
}
.lineup-contents__list__item__detail__ttl {
  position: relative;
  font-size: clamp(1.25rem, 0.677rem + 1.1923vw, 1.75rem);
  line-height: 1.75;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: var(--base-color);
  margin-top: -.4em;
}
.lineup-contents__list__item__detail__desc {
  font-size: clamp(0.875rem, 0.8034rem + 0.149vw, 0.9375rem);
  line-height: 2.2;
  letter-spacing: 0.02em;
  margin-top: 1.25rem;
}
.lineup-contents__list__item__detail__info {
  margin-top: 2.1875rem;
  padding-top: 2.1875rem;
  border-top: solid 1px var(--border-base);
}
.lineup-contents__list__item__detail__info__further {
  gap: 1.25rem 0;
}
.lineup-contents__list__item__detail__info__further__desc {
  width: 100%;
  gap: 0.625rem;
  color: var(--base-color);
}
.lineup-contents__list__item__detail__info__further__desc span:nth-of-type(1) {
  display: block;
  width: 4.5rem;
  font-size: clamp(0.6875rem, 0.5442rem + 0.2981vw, 0.8125rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0.5rem 0 0.5625rem;
  background: #EFEFEF;
  border-radius: 4px;
}
.lineup-contents__list__item__detail__info__further__desc span:nth-of-type(2) {
  display: block;
  flex: 1;
  font-size: clamp(0.75rem, 0.5351rem + 0.4471vw, 0.9375rem);
  line-height: 1.75;
  letter-spacing: 0.02em;
  padding-top: .1em;
}
.lineup-contents__list__item__detail__info__btn {
  margin-top: 2.5rem;
  gap: 0.625rem 2.5rem;
}
.lineup-contents__list__item__detail__info__btn__item {
  max-width: 18.75rem;
  min-width: 13.75rem;
  width: auto;
  flex: 1;
}
@media screen and (max-width: 768px){
  .l-lineup {
    padding-block: 3.125rem 3.125rem;
  }
  .lineup-container {
    margin-top: 1.875rem;
    padding-top: 1.875rem;
  }
  .lineup-contents + .lineup-contents {
    margin-top: 1.875rem;
    padding-top: 1.875rem;
  }
  .lineup-contents__list {
    margin-top: 1.875rem;
  }
  .lineup-contents__list + .lineup-contents__list {
    margin-top: 1.875rem;
    padding-top: 1.875rem;
  }
  .lineup-contents__list__item + .lineup-contents__list__item {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }
  .lineup-contents__list__item__photo {
    width: 100%;
  }
  .lineup-contents__list__item[data-status="new"] .lineup-contents__list__item__photo::after {
    width: calc(50 / 352 * 100%);
  }
  .lineup-contents__list__item[data-status="sold"] .lineup-contents__list__item__photo::after {
    width: calc(50 / 352 * 100%);
  }
  .lineup-contents__list__item__detail {
    width: 100%;
    margin-top: 0.9375rem;
  }
  .lineup-contents__list__item__detail__ttl {
    font-size: clamp(1rem, 0rem + 5vw, 1.25rem);
    margin-top: 0;
  }
  .lineup-contents__list__item__detail__desc {
    font-size: clamp(0.6875rem, -0.0625rem + 3.75vw, 0.875rem);
    margin-top: 0.625rem;
  }
  .lineup-contents__list__item__detail__info {
    margin-top: 0.9375rem;
    padding-top: 1.25rem;
  }
  .lineup-contents__list__item__detail__info__further {
    gap: 0.625rem 0;
  }
  .lineup-contents__list__item__detail__info__further__desc span:nth-of-type(1) {
    width: 3.75rem;
    font-size: clamp(0.5625rem, 0.0625rem + 2.5vw, 0.6875rem);
    padding: 0.375rem 0 0.4375rem;
  }
  .lineup-contents__list__item__detail__info__further__desc span:nth-of-type(2) {
    font-size: clamp(0.625rem, 0.125rem + 2.5vw, 0.75rem);
    padding-top: .1em;
  }
  .lineup-contents__list__item__detail__info__btn {
    margin-top: 1.25rem;
    gap: 0.625rem 0;
  }
  .lineup-contents__list__item__detail__info__btn__item {
    max-width: none;
    min-width: none;
    width: 100%;
    flex: 100%;
  }
}





/*  l-history
--------------------------------------------------*/
.l-history {
  padding-block: 5rem 0;
}
.history-list {
  grid-template-columns: repeat(3,1fr);
  gap: clamp(0.625rem, -0.0913rem + 1.4903vw, 1.25rem);
  margin-top: 3.75rem;
}
.history-list__item {
  position: relative;
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}
.history-list__item__photo {
  width: 100%;
}
.history-list__item__detail {
  width: 100%;
  flex: 1;
  padding: clamp(1.0625rem, -0.2268rem + 2.6826vw, 2.1875rem) clamp(1.25rem, -0.1826rem + 2.9806vw, 2.5rem) clamp(1.25rem, -0.1826rem + 2.9806vw, 2.5rem);
}
.history-list__item__detail__point {
  font-size: clamp(0.625rem, 0.4817rem + 0.2981vw, 0.75rem);
  gap: 0.3125rem;
  margin-bottom: 0.9375rem;
}
.history-list__item__detail__point span {
  border-radius: 6px;
  font-size: clamp(0.625rem, 0.4817rem + 0.2981vw, 0.75rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--base-color);
  padding: 0.375rem 0.5rem 0.4375rem;
  background: #eeeeee;
}
.history-list__item__detail__ttl {
  font-size: clamp(1.125rem, 0.9817rem + 0.2981vw, 1.25rem);
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: var(--base-color);
}
.history-list__item__detail__desc {
  font-size: clamp(0.6875rem, 0.5442rem + 0.2981vw, 0.8125rem);
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin-top: 0.8125rem;
}
.history-list__item__detail__gooddesign {
  width: min(100%,13.4375rem);
  margin-inline: 0 auto;
  margin-top: 1.125rem;
}
.history-list__item__detail__icon {
  width: min(100%,12.6875rem);
  margin-inline: 0 auto;
  margin-top: 1.125rem;
}
.history-btn {
  margin-top: 5rem;
}
.history-btn__item {
  width: min(100%, 28.75rem);
}
@media screen and (max-width: 768px){
  .l-history {
    padding-block: 3.125rem 0;
  }
  .history-list {
    grid-template-columns: repeat(1,1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
  .history-list__item__detail {
    padding: clamp(1.125rem, 0.125rem + 5vw, 1.375rem) clamp(1.1875rem, -0.0625rem + 6.25vw, 1.5rem) clamp(1.1875rem, -0.0625rem + 6.25vw, 1.5rem);
  }
  .history-list__item__detail__point {
    font-size: clamp(0.5rem, 0rem + 2.5vw, 0.625rem);
    margin-bottom: 0.625rem;
  }
  .history-list__item__detail__point span {
    font-size: clamp(0.5rem, 0rem + 2.5vw, 0.625rem);
    padding: 0.375rem 0.5rem 0.4375rem;
  }
  .history-list__item__detail__ttl {
    font-size: clamp(0.875rem, -0.125rem + 5vw, 1.125rem);
  }
  .history-list__item__detail__desc {
    font-size: clamp(0.5625rem, 0.0625rem + 2.5vw, 0.6875rem);
    margin-top: 0.625rem;
  }
  .history-list__item__detail__gooddesign {
    margin-top: 0.75rem;
  }
  .history-list__item__detail__icon {
    margin-top: 0.75rem;
  }
  .history-btn {
    margin-top: 2.5rem;
  }
  .history-btn__item {
    width: 100%;
  }
}