body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #f7f7f7;
  color: #333;
}

a {
  color: inherit;      /* 文字色を親要素に合わせる */
  text-decoration: none; /* 下線を消す */
}

.dela-gothic-one-regular {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 35px;
}

.Century-Gothic{
  font-family: "Century Gothic" ;
}

header {
  display: flex;
  justify-content: left;
  padding: 3px 30px;
  background: #fff;
  border-bottom: 2px solid #ccc;
}


h2 {
  margin: auto;
  text-align: center;
  font-family:"ヒラギノ角ゴ Pro W3", "Meiryo" ,sans-serif;
  font-size: 30px;
  
}


main {
  padding: 20px;
}

.comic-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ← ここが重要！ */
  gap: 100px;
  padding: 40px;
}

.comic-item {
  text-align: center;
}

.comic-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.comic-item img:hover {
  transform: scale(1.05);
}

.comic-item h2 {
  margin: 5px 5px 5px;
  font-size: 20px;
}

.comic-item p {
  margin: 0;
  font-size: 15px;
  color: #666;
}
