.grid-container-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contents-wrapper {
  width: 100%;
}

.news-image img {
  width: 100%;
  height: auto;
  display: block;
}

.intro-text {
  text-align: center;
  margin: 40px auto;
  line-height: 2;
}

.intro-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #000;
}

.intro-text h3 {
  font-size: 22px;
  margin-bottom: 30px;
}

.intro-text p {
  font-size: 16px;
  margin-bottom: 25px;
}

/* 商品一覧 */

.item_block {
  margin-top: 80px;
}

.item_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.item {
  width: calc(33.333% - 13.33px);
}

.item_image img {
  width: 100%;
  height: auto;
  display: block;
}

.color_block {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
}

.item_name {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.7;
}

.item_price {
  margin-top: 8px;
  font-size: 14px;
}

/* CTA */

.news_cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 100px 0;
}

.news_cta a {
  display: inline-block;
  background: #000;
  color: #fff !important;
  text-decoration: none !important;
  padding: 18px 60px;
  font-size: 16px;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease;
}

.news_cta a:hover {
  opacity: 0.8;
}

/* SP */

@media (max-width: 767px) {
  .intro-text {
    padding: 0 20px;
  }

  .intro-text h2 {
    font-size: 24px;
  }

  .intro-text h3 {
    font-size: 18px;
  }

  .intro-text p {
    font-size: 14px;
  }

  .item {
    width: 100%;
  }

  .news_cta {
    margin: 60px 0;
  }

  .news_cta a {
    width: 90%;
    text-align: center;
    padding: 16px 20px;
    font-size: 14px;
  }
}
