/* 基本スタイル */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.post.news {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.entry-header {
    margin-bottom: 30px;
    text-align: center;
}

.entry-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.entry-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content a {
    color: #3498db;
    text-decoration: none;
}

.entry-content a:hover {
    text-decoration: underline;
}

.page-links {
    margin: 20px 0;
    font-size: 0.9rem;
}

.entry-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #777;
}

.tags-links a {
    display: inline-block;
    margin-right: 5px;
    padding: 5px 10px;
    background-color: #3498db;
    color: #fff;
    border-radius: 3px;
    text-decoration: none;
}

.tags-links a:hover {
    background-color: #2980b9;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .post.news {
        margin: 20px;
        padding: 15px;
    }

    .entry-title {
        font-size: 2rem;
    }

    .entry-content {
        font-size: 1rem;
    }
}

/* 新規作成バージョン */
/* タクソノミー表示エリア全体のスタイル */
.taxonomy-display {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: 0;
  }
  
  /* 共通タクソノミーアイテムスタイル */
  .taxonomy-links a {
    display: inline-block;
    padding: 0.35em 0.9em;
    border-radius: 16px;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
  }
  
  /* メンバー限定タグ（ピンク系） */
  .taxonomy-links.member-terms a {
    background: rgba(194, 24, 91, 0.1);
    color: #c2185b;
    border: 1px solid rgba(194, 24, 91, 0.2);
  }
  
  .taxonomy-links.member-terms a:hover {
    background: rgba(194, 24, 91, 0.2);
    transform: translateY(-1.5px);
    box-shadow: 0 2px 8px rgba(194, 24, 91, 0.15);
  }
  
  /* 製品タグ（青系） */
  .taxonomy-links.product-terms a {
    background: rgba(25, 118, 210, 0.1);
    color: #1976d2;
    border: 1px solid rgba(25, 118, 210, 0.2);
  }
  
  .taxonomy-links.product-terms a:hover {
    background: rgba(25, 118, 210, 0.2);
    transform: translateY(-1.5px);
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.15);
  }
  
  /* 投稿日スタイル */
  .entry-meta .posted-on {
    display: block;
    color: #666;
    font-size: 0.9em;
    margin-top: 10px;
  }
  
  /* タクソノミーラベルスタイル */
  .taxonomy-item .taxonomy-label {
    display: block;
    color: #444;
    font-weight: 600;
    margin-bottom: 5px;
  }