@charset "utf-8";

.kv-image img {
  width: 80%;
  height: auto;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5%;
}
.geme_ttl {
  position: relative;
  padding: 0.3em;
  background: #153366;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  color: rgb(255, 255, 255);
  letter-spacing: 0.2em;
  border-radius: 8px;

}

.geme_ttl:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 10%;
  border: 15px solid transparent;
  border-top: 15px solid #153366;
  width: 0;
  height: 0;
}
h2 {
  text-align: center;
  margin-bottom: 1%;
  font-size: 3em;
  color: var(--main-color);
}




/*一覧 全体幅 */
.container {
  width: 70%;
  margin: 0 auto;
}

/* 商品一覧 */
.product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* カード */
.product-card {
  display: block;
  text-decoration: none;
  color: #333;
  border: 1px solid #e5e5e5;
  padding: 16px;
  transition: 0.3s;
    border: solid 5px #eeede1;/*線*/
  border-radius: 10px;/*角の丸み*/
  margin-top: 5%;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* 画像 */
.product-card img {
  width: 100%;
  height: auto;
  display: block;
    border-radius: 10px;/*角の丸み*/

}

/* 商品名 */
.product-name {
  margin: 12px 0 8px;
  font-size: 16px;
}

/* 説明文（40文字省略） */
.product-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;

  display: -webkit-box;
  -webkit-line-clamp: 2; /* 2行で省略 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ボタン */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #153366;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
  width: 40%;
  text-align: center;
}

@media screen and (max-width: 768px) {
 h2 {
  text-align: center;
  margin-bottom: 1%;
  font-size: 1.5em;
  color: var(--main-color);
}

/* 一覧 */
  .container {
    width: 90%;
  }

  .product-list {
    grid-template-columns: 1fr;
  }
}