@charset "utf-8";
/* CSS Document */

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  background: #f9f9f9;
  color: #333;
}

/* 中央寄せ用ラッパー */
.content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2em 1em;
}

/* タイトル */
h1 {
  font-size: 2em;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.3em;
  margin-bottom: 1em;
}

/* 作品紹介ブロック */
.feature-item {
  background: #fff;
  padding: 1.5em;
  margin-bottom: 2em;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.feature-item img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 1em;
}
.feature-item .comment {
  font-size: 1em;
  background: #f6f9fc;
  border-left: 4px solid #007bff;
  padding: 1em;
  border-radius: 5px;
  line-height: 1.7;
}

/* サムネイル一覧 */
.thumb-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 1em;
}
.thumb-grid a img {
  width: 100px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.thumb-grid a:hover img {
  transform: scale(1.05);
}

/* 締めの見出し（まとめ） */
h2 {
  font-size: 1.4em;
  margin-top: 2em;
  border-left: 5px solid #007bff;
  padding-left: 0.5em;
  color: #007bff;
  background: linear-gradient(to right, #eaf4ff, #ffffff);
  border-radius: 4px;
}

/* スマホ調整 */
@media (max-width: 480px) {
  .thumb-grid a img {
    width: 80px;
  }
}

/* CTAボタン */
.call-to-action {
  display: inline-block;
  background: linear-gradient(90deg, #f857a6, #ff5858);
  color: white;
  font-weight: bold;
  padding: 0.8em 1.5em;
  border-radius: 30px;
  text-align: center;
  font-size: 1.1em;
  box-shadow: 0 4px 12px rgba(248, 87, 166, 0.3);
  margin: 2em auto 1em;
  cursor: pointer;
  transition: all 0.2s ease;
}
.call-to-action:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(248, 87, 166, 0.5);
}
