@charset "UTF-8";

/* ----------------------------------------------------------
common
---------------------------------------------------------- */
html {
  font-size: 62.5%;
  --clr-white: #fff;
  --clr-ttl-black: #333333;
  --clr-black: #000;
  --clr-red: #ed2446;
  --clr-glay: #f1f1f1;
  --clr-bg-glay: #bdbdbd;
  --clr-header-bg: rgba(0, 0, 0, 0.25);
  --clr-footer-bg: #222222;
}

.ttl_h2 {
    text-align: center;
}
.ttl_h2_eng {
    justify-content: center;
    gap: min(13px, calc(13 / 1440 * 100vw));
    padding-left: 0;
    margin-bottom: min(80px, calc(80 / 1440 * 100vw));
    color: var(--clr-red);
}
.ttl_h2_eng::before {
    position: relative;
    left: 0;
}
.ttl_lead {
    max-width: 768px;
    width: 100%;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin: 0 auto min(110px, calc(110 / 1440 * 100vw));
}
.product_list {
  display: flex;
  flex-wrap: wrap;
  gap: min(80px, calc(80 / 1440 * 100vw)) min(110px, calc(110 / 1440 * 100vw));
  margin-bottom: min(110px, calc(110 / 1440 * 100vw));
}
.product_item {
  display: flex;
  flex-direction: column;
  width: min(235px, calc(235 / 1440 * 100vw));
}
.product_item ._name {
  text-align: center;
  font-size: min(16px, calc(16 / 1440 * 100vw));
  color: var(--clr-ttl-black);
  line-height: 1.5;
  margin-bottom: min(10px, calc(10 / 1440 * 100vw));
}
.product_item ._btn {
  border: 1px solid var(--clr-black);
  margin-top: auto;
}
.product_item ._btn a {
  display: block;
  font-size: min(16px, calc(16 / 1440 * 100vw));
  color: var(--clr-ttl-black);
  line-height: 1.5;
  padding: min(10px, calc(10 / 1440 * 100vw)) 0;
  text-align: center;
}
@media screen and (max-width:767px) {
  .ttl_h2 {
    font-size: calc(24/375*100vw);
  }
  .ttl_h2_eng {
    justify-content: center;
    gap: calc(13 / 375 * 100vw);
    padding-left: 0;
    margin-bottom: calc(12 / 375 * 100vw);
    color: var(--clr-red);
    font-size: calc(16 / 375 * 100vw);
  }
  .ttl_h2_eng::before {
    position: relative;
    left: 0;
  }
  .product_list {
    gap: calc(50 / 375 * 100vw) calc(16 / 375 * 100vw);
    margin-bottom: calc(80 / 375 * 100vw);
  }
  .product_item {
    width: calc(159 / 375 * 100vw);
  }
  .product_item ._name {
    font-size: calc(12 / 375 * 100vw);
  }
  .product_item ._btn a {
    font-size: calc(10 / 375 * 100vw);
  }
}