/* コラム記事全体の囲みとシャドウ */
.single-column .blog-contents article {
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 40px 32px 32px 32px;
    margin-bottom: 32px;
  }
  
  /* タイトル */
  .single-column .blog-contents h1[itemprop="headline"] {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 16px;
  }
  
  /* 日付・カテゴリ・タグ */
  .single-column .component-2.ttl_text {
    margin-bottom: 24px;
    color: #888;
    font-size: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }
  .single-column .component-2 .published_at {
    color: #007399;
    font-weight: bold;
    font-size: 1.1rem;
  }
  .single-column .component-2 .tag {
    display: inline-block;
    color: var(--fo-tag-text-color);
    border: 1px solid var(--fo-tag-border-color, var(--fo-tag-background-color));
    padding: 5px 15px;
    margin: 5px 10px 5px 0;
    font-size: 12px;
    text-decoration: none;
    background: var(--fo-tag-background-color);
  }
  .single-column .component-2 .tag:hover {
    background: #e0e0e0;
  }
  
  /* 本文 */
  .single-column .blog_content {
    font-size: 1.1rem;
    line-height: 2;
    color: #222;
    margin-bottom: 32px;
  }
  
  /* サイドバーのウィジェット */
  .single-column .side .widget {
    margin-bottom: 24px;
  }
  .single-column .side .widget h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 12px;
  }
  
  /* タグクラウド */
  .single-column .tag-cloud .tag {
    background: #f3f3f3;
    color: #555;
    border-radius: 20px;
    padding: 4px 14px;
    margin: 4px 6px 4px 0;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
  }
  .single-column .tag-cloud .tag:hover {
    background: #e0e0e0;
  }


  .theme-fo-base .wrapper .contents :is(section,section[data-designpart-id]) .inner .row .col .component.richtext.ttl_text {
    font-size: 12px;
    letter-spacing: 1.2px;
    line-height: 1rem;
    color: black;
  }
  
  /* 人気記事ランキング全体 */
  .side .blog-ranking .ranking-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 8px 8px 8px 0;
    gap: 12px;
    min-height: 60px;
  }

  /* 順位ナンバー */
  .side .blog-ranking .ranking-num {
    min-width: 32px;
    min-height: 32px;
    background: #2196f3;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
  }

  /* サムネイル */
  .side .blog-ranking .ranking-thumb img {
    width: 72px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
  }

  /* タイトル */
  .side .blog-ranking .ranking-title {
    font-size: 1rem;
    font-weight: 500;
    color: #222;
    line-height: 1.4;
    flex: 1;
    margin-left: 8px;
    word-break: break-word;
    display: flex;
    align-items: center;
  }
  .side .blog-ranking .ranking-title a {
    color: #222;
    text-decoration: none;
    display: block;
  }
  .side .blog-ranking .ranking-title a:hover {
    text-decoration: underline;
  }
  


  .blog-contents h2, .blog-contents h3, .blog-contents h4, .blog-contents h5, .blog-contents h6 {
    display: inline-block;
    background: none;
    border-top: none;
    border-bottom: 2px solid var(--fo-main-color) !important;
    border-left: none;
    padding: 0 0 3px 0 !important;
  }
  .blog-contents a {
    color: var(--fo-main-color);
  } 