.product-index-page {
  color: #222;
}

.product-index-page .product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55em;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
}

.product-index-page .product-breadcrumb a {
  color: #a90000;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.product-index-page .product-page-heading {
  display: block;
  margin: 0 0 34px;
  padding: 0;
  color: #222;
  background: #fff;
}

.product-index-page .pageTitle {
  margin: 0 0 18px;
  color: #222;
  line-height: 1.45;
}

.product-index-page .product-page-heading p {
  margin: 0;
  padding: 18px 20px;
  color: #222;
  font-size: 16px;
  line-height: 1.9;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.product-index-page .product-section {
  margin: 0 0 42px;
}

.product-index-page .product-section h2.midashi {
  margin: 0 0 26px;
  color: #222;
  line-height: 1.45;
}

.product-index-page .product-section-intro {
  margin: 0 0 18px;
  color: #333;
  font-size: 15px;
  line-height: 1.8;
}

.product-index-page .product-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
}

.product-index-page .product-link-grid li {
  min-width: 0;
  margin: 0;
  list-style: none;
}

.product-index-page .product-link-grid a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 64px;
  padding: 14px 16px 14px 38px;
  color: #151515;
  line-height: 1.5;
  text-decoration: none;
  background: #fff;
  border: 2px solid #4c9ac0;
  border-radius: 5px;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

.product-index-page .product-link-grid a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  content: "";
  background: repeating-linear-gradient(-45deg, #b6e7ff, #b6e7ff 5px, #fff 5px, #fff 10px);
  border-radius: 3px 0 0 3px;
}

.product-index-page .product-link-grid a:hover,
.product-index-page .product-link-grid a:focus-visible {
  color: #151515;
  background: #fff9a8;
  outline: 3px solid rgba(76, 154, 192, 0.25);
  outline-offset: 2px;
}

.product-index-page .product-link-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.product-index-page .product-link-description {
  display: block;
  margin-top: 5px;
  color: #444;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}

.product-index-page .product-link-grid--primary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-index-page .product-link-grid--primary a {
  min-height: 124px;
  border-color: #c8161d;
}

.product-index-page .product-link-grid--primary a::before {
  background: repeating-linear-gradient(-45deg, #ffd1d1, #ffd1d1 5px, #fff 5px, #fff 10px);
}

.product-index-page .product-link-grid--primary a:hover,
.product-index-page .product-link-grid--primary a:focus-visible {
  outline-color: rgba(200, 22, 29, 0.25);
}

.product-index-page .product-link-grid--option a {
  border-color: #32a768;
}

.product-index-page .product-link-grid--option a::before {
  background: repeating-linear-gradient(-45deg, #94ffc6, #94ffc6 5px, #fff 5px, #fff 10px);
}

.product-index-page .product-link-grid--option a:hover,
.product-index-page .product-link-grid--option a:focus-visible {
  outline-color: rgba(50, 167, 104, 0.25);
}

@media (max-width: 1020px) {
  .product-index-page .product-link-grid--primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .product-index-page .product-breadcrumb {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .product-index-page .product-page-heading {
    margin-bottom: 28px;
  }

  .product-index-page .pageTitle {
    padding: 0.8rem 1rem;
    font-size: 24px;
  }

  .product-index-page .product-page-heading p {
    padding: 14px 15px;
    font-size: 15px;
    line-height: 1.8;
  }

  .product-index-page .product-section {
    margin-bottom: 34px;
  }

  .product-index-page .product-section h2.midashi {
    margin-bottom: 24px;
    font-size: 21px;
  }

  .product-index-page .product-link-grid,
  .product-index-page .product-link-grid--primary {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-index-page .product-link-grid a,
  .product-index-page .product-link-grid--primary a {
    min-height: 62px;
    padding: 13px 14px 13px 35px;
  }

  .product-index-page .product-link-name {
    font-size: 15px;
  }
}
