@charset "utf-8";

/* BrandArea
----------------------------------------- */
.brandArea {
  background-image: url("/jp/img/bg_brand_sp.png");
}

@media screen and (min-width:768px) {
  .brandArea {
    background-image: url("/jp/img/bg_brand_pc.png");
  }
}

/* Products
----------------------------------------- */
.products {
  padding: 40px 0 51px;
  background: url("/en/img/bg_products_sp.png") no-repeat center / cover;
}

@media screen and (min-width:768px) {
  .products {
    padding: 183px 0 120px;
    background-image: url("/en/img/bg_products_pc.png");
  }
}

.productsBtnArea {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-top: 26px;
}

@media screen and (min-width:768px) {
  .productsBtnArea {
    flex-direction: row;
    row-gap: 40px;
    column-gap: 24px;
    margin-top: 77px;
  }
}

@media screen and (min-width:768px) {
  .productsBtnArea_item {
    width: calc(50% - 12px);
  }
}

@media screen and (min-width:1024px) {
  .productsBtnArea_item {
    width: calc(33.3% - 48px / 3);
  }
}



