/* archive 共通 */
.archive-main {
  padding: 60px 20px;
  font-family: "Noto Sans JP", sans-serif;
}

.archive-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.archive-header {
  margin-bottom: 40px;
}

.archive-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #333;
}

.archive-description {
  font-size: 14px;
  color: #555;
}

/* 一覧レイアウト */
.archive-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* カード1件分 */
.archive-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* サムネイル：高さ 40vh */
.archive-thumb {
  display: block;
  width: 100%;
  height: 40vh;
  overflow: hidden;
}

.archive-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.archive-thumb--noimage {
  width: 100%;
  height: 100%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

/* テキスト部分 */
.archive-content {
  padding: 20px 22px 24px;
}

.archive-item-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.archive-item-title a {
  color: #111;
  text-decoration: none;
}

.archive-item-title a:hover {
  text-decoration: underline;
}

.archive-item-detail {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 14px;
}

.archive-item-game {
  font-size: 13px;
  color: #0b7a3b;
  font-weight: 600;
}

/* ページネーション */
.archive-pagination {
  margin-top: 40px;
  text-align: center;
}

.archive-pagination .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
}

.archive-pagination .page-numbers.current {
  background: #0b7a3b;
  color: #fff;
}

/* レスポンシブ微調整 */
@media (max-width: 600px) {
  .archive-title {
    font-size: 26px;
  }
  .archive-main {
    padding-top: 40px;
  }
}

/* コメントタイトル非表示 */
.comments-title,
.comment-reply-title {
  display: none;
}

/* 余計なメタ情報（投稿者 / 日付）を非表示 */
.comment-metadata,
.comment-author .says {
  display: none !important;
}
/* コメントリスト全体 */
.comment-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

/* コメント1件 */
.comment {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 26px;
}

/* コメント本文 */
.comment-content {
  font-size: 16px;
  line-height: 1.8;
}

/* 返信リンク */
.reply a {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  color: #0b7a3b;
  background: #e9ffe9;
  padding: 7px 14px;
  border-radius: 20px;
  transition: .25s;
}
.reply a:hover {
  background: #c9f7c9;
}
#respond {
  margin-top: 50px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  margin-bottom: 14px;
}

.comment-form input[type="submit"],.comment-reply-link {
  background: #0b7a3b;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 26px;
  font-size: 16px;
  cursor: pointer;
  transition: .25s;
}
.comment-form input[type="submit"]:hover {
  background: #095e30;
}
/* コメント冒頭の「名前・リンク・アバター・日付」非表示 */
.comment-author,
.comment-author a,
.comment-author img,
.comment-metadata,
.comment-metadata a {
  display: none !important;
}

/* コメントカード内の余白調整 */
.comment {
  padding-top: 26px;
}

.comment-content {
    font-size: 16px;
    line-height: 1.8;
    display: flex;
    justify-content: space-between;
}
.comment-content img {
}
.comment-content p{
    margin-left: 50px;
    position: relative;
}
.comment-content p::before{
    width: 40px;
    height: 40px;
    border-radius: 50rem;
    position: absolute;
    left: -50px;
    content: "";
    background-image: url("/wp-content/uploads/2025/11/profile-icon.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}