@charset "UTF-8";

.ac-box {
  background-color: #f5f9f5;
  padding: 20px;
  border-radius: 8px;
  margin: 30px auto;
  max-width: 1000px;
}

/* 画像グリッド表示 */
.img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.img-grid div img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.img-grid div p {
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
  color: #333;
}

/* アコーディオン中身（初期は非表示） */
.ac-small {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s ease;
}

/* アコーディオン展開時 */
#ac-1:checked ~ .ac-small {
  max-height: 1000px;
  opacity: 1;
  margin-top: 20px;
}

/* 続きを見るボタン */
.accordion-btn {
  display: block;
  text-align: center;
  margin: 20px auto 0;
  padding: 15px 30px;
  background-color: #f5c84c;
  color: #333;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  max-width: 200px;
  transition: all 0.3s ease;
}

/* ホバー時 */
.accordion-btn:hover {
  background-color: #f0b500;
}
