@charset "UTF-8";
/* =========================================================
   collection.css  —  COLLECTION ページ専用スタイル
   ・カテゴリーカード / 商品リスト / デザイナーズ / パリコレクション
   ・トークン・共通クラス・ヘッダー/フッター等は style.css を参照
   ※ BRIDAL ページもカテゴリーカード（.collection-card /
     .product-list）を再利用するため、本ファイルを読み込みます
   ========================================================= */
/* =========================================================
   カテゴリーカード
   ========================================================= */
.collection-card {
    position:relative;
    padding: 40px 0 60px 60px;
}
.collection-card:before{
    content: "";
    display: block;
    background-color: var(--color-card);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 38.75%;
    z-index: 0;
}
.collection-card--right{
    padding: 40px 60px 60px 0;
}
.collection-card--right:before{
    left: 38.75%;
    right: 0;
}
.collection-card + .collection-card { margin-top: 80px; }
.collection-card--right { margin-left: auto; }
.collection-card--left  { margin-right: auto; }

.collection-card__head {
  position: relative;
  z-index: 2;
  gap: 40px;
  margin-right: calc(38.75% + 60px);
}
.collection-card__head .section-title { flex-shrink: 0; }
.collection-card--right .collection-card__head {
  margin-right: unset;
  margin-left: calc(38.75% + 60px);
}
.collection-card__desc {
  flex: 1;
  max-width: 620px;
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 14px;
  line-height: 2;
  letter-spacing: -.02em;
  color: var(--color-text);
  margin: 40px 0 0;
}

/* =========================================================
   商品リスト
   ========================================================= */
.product-list {
    position: relative;
    z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0 0;
}
.product-list__item {
  aspect-ratio: 1;
  /*
  background-color: #fff;
  box-shadow: 0 .4rem .4rem rgba(0, 0, 0, .25);
  */
  overflow: hidden;
}
.product-list__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   デザイナーズ
   ========================================================= */
.designers {
    margin: 80px 0 0;
}
.designers__wrap {
    position: relative;
    padding: 40px 0 60px 60px; 
}
.designers__wrap:before{
    content: "";
    display: block;
    background-color: var(--color-card);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 153px;
    right: 12.916%;
    z-index: 0;
}
.designers__title {
  z-index: 2;
  position: relative;
  margin-bottom: 40px;
  }
.designers__desc {
  max-width: 620px;
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 14px;
  line-height: 2;
  letter-spacing: -.02em;
  color: var(--color-text);
  z-index: 2;
  position: relative;
}
.designers__grid {
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  z-index: 2;
  position: relative;
}
.designer-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}
.designer-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.designer-card__logo { display: flex; align-items: center; gap: 4px; height: 50px; }
.designer-card__logo img { height: 100%; width: auto; }
.designer-card__logo--text img { height: 30px; }
.designer-card__name {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 16px;
  text-align: right;
  color: var(--color-text);
}
.designer-card__img {
  width: 100%;
  aspect-ratio: 49 / 28;
  margin-bottom: 24px;
  background-color: #e8e8e8;
  object-fit: cover;
}
.designer-card__bio {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 14px;
  line-height: 2;
  letter-spacing: -.02em;
  color: var(--color-text);
}

/* =========================================================
   パリコレクション
   ========================================================= */
.paris__wrap {
  display: grid;
  grid-template-columns: 51.666% 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 40px;
  padding: 52px 0 0;
  position: relative;
  z-index: 2;
}
.paris {
  position: relative;
}
.paris:before{
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 155px;
    bottom: 73px;
    top: 0;
    background-color: var(--color-card);
}
.paris__imgwrap{
  background-color: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  padding: 30px;
}
.paris__img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
.paris__body { order: -1; padding: 0 0 60px 58px; }
.paris__text {
  margin-top: 40px;
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: -.02em;
  color: var(--color-text);
}
.brands {
  padding-bottom: 120px;
}
.brand {
}

.brand__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.brand__logo {
  background-color: #fff;
  height: 100%;
}

.brand__logo img {
  width: 70%;
}
@media (max-width: 767px) {
}

/* =========================================================
   レスポンシブ（SP: 〜767px）
   ========================================================= */
@media (max-width: 767px) {
    .hero + *{
        padding: calc(30vw + 150px) 0 0;
    }
  /* カテゴリーカード */
  .collection-card { width: 100%; padding: 40px 25px}
  .collection-card + .collection-card { margin-top: 40px; }
  .collection-card__head,
  .collection-card--right .collection-card__head {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    margin-right: unset;
    margin-left: unset;
  }

.product-list{
    display: flex;
    gap: 20px;
    flex-wrap:wrap;
    justify-content: center;
}
.product-list__item{
    width: calc(50% - 10px);
}
.product-list__item:first-child{
    width: 80%;
}

.paris:before,
.designers__wrap:before,
.collection-card:before{
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
}
.paris,
.designers__wrap{
    padding: 40px 25px;
}
.paris__wrap{
    grid-template-columns: unset;
    grid-template-rows: 1fr auto;
    margin: 0;
    padding: 0;
}
  /* 商品リスト */
  /* SP: Swiper初期化後はgridをリセット */
  .product-list.swiper {
    display: block; /* SwiperがoverflowでSlideshowを制御するため */
    overflow: hidden;
  }

  /* wrapper はflexが必須 */
  .product-list.swiper .swiper-wrapper {
    display: flex;
  }

  .swiper-pagination {
    margin-top: 12px;
    text-align: center;
  }

  /* デザイナーズ */
  .designers__grid {
      grid-template-columns: 1fr;
      gap: 0px;
      box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    width: 100%;
  }
  .paris { grid-template-columns: 1fr; gap: 24px; }
  .paris__body { padding: 5px 40px 5px 0; }
    .paris,
    .designers__wrap{
        padding: 40px 25px;
        position: relative;
        margin-top: 40px;
    }
    .designer-card{
        box-shadow: none;
    }
    .paris__imgwrap{
        width: 100%;
    }
}

@media (max-width: 400px) {
    .hero + *{
        padding: calc(30vw + 200px) 0 0;
    }
}

@media (max-width: 374px) {
  .product-list { grid-template-columns: 1fr; }
}
