/* =========================
   RESET / COMMON
========================= */

body {
  margin: 0;
  color: #20201C;
  background: #F0F0E9;
  font-family: "Noto Sans JP", sans-serif;
}

.magazine {
  width: 100%;
  overflow: hidden;
}

img {
  max-width: 100%;
}


/* =========================
   FV
========================= */

.fv {
  width: 100%;
  margin: 0 auto;
}

.fv picture {
  display: block;
}

.fv img {
  display: block;
  width: 100%;
  height: auto;
}


/* =========================
   INTRO
========================= */

.intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 20px 160px;
  text-align: center;
}

.intro-label {
  margin: 0 0 30px;

  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
}

.intro-text {
  margin: 0;

  font-size: 14px;
  line-height: 2.2;
  letter-spacing: .04em;
}


/* =========================
   CATEGORY
========================= */

.category {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.category-dark {
  max-width: none;
  padding-left: max(40px, calc((100% - 1120px) / 2));
  padding-right: max(40px, calc((100% - 1120px) / 2));

  background: #D0D0C2;
}

.category-last {
  padding-bottom: 180px;
}


/* =========================
   CATEGORY HEAD
========================= */

.category-head {
  display: grid;
  grid-template-columns: 80px 1fr;

  align-items: end;

  margin-bottom: 70px;
}

.category-number {
  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
}

.category-head h2 {
  margin: 0;

  font-family: "Bodoni Moda", serif;
  font-size: clamp(50px, 6vw, 88px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.04em;
}


/* =========================
   PRODUCT LOOK
========================= */

.product-look {
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;

  margin-bottom: 120px;
}

.reverse-product {
  grid-template-columns: 42% 58%;
}


/* =========================
   PRODUCT IMAGE
========================= */

.product-image {
  width: 100%;
}

.product-image img {
  display: block;

  width: 100%;
  aspect-ratio: 4 / 5;

  object-fit: cover;
}


/* =========================
   PRODUCT INFO
========================= */

.product-info {
  padding: 70px;
}

.item-number {
  margin: 0 0 22px;

  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  letter-spacing: .16em;
}

.product-info h3 {
  margin: 0 0 30px;

  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.item-description {
  max-width: 380px;
  margin: 0;

  font-size: 13px;
  line-height: 2;
  letter-spacing: .03em;
}


/* =========================
   CREDIT
========================= */

.credit {
  display: flex;
  align-items: center;
  gap: 20px;

  margin-top: 45px;
}

.credit p {
  margin: 0;

  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  letter-spacing: .04em;
}

.credit a {
  display: inline-block;

  padding: 7px 16px;

  border: 1px solid #111;

  color: #111;
  text-decoration: none;

  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  letter-spacing: .12em;

  transition: .3s ease;
}

.credit a:hover {
  background: #111;
  color: #fff;
}


/* =========================
   SUB IMAGES
========================= */

.sub-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;

  width: 82%;
  margin: 0 auto 120px;
}

.sub-images img {
  display: block;

  width: 100%;
  aspect-ratio: 3 / 4;

  object-fit: cover;
}


/* =========================
   ALL ITEMS
========================= */

.all-items {
  padding: 0 20px 140px;

  text-align: center;
}

.all-items a {
  display: inline-block;

  padding: 18px 70px;

  border: 1px solid #111;

  color: #111;
  text-decoration: none;

  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  letter-spacing: .15em;

  transition: .3s ease;
}

.all-items a:hover {
  background: #111;
  color: #fff;
}


/* =========================
   FADE
========================= */

.fade {
  opacity: 0;
  transform: translateY(25px);

  transition:
    opacity 1s ease,
    transform 1s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

.delay {
  transition-delay: .25s;
}


/* =========================
   SP
========================= */

@media screen and (max-width: 768px) {


  /* =========================
     FV
  ========================= */

  .fv img {
    width: 100%;
    height: auto;
  }


  /* =========================
     INTRO
  ========================= */

  .intro {
    padding: 80px 24px 100px;
  }

  .intro-label {
    margin-bottom: 25px;
    font-size: 9px;
  }

  .intro-text {
    font-size: 13px;
    line-height: 2;
  }


  /* =========================
     CATEGORY
  ========================= */

  .category,
  .category-dark {
    padding: 90px 20px;
  }

  .category-last {
    padding-bottom: 120px;
  }


  /* =========================
     CATEGORY HEAD
  ========================= */

  .category-head {
    display: block;

    margin-bottom: 45px;
  }

  .category-number {
    margin-bottom: 20px;
  }

  .category-head h2 {
    font-size: 56px;
  }


  /* =========================
     PRODUCT LOOK
  ========================= */

  .product-look,
  .reverse-product {
    display: block;

    margin-bottom: 80px;
  }


  /* =========================
     PRODUCT IMAGE
  ========================= */

  .product-image img {
    aspect-ratio: 3 / 4;
  }


  /* =========================
     PRODUCT INFO
  ========================= */

  .product-info {
    padding: 45px 10px 0;
    margin-bottom: 70px;
  }

  .item-number {
    margin-bottom: 18px;
  }

  .product-info h3 {
    font-size: 23px;
    margin-bottom: 25px;
  }

  .item-description {
    font-size: 12px;
    line-height: 2;
  }


  /* =========================
     CREDIT
  ========================= */

  .credit {
    margin-top: 30px;
  }


  /* =========================
     SUB IMAGES
  ========================= */

  .sub-images {
    width: 100%;
    gap: 10px;

    margin-bottom: 80px;
  }


  /* =========================
     ALL ITEMS
  ========================= */

  .all-items {
    padding-bottom: 80px;
  }

  .all-items a {
    padding: 16px 50px;
  }

}