@charset "UTF-8";
/*home.php*/
/*category.php*/
/*archive.php*/
.post-link {
    display: block; /* ブロック要素に変換 */
    text-decoration: none; /* 下線を消す */
    color: inherit; /* 文字色を継承する */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* ホバー時のエフェクト */
    margin:  0 0 20px 0;
}
.post-link:hover {
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-decoration: none;
}
.post-2 {
    background-color: #ffffff; 
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding:5px 5px 20px 5px;
}
.post-2 .post-header h2  {
    font-size: 1.35rem;
    color: #333;
    text-decoration: none;
    border-left: 8px solid #0084c0;
    padding-left: 16px;
    line-height: 1.2;
    margin-bottom: 10px;
}
@media screen and (max-width: 400px) {
    .post-2 .post-header h2{
        font-size: 1.3rem;
    }
}
.post-2 .post-header h2 a:hover {
    text-decoration: underline;
}
.post-2 .post-header  {
    font-size: 0.8rem;
    color: #666;
    /*margin-top: 5px;*/
}
/* アイキャッチ画像と本文を横並びに */
.post-2 .post-body {
    display: flex;
    align-items: flex-start; /* 上揃え */
    column-gap: 20px; /* 画像と本文の間隔 */
}
/* アイキャッチ画像のスタイリング */
.post-2 .article-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/*抜粋*/
.post-2 .post-content {
    flex: 1; /* 本文を残りの幅いっぱいに拡大 */
    min-width: 0;
}
.post-2 .post-content .post-excerpt p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}
/*公開日*/
.post-meta{
    color: #666666;
    font-size: 14px;
    margin-bottom: 10px;
    display:flex;
    gap:10px;
}
/*ページ送り*/
.pagination {
    margin: 20px 0;
    text-align: center;
}
.pagination a,
.pagination span {
    min-width: 30px;
    margin: 0 5px;
    text-decoration: none;
    color: #0073aa;
}
.pagination a:hover {
    text-decoration: underline;
}
.pagination .current,
.page-numbers .current
{
    color:#333;
    min-width: 30px;
    margin: 0 5px;
}

.post-category {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.post-category .cat-name {
  display: inline-block;
  padding: 2px 5px;
  border-radius: 9999px;
  background-color: #f4f4f4;
  font-size: 0.7em;
  color: #333;
  white-space: nowrap;
  max-width: 100px; /* 横長対策 */
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 月は通常非表示 */
.archive-month-list {
    display: none;
    margin-left: 1em;
}

/* 年をホバーしたら月を表示 */
.archive-year-item:hover .archive-month-list {
    display: block;
}

/* 見た目調整 */
.archive-year-item > a {
    font-weight: bold;
    display: inline-block;
}

.archive-month-list li {
    font-size: 0.9em;
}

