@charset "utf-8";

/* 全体 */
.coord-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 15px;
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
}

/* タイトル */
.coord-title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #333;
  display: inline-block;
  padding-bottom: 5px;
}

.coord-name-title2 {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

/* グリッド */
.coord-items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* カード */
.coord-item {
  width: calc(50% - 8px); /* スマホ2列 */
  text-align: center;
  box-sizing: border-box;
}

.coord-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* テキスト */
.coord-name {
  font-size: 0.95rem;
  margin-top: 8px;
  color: #333;
}

/* PC：3列 */
@media screen and (min-width: 768px) {

  .coord-item {
    width: calc(33.333% - 10px);
  }

  .coord-title {
    font-size: 2rem;
  }
}