.c-products__introduce {
}
.c-products__heading {
  font-size: 20px;
  border: none;
  text-align: center;
  padding: 0 !important;
}

.c-products__heading::before {
  display: none !important;
}

.c-products__laed {
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
}

.c-products__slider {
  margin-top: 24px;
}

.c-products__slider-item {
  color: #000;
  display: block;
  max-width: 203px;
}

.c-products__item-image {
  width: 203px;
  height: 158px;
  object-fit: contain;
  object-position: center center;
  border-radius: 5px;
}

.c-products__item-title {
  font-size: 14px;
  margin-top: 5px;
  color: #000;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.c-products__category {
  margin-top: 60px;
}

.c-products__category-container {
  margin-top: 30px;
  max-width: 948px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 30px;
  @media screen and (max-width: 600px) {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
  }
}

.c-products__category-button {
  display: flex;
  width: 100%;
  max-width: 350px;
  min-height: 80px;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 600;
  /* background-color: #d9d9d9; */
  color: #352c2a;
  position: relative;
  background-color: none;
  @media screen and (max-width: 600px) {
    font-size: 15px;
    min-height: 70px;
  }
  &::after,
  &::before {
    content: "";
    display: block;
    position: absolute;
    width: 30%;
    height: 40%;
    border: 2px solid;
    transition: all 0.6s ease;
    border-radius: 2px;
  }

  &::after {
    bottom: 3px;
    right: 3px;
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: #352c2a;
    border-right-color: #352c2a;
  }

  &::before {
    top: 3px;
    left: 3px;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-top-color: #352c2a;
    border-left-color: #352c2a;
  }

  &:hover::after,
  &:hover::before {
    width: 100%;
    height: 100%;
  }

  &.is-sidebar {
    min-height: 50px;
  }
  &.is-current {
    background-color: #352c2a;
    color: #fff;
    pointer-events: none;
    cursor: default;
    &::after,
    &::before {
      display: none;
    }
  }
}

.c-products__sales-site {
  margin-top: 60px;
}

.c-products__sales-site__container {
  display: flex;
  /* grid-template-columns: repeat(3, 1fr); */
  justify-content: center;
  gap: 24px;
  max-width: 897px;
  margin-inline: auto;
  @media screen and (max-width: 600px) {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    gap: 12px;
  }
  &:only-child {
    /* 3カラムの場合、2列目（中央カラム）に配置 */
    grid-column: 2 / span 1;
  }
}

.c-products__link {
  border-radius: 5px;
  width: 100%;
  max-width: 283px;
  min-height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  &.is-amazon {
    color: #352c2a;
    background-color: #d5be7d;
    border: 1px solid #d5be7d;
  }
  &.is-yahoo {
    background: #fff;
    color: #ee0000;
    border: 1px solid #ee0000;
  }
  &.is-rakuten {
    background-color: #bb0000;
    border: 1px solid #bb0000;
    color: #fff;
  }
  &:hover {
    opacity: 0.8;
  }
}

.c-products__sales-site__note {
  text-align: center;
  margin-top: 24px;
}

.c-products__lists {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
  @media screen and (max-width: 550px) {
    grid-template-columns: repeat(2, 1fr);
  }
}

[class*="page-numbers"].current,
[class*="page-numbers"]:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}
.c-products__sidebar {
  display: grid;
  gap: 16px;
}
.c-products__sidebar__title {
  font-size: 18px;
  margin-bottom: 20px;
}

.c-products__lists__title {
  font-size: 20px;
  margin-bottom: 20px;
}

.p-mainVisual__slideTitle {
  font-size: 6vw;
  text-shadow: 2px 2px 2px #000;
}

@media (min-width: 600px) {
  .p-mainVisual__slideTitle {
      font-size: 40px;
      text-shadow: 4px 4px 4px #000;
  }
}