/* =========================
   ブログ用スタイル
   既存トーン（#35a8a5 ベースカラー、白背景＋柔らかい余白）に合わせる
   ========================= */

/* タイトルブロック（contents-bg-base-title 派生） */
.blog-title {
    padding: 50px 20px;
}
.blog-title .wrapper {
    max-width: 820px;
}
.blog-title .blog-entry-meta,
.blog-title .blog-entry-cats {
    justify-content: center;
}
.blog-breadcrumb {
    font-size: 13px;
    margin-bottom: 16px;
    opacity: 0.85;
}
.blog-breadcrumb a {
    color: #fff;
    text-decoration: underline;
}
.blog-title .fv-jp {
    display: block;
    margin-bottom: 16px;
}
.blog-entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    opacity: 0.95;
    margin-bottom: 16px;
}
.blog-entry-meta i {
    margin-right: 4px;
}
.blog-entry-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.blog-cat-chip {
    display: inline-block;
    background: #fff;
    color: #35a8a5;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}
.blog-cat-chip:hover { opacity: 0.8; }

/* 本文背景 */
.blog-body-bg {
    text-align: left;
    padding: 40px 20px 60px;
}

/* 個別記事の白いカード（背景＋ドロップシャドウ・PC のみ） */
.single .blog-layout { background: #f5f7f8; }
.blog-article {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 24px 24px;
    margin-bottom: 32px;
}
@media (min-width: 768px) {
    .blog-article { padding: 40px 72px; }
}
/* スマホ：カード装飾を全部解除 */
@media (max-width: 767px) {
    .single .blog-layout { background: #fff; }
    .blog-article {
        background: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin-bottom: 24px;
    }
    .blog-toc-head { justify-content: center; }
}

/* 個別記事ヘッダー（メイン上部） */
.blog-article-header {
    margin-bottom: 24px;
}
.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #666;
    margin-bottom: 14px;
}
.blog-article-meta time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}
.blog-article-meta i {
    color: #35a8a5;
}
.blog-article-meta .blog-card-cat {
    color: #fff;
    text-decoration: none;
}
.blog-article-meta .blog-card-cat:hover {
    opacity: 0.85;
}
.blog-article-title {
    font-size: 2.5rem;
    line-height: 1.5;
    font-weight: 700;
    color: #222;
    margin: 0;
    letter-spacing: 0.02em;
}
@media (min-width: 768px) {
    .blog-article-title { font-size: 2.8rem; }
}

/* アイキャッチ */
.blog-thumbnail {
    margin-bottom: 32px;
}
.blog-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 目次クリックでヘッダーを隠す */
body.anchor-hide-header .header_menu {
    transform: translateY(-100%);
}

/* =========================
   目次（サイドバー版・コンパクト）
   ========================= */
.blog-widget-toc {
    position: sticky;
    top: 110px;
}
.blog-toc-side-list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: blog-toc-side;
    font-size: 13px;
    line-height: 1.6;
}
.blog-toc-side-list > li {
    position: relative;
    counter-increment: blog-toc-side;
    padding: 6px 0 6px 26px;
    border-bottom: 1px dashed #e6efee;
}
.blog-toc-side-list > li:last-child { border-bottom: none; }
.blog-toc-side-list > li::before {
    content: counter(blog-toc-side, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 7px;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #35a8a5;
}
.blog-toc-side-list a {
    color: #333;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}
.blog-toc-side-list a:hover { color: #35a8a5; }

/* H3 サブ項目（薄く） */
.blog-toc-side-list ol {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
}
.blog-toc-side-list ol li {
    position: relative;
    padding: 3px 0 3px 12px;
    font-size: 12px;
    color: #666;
}
.blog-toc-side-list ol li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 1px;
    background: #b9d8d6;
}
.blog-toc-side-list ol a {
    color: #666;
    font-size: 12px;
}

/* =========================
   目次（縦タイムライン型）
   ========================= */
.blog-toc {
    background: #fff;
    border: 1px solid #eaf2f1;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}
@media (min-width: 768px) {
    .blog-toc { padding: 28px 36px 32px; }
}

/* 見出し */
.blog-toc-head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 1px dashed #d6e8e7;
}
.blog-toc-en {
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #35a8a5;
}
.blog-toc-jp {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

/* リスト本体 */
.blog-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: blog-toc;
}

/* 各 H2 項目 */
.blog-toc-list > li {
    position: relative;
    padding: 4px 0 18px 38px;
    counter-increment: blog-toc;
}
.blog-toc-list > li:last-child { padding-bottom: 0; }

/* 番号丸（塗りつぶし） */
.blog-toc-list > li::before {
    content: counter(blog-toc, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #35a8a5;
    color: #fff;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: transform 0.2s, background 0.2s;
}

/* 最後の丸は白抜き */
.blog-toc-list > li:last-child::before {
    background: #fff;
    border: 2px solid #35a8a5;
    color: #35a8a5;
}

/* 縦線（次の項目へつなぐ） */
.blog-toc-list > li::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 26px;
    bottom: 0;
    width: 2px;
    background: #cdeae8;
}
.blog-toc-list > li:last-child::after { display: none; }

/* リンク */
.blog-toc-list a {
    color: #222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    display: inline-block;
    transition: color 0.2s;
}
.blog-toc-list a:hover {
    color: #35a8a5;
}
.blog-toc-list > li:hover::before {
    transform: scale(1.08);
}

/* H3 サブ項目 */
.blog-toc-list ol {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}
.blog-toc-list ol li {
    position: relative;
    padding: 4px 0 4px 16px;
    font-size: 13px;
    color: #555;
}
.blog-toc-list ol li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 1px;
    background: #b9d8d6;
}
.blog-toc-list ol a {
    font-size: 13px;
    font-weight: 500;
    color: #555;
}
.blog-toc-list ol a:hover {
    color: #35a8a5;
}

/* 本文 */
.blog-entry-content {
    font-size: 1.6rem;
    line-height: 1.95;
    color: #333;
}
.blog-entry-content > * + * { margin-top: 1.2em; }
.blog-entry-content h2 {
    position: relative;
    font-size: 2.8rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 2.4em 0 1.2em;
    padding: 1rem 0.5rem 1rem 60px;
    color: #35a8a5;
    border-bottom: 3px solid #35a8a5;
    scroll-margin-top: 110px;
}
/* 左端の前面アイコン（H2 からはみ出してOK） */
.blog-entry-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 40px;
    height: 56px;
    background-image: url("../img/h2-sp-icon2.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index: 2;
    transform-origin: center center;
    animation: h2IconShake 2.5s ease-in-out infinite;
}
@keyframes h2IconShake {
    0%, 25%, 100% { transform: rotate(0deg) translateX(0); }
    3% { transform: rotate(-6deg) translateX(-1px); }
    7% { transform: rotate(6deg) translateX(1px); }
    11% { transform: rotate(-6deg) translateX(-1px); }
    15% { transform: rotate(5deg) translateX(1px); }
    19% { transform: rotate(-4deg) translateX(0); }
    23% { transform: rotate(3deg) translateX(0); }
}
/* 下向き三角（凹み付き吹き出しポインター・SVGファイル） */
.blog-entry-content h2::after {
    position: absolute;
    content: '';
    left: 55px;
    bottom: -14px;
    width: 24px;
    height: 18px;
    background-image: url("../img/h2-arrow.svg");
    background-repeat: no-repeat;
    background-size: 24px 18px;
}
.blog-entry-content h3 {
    font-size: 2.1rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 2em 0 0.6em;
    padding: 0.5em 14px;
    background: #f0f9f8;
    border-left: 4px solid #35a8a5;
    scroll-margin-top: 110px;
}
.blog-entry-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.6em 0 0.5em;
    color: #35a8a5;
}
.blog-entry-content p { margin: 1em 0; }
.blog-entry-content a {
    color: #35a8a5;
    text-decoration: underline;
}
.blog-entry-content ul,
.blog-entry-content ol {
    padding-left: 1.4em;
    margin: 1em 0;
}
.blog-entry-content li { margin: 0.4em 0; font-weight: 700; }

/* 順序なしリスト：チェックマーク付き */
.blog-entry-content ul {
    list-style: none;
    padding-left: 0;
}
.blog-entry-content ul li {
    position: relative;
    padding-left: 1.6em;
}
.blog-entry-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    color: #35a8a5;
    position: absolute;
    left: 0;
    top: 0.15em;
    font-size: 0.95em;
}

/* 順序ありリスト：ティールの丸番号付き */
.blog-entry-content ol {
    list-style: none;
    padding-left: 0;
    counter-reset: blog-ol;
}
.blog-entry-content ol li {
    position: relative;
    padding-left: 2.2em;
    counter-increment: blog-ol;
    min-height: 1.6em;
}
.blog-entry-content ol li::before {
    content: counter(blog-ol);
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background: #35a8a5;
    color: #fff;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.8em;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.blog-entry-content blockquote {
    border-left: 4px solid #cdeae8;
    background: #f9fdfc;
    padding: 16px 20px;
    margin: 1.4em 0;
    color: #555;
    font-style: italic;
}
.blog-entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
.blog-entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4em 0;
    font-size: 15px;
}
.blog-entry-content th,
.blog-entry-content td {
    border: 1px solid #e0e0e0;
    padding: 10px 14px;
}
.blog-entry-content th {
    background: #f5fbfa;
    font-weight: 700;
}
.blog-entry-content code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.9em;
}

/* タグ */
.blog-entry-tags {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.blog-tag-chip {
    background: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    text-decoration: none;
}
.blog-tag-chip:hover {
    background: #35a8a5;
    color: #fff;
}

/* シェア */
.blog-share {
    margin-top: 40px;
    padding: 24px;
    background: #f9fdfc;
    border-radius: 8px;
    text-align: center;
}
.blog-share-label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 600;
}
.blog-share-list {
    display: flex;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-share-list a,
.blog-share-list button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #555;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}
.blog-share-list a:hover,
.blog-share-list button:hover {
    background: #35a8a5;
    color: #fff;
    border-color: #35a8a5;
}

/* 前後記事 */
.blog-prevnext {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.blog-prevnext > div {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    transition: all 0.2s;
}
.blog-prevnext > div:hover {
    border-color: #35a8a5;
    box-shadow: 0 2px 8px rgba(53, 168, 165, 0.15);
}
.blog-prevnext > div:empty { visibility: hidden; }
.blog-prevnext a {
    display: block;
    padding: 16px;
    text-decoration: none;
    color: #333;
    height: 100%;
}
.blog-prevnext-next { text-align: right; }
.blog-prevnext-label {
    display: block;
    font-size: 12px;
    color: #35a8a5;
    margin-bottom: 6px;
    font-weight: 600;
}
.blog-prevnext-title {
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 関連記事 */
.blog-related {
    margin-top: 60px;
}
.blog-related-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: #333;
    position: relative;
    padding-bottom: 12px;
}
.blog-related-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #35a8a5;
    margin: 12px auto 0;
}
.blog-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.blog-related-item a {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    border: 1px solid #eee;
    transition: all 0.2s;
    height: 100%;
}
.blog-related-item a:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.blog-related-thumb {
    aspect-ratio: 16 / 9;
    background: #f5f5f5;
    overflow: hidden;
}
.blog-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-related-noimg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cdeae8, #35a8a5);
}
.blog-related-meta {
    padding: 14px 16px;
}
.blog-related-meta time {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
}
.blog-related-name {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================
   ブログ TOP /blog/ — 2カラムレイアウト
   ========================= */

/* レイアウト 2カラム */
.blog-layout {
    background: #fff;
    padding: 24px 20px 60px;
}
@media (min-width: 768px) {
    .blog-layout { padding: 50px 32px 100px; }
}
.blog-layout-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 32px;
}
@media (min-width: 1024px) {
    .blog-layout-inner {
        grid-template-columns: 1fr 220px;
        gap: 40px;
    }
    /* サイドバー自体はグリッド行いっぱいに伸ばす（sticky 動作のため） */
    .blog-sidebar { align-self: stretch; }
}

/* ピックアップスライダー */
.blog-pickup {
    margin-bottom: 0;
}
.blog-pickup-swiper {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: #fff;
}
.blog-pickup-swiper .swiper-wrapper { min-width: 0; }
.blog-pickup-swiper .swiper-slide { min-width: 0; max-width: 100%; }
.blog-pickup-slide {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    background: #fff;
    /* image 45% × 16:9 ⇒ height = 0.45w × 9/16 = 0.253w */
    aspect-ratio: 320 / 81;
}
@media (max-width: 767px) {
    .blog-pickup-slide { flex-direction: column; aspect-ratio: auto; }
}
.blog-pickup-image {
    flex: 0 0 45%;
    overflow: hidden;
    background: #f5f5f5;
    display: block;
}
@media (min-width: 768px) {
    .blog-pickup-image { aspect-ratio: 16 / 9; height: 100%; }
}
@media (max-width: 767px) {
    .blog-pickup-image { flex: 0 0 auto; width: 100%; aspect-ratio: 16 / 9; height: auto; align-self: stretch; }
}
.blog-pickup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-pickup-noimg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cdeae8, #35a8a5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-pickup-noimg::before {
    content: "アイキャッチ";
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.08em;
}
.blog-pickup-body {
    flex: 1 1 auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-width: 0;
    overflow: hidden;
}
@media (min-width: 768px) {
    .blog-pickup-body { padding: 5px 72px 5px 40px; }
}
.blog-pickup-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    transform: translateY(7px);
    font-size: 12px;
    color: #888;
}
.blog-pickup-pickup-label {
    background: #e94c4c;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 9px;
    line-height: 1.4;
}
.blog-pickup-cat {
    background: #35a8a5;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 9px;
    line-height: 1.4;
}
.blog-pickup-cat--line-marketing { background: #06c755; }
.blog-pickup-cat--lstep          { background: #ff7a47; }
.blog-pickup-cat--case-study     { background: #4a90c2; }
.blog-pickup-cat--know-how       { background: #e3b63f; }
.blog-pickup-cat--tips           { background: #e26072; }
.blog-pickup-date {
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.04em;
    margin-left: auto;
    transform: translateY(5px);
}
.blog-pickup-title {
    margin: 0;
    padding-bottom: 6px;
    border-bottom: 1px dotted #b6e1de;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 700;
    color: #35a8a5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-pickup-title a { color: inherit; text-decoration: none; }
.blog-pickup-title a:hover { opacity: 0.8; }
@media (min-width: 768px) {
    .blog-pickup-title { font-size: 1.9rem; }
}
.blog-pickup-excerpt {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-pickup-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #35a8a5;
    font-weight: 600;
    font-size: 13px;
    margin-top: 4px;
    padding: 3px 7px;
    background: #f0f9f8;
    align-self: flex-end;
    transition: background 0.2s;
}
.blog-pickup-readmore:hover { background: #cdeae8; }
.blog-pickup-slide:hover .blog-pickup-readmore { gap: 10px; transition: gap 0.2s; }
.blog-pickup-slide:hover .blog-pickup-image img { transform: scale(1.04); transition: transform 0.4s; }

/* Swiper navigation/pagination カスタム */
.blog-pickup-swiper .swiper-button-prev,
.blog-pickup-swiper .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8f5f3;
    color: #35a8a5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background 0.2s, color 0.2s;
    z-index: 10;
}
.blog-pickup-swiper:hover .swiper-button-prev,
.blog-pickup-swiper:hover .swiper-button-next {
    opacity: 1;
    pointer-events: auto;
}
.blog-pickup-swiper .swiper-button-prev::before,
.blog-pickup-swiper .swiper-button-next::before {
    box-shadow: none !important;
    content: none !important;
}
.blog-pickup-swiper .swiper-button-prev { left: 12px; }
.blog-pickup-swiper .swiper-button-next { right: 12px; }
.blog-pickup-swiper .swiper-button-prev:hover,
.blog-pickup-swiper .swiper-button-next:hover {
    background: #35a8a5;
    color: #fff;
}
.blog-pickup-swiper .swiper-button-prev::after,
.blog-pickup-swiper .swiper-button-next::after {
    font-size: 13px;
    font-weight: 700;
    border-color: #35a8a5 !important;
    transition: border-color 0.2s;
}
.blog-pickup-swiper .swiper-button-prev:hover::after,
.blog-pickup-swiper .swiper-button-next:hover::after {
    border-color: #fff !important;
}
.blog-pickup-pagination {
    position: static !important;
    transform: none !important;
    text-align: center;
    margin-top: 18px;
    width: 100%;
    line-height: 1;
}
.blog-pickup-pagination .swiper-pagination-bullet {
    background: #d6d6d6;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 7px !important;
    border-radius: 50%;
    transition: all 0.2s;
    vertical-align: middle;
    cursor: pointer;
    display: inline-block;
}
.blog-pickup-pagination .swiper-pagination-bullet-active {
    background: #35a8a5;
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

/* 各セクション共通 */
.blog-section + .blog-section { margin-top: 32px; }
.blog-section-head {
    margin-bottom: 24px;
    border-bottom: 2px solid #35a8a5;
    padding-bottom: 12px;
}
.blog-section-title {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 14px;
    line-height: 1;
}
.blog-section-en {
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #35a8a5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.blog-section-jp {
    font-size: 13px;
    color: #888;
    font-weight: 600;
}
@media (min-width: 768px) {
    .blog-section-en { font-size: 2rem; }
}
.blog-section-more {
    margin-top: 20px;
    text-align: center;
}

/* ホームの blog-cards は3列固定 */
.blog-main { min-width: 0; }
.blog-main .blog-cards { grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 767px) {
    .blog-main .blog-cards { grid-template-columns: 1fr; }
}

/* サイドバー */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.blog-widget {
    background: transparent;
    padding: 0;
}
.blog-widget-title {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.blog-widget-ranking .blog-widget-title,
.blog-widget-logos .blog-widget-title,
.blog-widget-cats .blog-widget-title,
.blog-widget-toc .blog-widget-title {
    padding-bottom: 5px;
    margin-bottom: 18px;
    color: #35a8a5;
    border-bottom: 1px dotted #35a8a5;
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-widget-ranking .blog-widget-title i,
.blog-widget-logos .blog-widget-title i,
.blog-widget-cats .blog-widget-title i,
.blog-widget-toc .blog-widget-title i {
    color: #35a8a5;
}

/* カテゴリリスト */
.blog-cats-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.blog-cats-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    background: #f0f9f8;
    transition: background 0.2s, color 0.2s;
}
.blog-cats-list a:hover {
    background: #cdeae8;
    color: #35a8a5;
}
.blog-cats-name {
    flex: 1;
    line-height: 1.4;
}
.blog-cats-count {
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    color: #35a8a5;
    font-weight: 700;
    background: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
}

/* バナー枠 */
.blog-widget-banners {
    background: transparent;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.blog-banner {
    display: block;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: opacity 0.2s, box-shadow 0.2s, transform 0.2s;
}
.blog-banner:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.16);
    transform: translateY(-2px);
}
.blog-banner:hover { opacity: 0.85; }
.blog-banner img { width: 100%; height: auto; display: block; }
.blog-banner-placeholder {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #cdeae8, #35a8a5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* 人気ランキング */
.blog-ranking-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.blog-ranking-item a {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    color: #333;
}
.blog-ranking-item a:hover .blog-ranking-title { color: #35a8a5; }
.blog-ranking-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #35a8a5;
    color: #fff;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-ranking-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.blog-ranking-cat {
    align-self: flex-start;
}
.blog-ranking-title {
    font-size: 12px;
    line-height: 1.55;
    font-weight: 400;
    color: #333;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 注目ワード（タグクラウド） — 旧 */
.blog-tag-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.blog-tag-list a {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 999px;
    font-size: 12px;
    color: #555;
    text-decoration: none;
    background: #fff;
    transition: all 0.15s;
}
.blog-tag-list a:hover {
    border-color: #35a8a5;
    color: #35a8a5;
    background: #f9fdfc;
}

/* ロゴ枠 */
.blog-logo-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blog-logo-list li img {
    width: 100%;
    height: auto;
    display: block;
}
.blog-logo-placeholder {
    height: 56px;
    background: #f5f5f5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 12px;
    font-weight: 600;
}

/* =========================
   一覧ページ（archive / category / tag / search / home）
   ========================= */
.blog-archive {
    padding: 40px 20px 60px;
}
.blog-archive .wrapper {
    max-width: 1080px;
}
.blog-archive-header {
    text-align: center;
    margin-bottom: 40px;
}
.blog-cards {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card a {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    border: 1px solid #eee;
    transition: all 0.2s;
    height: 100%;
}
.blog-card a:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.blog-card-thumb {
    aspect-ratio: 16 / 9;
    background: #f5f5f5;
    overflow: hidden;
}
.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card-noimg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cdeae8, #35a8a5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-noimg::before {
    content: "アイキャッチ";
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.08em;
}
.blog-card-body {
    padding: 18px 20px 20px;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #888;
}
.blog-card-cat {
    background: #35a8a5;
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 10px;
}
.blog-card-cat--line-marketing { background: #06c755; }
.blog-card-cat--lstep          { background: #ff7a47; }
.blog-card-cat--case-study     { background: #4a90c2; }
.blog-card-cat--know-how       { background: #e3b63f; }
.blog-card-cat--tips           { background: #e26072; }
.blog-card a:hover .blog-card-cat,
.blog-pickup-slide:hover .blog-pickup-cat,
.blog-pickup-slide:hover .blog-pickup-pickup-label,
.blog-card-cat:hover,
.blog-pickup-cat:hover,
.blog-pickup-pickup-label:hover { color: #fff !important; }
.blog-card-title {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 700;
    color: #35a8a5;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-excerpt {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ページネーション */
.blog-pagination {
    margin-top: 48px;
    text-align: center;
}
.blog-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border: 1px solid #ddd;
    background: #fff;
    color: #555;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}
.blog-pagination .page-numbers.current {
    background: #35a8a5;
    color: #fff;
    border-color: #35a8a5;
}
.blog-pagination a.page-numbers:hover {
    background: #f5fbfa;
    border-color: #35a8a5;
    color: #35a8a5;
}

/* =========================
   お知らせ一覧 /news/（newsList）
   ========================= */
.newsList_section {
    padding: 32px 20px 60px;
    background: #f0f9f8;
    text-align: left;
}
@media (min-width: 768px) {
    .newsList_section { padding: 56px 20px 100px; }
}
.newsList_inner {
    max-width: 960px;
    margin: 0 auto;
}
.newsList_breadcrumb {
    margin: 0 auto 16px;
    max-width: 960px;
    font-size: 12px;
    color: #666;
}
.newsList_breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.newsList_breadcrumb li {
    position: relative;
    margin: 0;
    padding: 0;
}
.newsList_breadcrumb li + li::before {
    content: "›";
    margin-right: 8px;
    color: #aaa;
}
.newsList_breadcrumb a {
    color: #35a8a5;
    text-decoration: underline;
}
.newsList_breadcrumb a:hover { opacity: 0.7; }
.newsList_breadcrumb [aria-current="page"] {
    color: #888;
    font-weight: 500;
}
@media (min-width: 768px) {
    .newsList_breadcrumb { margin-bottom: 20px; font-size: 13px; }
}

.newsList_box {
    padding: 28px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
@media (min-width: 768px) {
    .newsList_box { padding: 40px 48px; }
}

.newsList_head {
    margin: 0 0 20px;
}
.newsList_head .top-news-heading-en {
    font-size: 3.4rem;
}
.newsList_head .top-news-heading-jp {
    margin: 6px 0 0;
}
@media (min-width: 768px) {
    .newsList_head { margin-bottom: 28px; }
    .newsList_head .top-news-heading-en { font-size: 4.6rem; }
    .newsList_head .top-news-heading-jp { margin-top: 8px; }
}

/* 0件メッセージ */
.newsList_empty {
    margin: 40px 0;
    padding: 32px;
    background: #f0f9f8;
    border-radius: 10px;
    color: #666;
    font-size: 14px;
    text-align: center;
}

/* ページネーション（WPの paginate_links list 出力前提） */
.newsList_pagination {
    margin: 32px 0 0;
}
.newsList_pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
.newsList_pagination li { margin: 0; padding: 0; }
.newsList_pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #d0d7e0;
    border-radius: 6px;
    color: #262c30;
    font-family: "Helvetica Neue", "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.newsList_pagination .page-numbers:hover {
    background: #35a8a5;
    border-color: #35a8a5;
    color: #fff;
}
.newsList_pagination .page-numbers.current {
    background: #35a8a5;
    border-color: #35a8a5;
    color: #fff;
    pointer-events: none;
}
.newsList_pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: #999;
    font-size: 1.4rem;
    pointer-events: none;
}
@media (min-width: 768px) {
    .newsList_pagination { margin-top: 48px; }
    .newsList_pagination ul { gap: 8px; }
    .newsList_pagination .page-numbers {
        min-width: 42px;
        height: 42px;
        font-size: 14px;
    }
}

/* SPで前へ/次への文字を隠す */
@media (max-width: 767px) {
    .newsList_pagination .u-hidden-sm { display: none; }
}

/* 一覧ページのフィルタは smoothec 同様 SP では非表示（必要なら個別オーバーライド） */

/* =========================
   お知らせ個別ページ（newsDetail）
   ========================= */
.newsDetail-wrap {
    padding: 36px 0 24px;
    background: #fff;
}
@media (min-width: 768px) {
    .newsDetail-wrap { padding: 60px 0 40px; }
}
.newsDetail {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

/* パンくず */
.newsDetail_breadcrumb {
    margin: 0 0 24px;
    font-size: 13px;
    color: #666;
}
.newsDetail_breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.newsDetail_breadcrumb li {
    position: relative;
    margin: 0;
    padding: 0;
}
.newsDetail_breadcrumb li + li::before {
    content: "›";
    margin-right: 8px;
    color: #aaa;
}
.newsDetail_breadcrumb a {
    color: #35a8a5;
    text-decoration: underline;
}
.newsDetail_breadcrumb a:hover { opacity: 0.7; }
.newsDetail_breadcrumb [aria-current="page"] {
    color: #888;
    font-weight: 500;
}
@media (min-width: 768px) {
    .newsDetail_breadcrumb { margin-bottom: 32px; font-size: 13px; }
}

/* 記事 */
.newsDetail_article {
    margin: 0 0 56px;
}
@media (min-width: 768px) {
    .newsDetail_article { margin-bottom: 80px; }
}

/* 記事ヘッダ */
.newsDetail_header {
    margin: 0 0 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}
@media (min-width: 768px) {
    .newsDetail_header { margin-bottom: 36px; padding-bottom: 28px; }
}
.newsDetail_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.newsDetail_date {
    color: #888;
    font-family: "Helvetica Neue", "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
}
.newsDetail_cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 600;
}
.newsDetail_cat--news      { color: #d97706; }
.newsDetail_cat--important { color: #c43d4b; }
.newsDetail_cat--press     { color: #5c8a24; }
.newsDetail_cat--media     { color: #2999a3; }
.newsDetail_cat--other     { color: #6b7280; }

.newsDetail_title {
    margin: 0;
    color: #262c30;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
}
@media (min-width: 768px) {
    .newsDetail_date { font-size: 14px; }
    .newsDetail_cat  { font-size: 12px; }
    .newsDetail_title { font-size: 2.2rem; }
}

/* 記事本文（WPエディタ領域） */
.newsDetail_body {
    color: #262c30;
    font-size: 14.5px;
    line-height: 1.9;
}
@media (min-width: 768px) {
    .newsDetail_body { font-size: 15.5px; }
}
.newsDetail_body > * + * { margin-top: 1.6em; }
.newsDetail_body p { margin: 0 0 1.6em; }
.newsDetail_body p:last-child { margin-bottom: 0; }

.newsDetail_body h2 {
    margin: 2.4em 0 1em;
    padding-bottom: 10px;
    border-bottom: 2px solid #35a8a5;
    color: #262c30;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.5;
}
.newsDetail_body h2:first-child { margin-top: 0; }
@media (min-width: 768px) {
    .newsDetail_body h2 { padding-bottom: 12px; font-size: 1.55rem; }
}
.newsDetail_body h3 {
    margin: 2em 0 0.8em;
    padding-left: 14px;
    border-left: 4px solid #35a8a5;
    color: #262c30;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.5;
}
@media (min-width: 768px) {
    .newsDetail_body h3 { font-size: 1.3rem; }
}
.newsDetail_body h4 {
    margin: 1.6em 0 0.6em;
    color: #35a8a5;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.5;
}
.newsDetail_body ul,
.newsDetail_body ol {
    margin: 0 0 1.6em;
    padding-left: 1.8em;
}
.newsDetail_body ul li,
.newsDetail_body ol li {
    margin-bottom: 0.3em;
    line-height: 1.9;
}
.newsDetail_body ul > li { list-style: disc; }
.newsDetail_body ul > li::marker { color: #35a8a5; }
.newsDetail_body ol > li::marker { color: #35a8a5; font-weight: 700; }
/* お知らせ本文に blog-entry-content が付いている場合はチェックマーク表示を維持 */
.newsDetail_body.blog-entry-content ul {
    padding-left: 0;
}
.newsDetail_body.blog-entry-content ul > li {
    list-style: none;
    padding-left: 1.6em;
    margin-bottom: 0.4em;
}
.newsDetail_body strong { color: #262c30; font-weight: 700; }
.newsDetail_body hr {
    margin: 2.4em 0;
    border: 0;
    border-top: 1px dashed #b6e1de;
}
.newsDetail_body a {
    color: #35a8a5;
    text-decoration: underline;
    word-break: break-word;
}
.newsDetail_body a:hover { opacity: 0.7; }
.newsDetail_body blockquote {
    margin: 1.6em 0;
    padding: 16px 20px;
    background: #f0f9f8;
    border-left: 4px solid #35a8a5;
    border-radius: 0 6px 6px 0;
    color: #555;
    font-size: 0.95em;
}
.newsDetail_body blockquote p:last-child { margin-bottom: 0; }
.newsDetail_body table {
    width: 100%;
    margin: 1.6em 0;
    border-collapse: collapse;
    font-size: 0.95em;
}
.newsDetail_body table th,
.newsDetail_body table td {
    padding: 12px 16px;
    border: 1px solid #d6d6d6;
    text-align: left;
    vertical-align: top;
    line-height: 1.7;
}
.newsDetail_body table th {
    background: #e9f6f5;
    color: #35a8a5;
    font-weight: 700;
    white-space: nowrap;
    width: 160px;
}
.newsDetail_body table td { background: #fff; }
@media (max-width: 639px) {
    .newsDetail_body table,
    .newsDetail_body table tbody,
    .newsDetail_body table tr,
    .newsDetail_body table th,
    .newsDetail_body table td {
        display: block;
        width: auto;
    }
    .newsDetail_body table th {
        white-space: normal;
        width: 100%;
        border-bottom: none;
    }
    .newsDetail_body table td { border-top: none; }
}
.newsDetail_body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.6em auto;
    border-radius: 8px;
}
.newsDetail_body figure { margin: 1.6em 0; }
.newsDetail_body figure img { margin: 0 auto; }
.newsDetail_body figcaption {
    margin-top: 10px;
    color: #888;
    font-size: 12.5px;
    line-height: 1.6;
    text-align: center;
}

/* 記事フッター */
.newsDetail_footer {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}
@media (min-width: 768px) {
    .newsDetail_footer { margin-top: 56px; padding-top: 32px; }
}
.newsDetail_backwrap {
    display: flex;
    justify-content: center;
}
.newsDetail_back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    border: 2px solid #35a8a5;
    border-radius: 60px;
    color: #262c30;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.newsDetail_back i {
    color: #35a8a5;
    font-size: 13px;
}
.newsDetail_back:hover {
    background: #35a8a5;
    color: #fff;
    transform: translateY(-2px);
}
.newsDetail_back:hover i { color: #fff; }
@media (min-width: 768px) {
    .newsDetail_back { padding: 16px 36px; font-size: 15px; }
}

/* 関連 = 最近のお知らせ */
.newsDetail_relatedSection {
    padding: 48px 20px 36px;
    background: #f0f9f8;
}
@media (min-width: 768px) {
    .newsDetail_relatedSection { padding: 80px 20px 56px; }
}
.newsDetail_relatedInner {
    max-width: 900px;
    margin: 0 auto;
}
.newsDetail_related {
    padding: 28px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
@media (min-width: 768px) {
    .newsDetail_related { padding: 36px 40px; }
}
.newsDetail_related_head {
    margin: 0 0 18px;
}
.newsDetail_related_head .top-news-heading-en {
    font-size: 3.4rem;
}
.newsDetail_related_head .top-news-heading-jp {
    margin: 6px 0 0;
}
@media (min-width: 768px) {
    .newsDetail_related_head { margin-bottom: 24px; }
    .newsDetail_related_head .top-news-heading-en { font-size: 4.2rem; }
    .newsDetail_related_head .top-news-heading-jp { margin-top: 8px; }
}
.newsDetail_related_more {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
@media (min-width: 768px) {
    .newsDetail_related_more { margin-top: 32px; }
}

/* =========================
   トップページ：お知らせセクション（2カラムレイアウト）
   ========================= */
.top-news-section {
    position: relative;
    background: #f0f9f8;
    padding: 50px 0;
}
@media (min-width: 768px) {
    .top-news-section { padding: 70px 0; }
}

.top-news-card {
    background: #fff;
    border-radius: 28px;
    padding: 24px 20px;
    box-shadow: 8px 8px 30px 0 rgba(53, 168, 165, 0.18);
    max-width: 1200px;
    margin: 0 16px;
}
@media (min-width: 768px) {
    .top-news-card {
        margin: 0 auto;
        padding: 48px 56px;
    }
}

.top-news-grid {
    display: grid;
    gap: 32px;
}
@media (min-width: 768px) {
    .top-news-grid {
        grid-template-columns: 240px 1fr;
        gap: 56px;
        align-items: start;
    }
}

/* 左カラム：見出し */
.top-news-head {
    text-align: center;
}
@media (min-width: 768px) {
    .top-news-head { text-align: left; }
}
.top-news-heading-en {
    margin: 0;
    color: #35a8a5;
    font-family: "Helvetica Neue", "Montserrat", Arial, sans-serif;
    font-size: 4.4rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 1;
}
@media (min-width: 768px) {
    .top-news-heading-en { font-size: 5.6rem; }
}
.top-news-heading-jp {
    margin: 8px 0 20px;
    color: #262c30;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}
@media (min-width: 768px) {
    .top-news-heading-jp { margin: 10px 0 32px; font-size: 1.6rem; }
}
.top-news-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 24px;
    border: 1px solid #35a8a5;
    border-radius: 999px;
    min-width: 180px;
    color: #35a8a5;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}
.top-news-all-btn:hover { opacity: 0.7; }
.top-news-all-btn-arrow {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #35a8a5;
    color: #fff;
    font-size: 1rem;
}

/* 右カラム：フィルタ＋リスト */
.top-news-body {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* フィルタタブ */
.top-news-filter {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0;
    padding: 0;
}
.top-news-filter-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px 8px 0 0;
    background-color: #f7f7f7;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: normal;
    transition: background-color 0.2s;
    user-select: none;
}
.top-news-filter-item:hover { background-color: #e9e9e9; }
.top-news-filter-item.is-active { background-color: #fff; }

.top-news-filter-item--all       { color: #2b6cb0; }
.top-news-filter-item--news      { color: #d97706; }
.top-news-filter-item--important { color: #c43d4b; }
.top-news-filter-item--press     { color: #5c8a24; }
.top-news-filter-item--media     { color: #2999a3; }
.top-news-filter-item--other     { color: #6b7280; }

@media (min-width: 768px) {
    .top-news-filter { gap: 6px; }
    .top-news-filter-item { padding: 10px 18px; font-size: 1.3rem; }
}
@media (max-width: 767px) {
    .top-news-filter { display: none; }
}

.top-news-filter-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #9ca3af;
}
.top-news-filter-dot--all       { background-color: #2b6cb0; }
.top-news-filter-dot--news      { background-color: #f59e0b; }
.top-news-filter-dot--important { background-color: #e26472; }
.top-news-filter-dot--press     { background-color: #7ab532; }
.top-news-filter-dot--media     { background-color: #76bdca; }
.top-news-filter-dot--other     { background-color: #9ca3af; }
.top-news-filter-dot--blog      { background-color: #35a8a5; }

/* リスト */
.top-news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.top-news-item {
    display: grid;
    grid-template-columns: auto 130px 1fr;
    align-items: center;
    gap: 12px 18px;
    padding: 10px 12px;
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s;
}
.top-news-item:first-child {
    border-top: 1px solid #e5e7eb;
}
.top-news-item:hover { background-color: #f9fdfc; }
.top-news-item.is-hidden { display: none; }

.top-news-date {
    color: #262c30;
    font-family: "Helvetica Neue", "Montserrat", Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    letter-spacing: 0.04em;
}
.top-news-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #9ca3af;
    font-size: 1.2rem;
    font-weight: normal;
    white-space: nowrap;
}
.top-news-cat--news      { color: #d97706; }
.top-news-cat--important { color: #c43d4b; }
.top-news-cat--press     { color: #5c8a24; }
.top-news-cat--media     { color: #2999a3; }
.top-news-cat--other     { color: #6b7280; }
.top-news-cat--blog      { color: #2a8a87; }

.top-news-title-link {
    display: inline;
    color: #262c30;
    font-size: 1.5rem;
    line-height: 1.6;
    text-decoration: none;
    transition: opacity 0.2s;
    font-weight: 500;
}
.top-news-title-link:hover { opacity: 0.7; }

.top-news-new-badge {
    display: inline-block;
    margin-right: 8px;
    padding: 2px 8px;
    border-radius: 4px;
    background: #ffac0c;
    color: #fff;
    font-family: "Helvetica Neue", "Montserrat", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.4;
    vertical-align: middle;
    transform: translateY(-1px);
}
@media (min-width: 768px) {
    .top-news-new-badge {
        font-size: 11px;
        padding: 3px 9px;
    }
}

@media (max-width: 767px) {
    .top-news-item {
        grid-template-columns: auto 1fr;
        gap: 6px 18px;
    }
    .top-news-title-link {
        grid-column: 1 / -1;
    }
}
@media (min-width: 768px) {
    .top-news-item { padding: 12px 0; gap: 14px 28px; }
    .top-news-date { font-size: 1.5rem; }
    .top-news-cat { font-size: 1.3rem; }
    .top-news-title-link { font-size: 1.6rem; transform: translateY(3px); display: inline-block; }
}

.top-news-empty {
    padding: 32px;
    text-align: center;
    color: #888;
    background: #f9fdfc;
    border-radius: 8px;
}

@media only screen and (max-width: 768px) {
    .news-archive { padding: 24px 16px 40px; }
    .news-item a { gap: 12px; padding: 14px 4px; flex-wrap: wrap; }
    .news-date { font-size: 13px; flex-basis: auto; }
    .news-title { flex-basis: 100%; font-size: 14px; }
    .news-single-title { font-size: 1.3rem; }
    .top-news-section { padding: 40px 16px; }
    .top-news-head { flex-direction: column; align-items: flex-start; gap: 8px; }
    .top-news-title { font-size: 1.2rem; }
}

/* =========================
   レスポンシブ
   ========================= */
@media only screen and (max-width: 768px) {
    .blog-title {
        padding: 30px 16px;
    }
    .blog-entry-meta {
        font-size: 12px;
        gap: 12px;
    }
    .blog-body-bg {
        padding: 24px 16px 40px;
    }
    .blog-entry-content {
        font-size: 1.6rem;
        line-height: 1.85;
    }
    .blog-entry-content h2 {
        font-size: 2rem;
    }
    .blog-entry-content h3 {
        font-size: 1.7rem;
    }
    .blog-entry-content .rx-step h4 {
        font-size: 1.7rem !important;
    }
    .blog-prevnext {
        grid-template-columns: 1fr;
    }
    .blog-related-list,
    .blog-cards {
        grid-template-columns: 1fr;
    }
    .blog-archive {
        padding: 24px 16px 40px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .blog-related-list,
    .blog-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   ブロックパターン（rx-*）
   エディタの「+ → パターン」から挿入される装飾ブロック
   ========================= */

/* 1. 注意ボックス */
.blog-entry-content .rx-note {
    background: #fff8e1;
    border-left: 4px solid #f5b400;
    padding: 1.5em 2em;
    border-radius: 6px;
    margin: 1.5em 0;
    line-height: 1.8;
}
.blog-entry-content .rx-note strong {
    color: #b07a00;
    font-size: 1.8rem;
    display: inline-block;
    margin-bottom: 4px;
}

/* 2. ポイント枠（タイトルが枠線に乗る形） */
.blog-entry-content .rx-point {
    position: relative;
    margin: 2em 0;
    padding: 0.8em 2em;
    border: solid 3px #35a8a5;
    border-radius: 8px;
    background: none;
}
.blog-entry-content .rx-point-title {
    position: absolute !important;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px !important;
    margin: 0 !important;
    line-height: 1 !important;
    font-size: 1.9rem !important;
    font-weight: bold !important;
    background: #fff !important;
    color: #35a8a5 !important;
    border: none !important;
}
.blog-entry-content .rx-point > p { margin: 0 !important; padding: 0 !important; }

/* 3. Tipsボックス（斜めストライプ背景） */
.blog-entry-content .rx-tip {
    padding: 1.5em 2em;
    margin: 2em 0;
    background: repeating-linear-gradient(-45deg,
        #f0f9f8,
        #f0f9f8 3px,
        #e3f2f0 3px,
        #e3f2f0 7px);
    border: none;
    border-radius: 0;
    line-height: 1.8;
}
.blog-entry-content .rx-tip strong {
    color: #35a8a5;
    font-size: 1.8rem;
    display: inline-block;
    margin-bottom: 4px;
}

/* 4. NG / OK 比較（タイトルが上部にタブで乗る形） */
.blog-entry-content .rx-compare {
    gap: 24px;
    margin: 2.5em 0 1.5em;
}
.blog-entry-content .rx-compare-bad,
.blog-entry-content .rx-compare-good {
    position: relative;
    margin-top: 25px;
    padding: 1em 1.2em;
    background: none;
    border-radius: 0 6px 6px 6px;
}
.blog-entry-content .rx-compare-bad {
    border: dashed 2px #d9534f;
    background: #fdecea;
}
.blog-entry-content .rx-compare-good {
    border: dashed 2px #35a8a5;
    background: #f0f9f8;
}
.blog-entry-content .rx-compare-bad h4,
.blog-entry-content .rx-compare-good h4 {
    position: absolute !important;
    display: inline-block;
    top: -26px;
    left: -3px;
    padding: 0 12px !important;
    height: 26px;
    line-height: 26px !important;
    font-size: 1.5rem !important;
    color: #fff !important;
    font-weight: bold !important;
    margin: 0 !important;
    background: none;
    border: none !important;
    border-radius: 5px 5px 0 0;
}
.blog-entry-content .rx-compare-bad h4 { background: #d9534f !important; }
.blog-entry-content .rx-compare-good h4 { background: #35a8a5 !important; }
.blog-entry-content .rx-compare-bad p,
.blog-entry-content .rx-compare-good p { margin: 0 !important; }

/* 5. ステップ手順（縦タイムライン） */
.blog-entry-content .rx-steps {
    counter-reset: rx-step;
    margin: 1.5em 0;
}
.blog-entry-content .rx-step {
    position: relative;
    counter-increment: rx-step;
    padding: 0 0 32px 64px;
    min-height: 60px;
}
.blog-entry-content .rx-step:last-child { padding-bottom: 0; }
/* 接続線（次のステップへ） */
.blog-entry-content .rx-step::after {
    content: "";
    position: absolute;
    left: 23px;
    top: 56px;
    bottom: 0;
    width: 2px;
    background: #35a8a5;
}
.blog-entry-content .rx-step:last-child::after { display: none; }
/* マーカー（円の中に STEP＋番号） */
.blog-entry-content .rx-step-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #35a8a5;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    line-height: 1;
}
.blog-entry-content .rx-step-marker::before {
    content: "STEP";
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 3px;
    opacity: 0.9;
}
.blog-entry-content .rx-step-marker::after {
    content: counter(rx-step);
    font-size: 18px;
    font-weight: 700;
}
/* 見出し・本文の上書き */
.blog-entry-content .rx-step h4 {
    margin: 4px 0 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    color: #222 !important;
    font-size: 1.8rem !important;
    line-height: 1.5 !important;
}
.blog-entry-content .rx-step p {
    margin: 8px 0 0 !important;
    color: #555;
    line-height: 1.85;
}

/* 6. Q&A */
.blog-entry-content .rx-qa { margin: 1.5em 0; }
.blog-entry-content .rx-qa-q,
.blog-entry-content .rx-qa-a {
    position: relative;
    padding: 14px 18px 14px 56px !important;
    border-radius: 6px;
    margin: 0 !important;
    line-height: 1.7;
}
.blog-entry-content .rx-qa-q {
    background: #f0f9f8;
    color: #222;
    font-weight: 600;
    margin-bottom: 6px !important;
}
.blog-entry-content .rx-qa-a {
    background: #fff;
    border: 1px solid #e8e8e8;
}
.blog-entry-content .rx-qa-q::before,
.blog-entry-content .rx-qa-a::before {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
}
.blog-entry-content .rx-qa-q::before {
    content: "Q";
    background: #35a8a5;
    color: #fff;
}
.blog-entry-content .rx-qa-a::before {
    content: "A";
    background: #fff;
    border: 2px solid #35a8a5;
    color: #35a8a5;
}

/* 7. CTAバナー */
.blog-entry-content .rx-cta {
    background: linear-gradient(135deg, #35a8a5, #46b6b3);
    color: #fff;
    padding: 28px 32px;
    border-radius: 12px;
    margin: 2em 0;
    text-align: center;
}
.blog-entry-content .rx-cta-title {
    color: #fff !important;
    margin: 0 0 12px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    font-size: 2.2rem !important;
}
.blog-entry-content .rx-cta-text {
    color: #fff !important;
    margin: 0 0 18px !important;
    opacity: 0.95;
}
.blog-entry-content .rx-cta-btn-wrap {
    margin: 0 !important;
}
.blog-entry-content .rx-cta-btn {
    display: inline-block;
    background: #fff;
    color: #2a8a87 !important;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
}
.blog-entry-content .rx-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* 8. 引用カード（クォートアイコン付き） */
.blog-entry-content blockquote.rx-quote {
    position: relative;
    padding: 10px 15px 10px 60px;
    box-sizing: border-box;
    font-style: italic;
    background: #f5f5f5;
    color: #777;
    border-left: 4px solid #35a8a5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
    border-radius: 0;
    margin: 1.8em 0;
}
.blog-entry-content blockquote.rx-quote::before {
    display: inline-block;
    position: absolute;
    top: 15px;
    left: 15px;
    content: "\f10d";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    color: #35a8a5;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}
.blog-entry-content blockquote.rx-quote p {
    padding: 0;
    margin: 7px 0;
    line-height: 1.7;
}
.blog-entry-content .rx-quote-cite {
    display: block;
    text-align: right;
    color: #888;
    font-size: 0.9em;
    font-style: normal;
}

/* 10. 会話風の吹き出し（balloon5：左にアイコン＋右に吹き出し） */
.blog-entry-content .rx-chat {
    width: 100%;
    margin: 1.5em 0;
    overflow: hidden;
}
.blog-entry-content .rx-chat-icon {
    float: left;
    margin-right: -90px;
    width: 80px;
}
.blog-entry-content .rx-chat-icon img {
    width: 100%;
    height: auto;
    border: solid 3px #e6f4f5;
    border-radius: 50%;
    display: block;
}
.blog-entry-content .rx-chat-body { width: 100%; }
.blog-entry-content .rx-chat-bubble {
    display: inline-block;
    position: relative;
    margin: 5px 0 0 105px;
    padding: 17px 16px;
    border-radius: 12px;
    background: #e6f4f5;
    color: #333;
    max-width: 450px;
}
.blog-entry-content .rx-chat-bubble::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 18px;
    left: -12px;
    border: 12px solid transparent;
    border-right: 12px solid #e6f4f5;
    border-left: 0;
}
.blog-entry-content .rx-chat-bubble p {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.6;
}

/* 反転版（アイコンが右、吹き出しが左、ベースカラー） */
.blog-entry-content .rx-chat--right .rx-chat-icon {
    float: right;
    margin-right: 0;
    margin-left: -90px;
}
.blog-entry-content .rx-chat--right .rx-chat-icon img {
    border-color: #35a8a5;
}
.blog-entry-content .rx-chat--right .rx-chat-body {
    text-align: right;
}
.blog-entry-content .rx-chat--right .rx-chat-bubble {
    margin: 5px 105px 0 0;
    background: #35a8a5;
    color: #fff;
    text-align: left;
}
.blog-entry-content .rx-chat--right .rx-chat-bubble::after {
    left: auto;
    right: -12px;
    border: 12px solid transparent;
    border-left: 12px solid #35a8a5;
    border-right: 0;
}

/* 9. まとめ枠 */
.blog-entry-content .rx-summary {
    background: #fafdfd;
    border: 2px dashed #b8e0de;
    padding: 1.5em 2em;
    border-radius: 10px;
    margin: 2em 0;
}
.blog-entry-content .rx-summary-title {
    color: #35a8a5 !important;
    margin: 0 0 12px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    font-size: 1.8rem !important;
}
.blog-entry-content .rx-summary > p { margin: 8px 0 0 !important; }

/* ボックス系のパディング（スマホ専用上書き） */
@media (max-width: 767px) {
    .blog-entry-content .rx-note,
    .blog-entry-content .rx-tip,
    .blog-entry-content .rx-summary {
        padding: 1.5em;
    }
    .blog-entry-content .rx-point {
        padding: 0.8em 1.5em;
    }
}

/* =========================
   運用実績の個別ページ ヒーロー（2カラム）
   ========================= */
.portfolio-hero {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 32px;
    margin: 30px 0 40px;
    align-items: stretch;
}
.portfolio-hero-left {
    border-top: 6px double #35a8a5;
    border-bottom: 6px double #35a8a5;
    padding: 14px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.portfolio-hero-label {
    display: block;
    text-align: left;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}
.portfolio-hero-number {
    display: block;
    text-align: right;
    font-family: "Oswald", "Helvetica Neue", Arial, sans-serif;
    font-size: 10rem;
    font-weight: 400;
    line-height: 1;
    color: #222;
}
.portfolio-hero-right {
    min-width: 0;
    text-align: left;
}
.portfolio-hero-industry {
    display: inline-block;
    padding: 2px 12px;
    background: #35a8a5;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 14px;
    border-left: 4px solid #fff;
    box-shadow: -6px 0 0 #35a8a5;
    margin-left: 6px;
}
.portfolio-hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 14px;
    color: #222;
}
.portfolio-hero-subtitle {
    font-size: 1.7rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    background: #f0f9f8;
    padding: 0.8em 1em;
    border-radius: 4px;
}
.portfolio-hero-subtitle span,
.portfolio-hero-subtitle strong,
.portfolio-hero-subtitle b {
    font-weight: 700;
    background: linear-gradient(transparent 60%, #fff58a 60%);
    color: inherit;
}
.portfolio-hero-sp-prefix { display: none; }

@media (max-width: 767px) {
    .portfolio-hero {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .portfolio-hero-left { display: none; }
    .portfolio-hero-industry { font-size: 1.3rem; padding: 3px 12px; }
    .portfolio-hero-title { font-size: 2.4rem; }
    .portfolio-hero-subtitle { font-size: 1.6rem; }
    .portfolio-hero-sp-prefix {
        display: inline-block;
        font-family: "Oswald", "Helvetica Neue", Arial, sans-serif;
        font-weight: 500;
        font-size: 1.4rem;
        color: #222;
        margin-right: 10px;
        letter-spacing: 0.04em;
        vertical-align: middle;
    }


    /* 導入前の課題の吹き出しを中央寄せ */
    .portfolio-issue-title {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
    }
}

/* 導入前の課題ボックス（吹き出しタイトル付き） */
.portfolio-issue-box {
    position: relative;
    margin: calc(2em + 35px) 0 1.5em;
    padding: 1.8em 2.5em 2em;
    border: 2px solid #35a8a5;
}
.portfolio-issue-title {
    position: absolute;
    top: -1.7em;
    left: -0.5em;
    padding: 0.5em 1.7em;
    border-radius: 30px;
    background-color: #35a8a5;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
}
.portfolio-issue-title::before {
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    background-color: #35a8a5;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
.portfolio-issue-content {
    font-size: 1.6rem;
    line-height: 1.85;
    text-align: left;
    padding-top: 20px;
}
.portfolio-issue-content p { margin: 0; text-align: left; }
.portfolio-issue-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.portfolio-issue-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    line-height: 1.6;
}
.portfolio-issue-list li i {
    color: #35a8a5;
    font-size: 1.2em;
    flex-shrink: 0;
    margin-top: 2px;
}

/* 導入施策ボックス（box-013 風） */
.portfolio-measure-box {
    margin: 2em 0 1.5em;
    border: 2px solid #35a8a5;
    border-radius: 4px;
}
.portfolio-measure-title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.6em 0;
    background-color: #35a8a5;
    color: #fff;
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: 0.04em;
}
.portfolio-measure-content {
    padding: 1.5em 1.8em calc(1.5em + 10px);
    color: #333;
    font-size: 1.6rem;
    line-height: 1.85;
    text-align: left;
}
.portfolio-measure-content p { margin: 0 0 1em; text-align: left; }
.portfolio-measure-content .color-base,
.portfolio-measure-content .color-base-b { color: #222 !important; }
.portfolio-measure-content .mk-yellow {
    background-image: linear-gradient(transparent 60%, #fff176 60%) !important;
}

/* 施策内の番号付きリスト（ブログolと同じデザイン） */
.portfolio-measure-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1em;
    counter-reset: portfolio-ol;
}
.portfolio-measure-list li {
    position: relative;
    padding-left: 2.2em;
    margin: 0.4em 0;
    counter-increment: portfolio-ol;
    font-weight: 700;
}
.portfolio-divider-arrow {
    text-align: center;
    margin: 0.5em 0;
}
.portfolio-divider-arrow img {
    display: inline-block;
    max-width: 200px;
    height: auto;
}
/* 運用実績ボタンを大きく */
.single-portfolio .jisseki_link,
.content-area .jisseki_link {
    font-size: 1.8rem !important;
    padding: 14px 36px !important;
    border-width: 2px !important;
    display: inline-block;
    font-weight: 700;
}

/* 運用実績アーカイブのカード：テキスト中央揃え */
.portfolio-cards .blog-card-body,
.portfolio-cards .blog-card-title,
.portfolio-cards .blog-card-excerpt { text-align: center; }

/* 運用実績アーカイブのカード：薄ティール背景 */
.portfolio-cards .blog-card a {
    background: #f0f9f8 !important;
    border-color: #cdeae8 !important;
}

/* 運用実績アーカイブのヒーロー画像 */
.portfolio-archive-hero {
    margin: 0 0 45px;
}
.portfolio-archive-hero img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* 個別実績ページのサイドバー幅調整（content-area の flex に対応） */
.content-area .blog-sidebar {
    flex: 0 0 220px;
    margin-left: 32px;
    align-self: flex-start;
}
.content-area .site-main { min-width: 0; flex: 1 1 auto; }
@media (max-width: 980px) {
    .content-area .blog-sidebar {
        flex: 0 0 auto;
        margin-left: 0;
        margin-top: 24px;
        width: 100%;
    }
}

/* 運用実績サイドバー：業種別アコーディオン */
.pf-cat-group {
    margin: 0 0 8px;
}
.pf-cat-group summary { list-style: none; cursor: pointer; }
.pf-cat-group summary::-webkit-details-marker { display: none; }
.pf-cat-heading {
    background: #f3f3f3;
    color: #333;
    padding: 10px 12px;
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 8px;
    border-radius: 3px;
    transition: background 0.2s;
}
.pf-cat-heading:hover { background: #e8e8e8; }
.pf-cat-heading > span { flex: 1; }
.pf-cat-toggle {
    color: #999;
    font-size: 0.85em;
    transition: transform 0.25s;
}
.pf-cat-group[open] .pf-cat-toggle { transform: rotate(180deg); }
.pf-cat-heading i { color: #35a8a5; }
.pf-cat-items {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pf-cat-items li {
    border-bottom: 1px dotted #ddd;
}
.pf-cat-items li:last-child { border-bottom: none; }
.pf-cat-items a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 4px 8px 10px;
    color: #555;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.2s;
}
.pf-cat-items a:hover { color: #35a8a5; }
.pf-cat-items a i { color: #999; font-size: 0.85em; flex-shrink: 0; }

/* 導入の成果（ボーダーなし・中央揃え） */
.portfolio-result-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #35a8a5;
    margin: calc(1.5em - 25px) 0 0.8em;
    background: none;
    border: none;
    padding: 0;
}
.portfolio-result-content {
    background: #e8f3f2;
    border-left: 10px dotted rgba(0,0,0,.1);
    box-shadow: 0 0 0 15px #e8f3f2;
    padding: 1em 1em 1em 1.5em;
    margin: 15px 0 1.5em;
    font-size: 2.4rem;
    line-height: 2;
    color: #222;
    text-align: left;
}
.portfolio-result-content > span {
    display: inline;
    border-bottom: dotted 1px #35a8a5;
    padding-bottom: 6px;
}
.portfolio-result-content *,
.portfolio-result-content .color-base,
.portfolio-result-content .color-base-b {
    color: #222 !important;
}
.portfolio-result-content .mk-yellow,
.portfolio-result-content .mk-yellow1,
.portfolio-result-content .mk-yellow2,
.portfolio-result-content [class*="mk-"],
.portfolio-result-content [class*="storong-"],
.portfolio-result-content > span .mk-yellow {
    background: transparent !important;
    background-image: none !important;
    text-decoration: none !important;
    border: none !important;
    padding-bottom: 0 !important;
}
.portfolio-result-content,
.portfolio-result-content * {
    text-decoration: none !important;
}

.portfolio-measure-list li::before {
    content: counter(portfolio-ol);
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background: #35a8a5;
    color: #fff;
    font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.8em;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* 施策内の見出し（ブログh3と同じデザイン） */
.portfolio-measure-heading {
    font-size: 2.1rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1.5em 0 1em;
    padding: 0.5em 14px;
    background: #f0f9f8;
    border-left: 4px solid #35a8a5;
    color: #222;
    text-align: left;
}
.portfolio-measure-heading:first-child { margin-top: 0; }
.portfolio-measure-content p:last-child { margin-bottom: 0; }

/* スマホ：実績ページ各ボックスのパディングを縮める（ファイル末尾で確実に上書き） */
@media (max-width: 767px) {
    .portfolio-issue-box {
        padding: 1.5em 1.2em 1.2em;
    }
    .portfolio-measure-content {
        padding: 1em 0.9em calc(1em + 6px);
    }
    .portfolio-result-content {
        padding: 0.8em 0.8em 0.8em 1.2em;
    }
}

/* スマホ：実績ページの本文フォントサイズ */
@media (max-width: 767px) {
    .portfolio-hero-subtitle,
    .portfolio-issue-content,
    .portfolio-measure-content {
        font-size: 1.5rem;
    }
    .portfolio-issue-list li,
    .portfolio-issue-list li span,
    .portfolio-measure-list li {
        font-size: 1.5rem;
    }
    .portfolio-result-content {
        font-size: 1.8rem;
    }
    .portfolio-measure-heading {
        font-size: 1.8rem;
    }
    .portfolio-result-title {
        font-size: 2.4rem;
    }
    .single-portfolio .jisseki_link,
    .content-area .jisseki_link {
        font-size: 1.5rem !important;
    }
    /* お知らせ個別ページ：本文・ボックス系すべて1.5remに揃える */
    .newsDetail_body.blog-entry-content,
    .newsDetail_body.blog-entry-content p,
    .newsDetail_body.blog-entry-content .rx-tip,
    .newsDetail_body.blog-entry-content .rx-point,
    .newsDetail_body.blog-entry-content .rx-cta-text,
    .newsDetail_body.blog-entry-content .rx-summary,
    .newsDetail_body.blog-entry-content .rx-note,
    .newsDetail_body.blog-entry-content .rx-qa-q,
    .newsDetail_body.blog-entry-content .rx-qa-a {
        font-size: 1.5rem;
    }
    .newsDetail_title {
        font-size: 2.2rem;
    }
    .newsDetail_body.blog-entry-content h2 {
        font-size: 2rem;
    }
    .newsDetail_body.blog-entry-content .rx-point-title {
        font-size: 1.6rem !important;
    }
    .newsDetail_body.blog-entry-content .rx-tip,
    .newsDetail_body.blog-entry-content .rx-note,
    .newsDetail_body.blog-entry-content .rx-summary,
    .newsDetail_body.blog-entry-content .rx-point,
    .newsDetail_body.blog-entry-content .rx-cta {
        padding: 16px !important;
    }
    /* /blog/ スライダー：SPのみ */
    .blog-pickup-title {
        font-size: 1.6rem;
        line-height: 1.5 !important;
        overflow: hidden !important;
    }
    .blog-pickup-title a {
        display: block;
        line-height: 1.5;
        height: calc(1.5em * 2);
        overflow: hidden;
    }
    .blog-pickup-excerpt {
        font-size: 1.3rem;
    }
    /* ブログ個別記事：本文を1.5rem */
    .blog-article .blog-entry-content {
        font-size: 1.5rem;
    }
    /* ブログ個別記事：ボックス系のパディングを1.6remに */
    .blog-article .blog-entry-content .rx-tip,
    .blog-article .blog-entry-content .rx-note,
    .blog-article .blog-entry-content .rx-summary,
    .blog-article .blog-entry-content .rx-point,
    .blog-article .blog-entry-content .rx-cta {
        padding: 1.6rem !important;
    }
    /* ブログ個別記事：ボックスの見出しを1.6remに */
    .blog-article .blog-entry-content .rx-tip strong,
    .blog-article .blog-entry-content .rx-note strong,
    .blog-article .blog-entry-content .rx-point-title,
    .blog-article .blog-entry-content .rx-summary-title,
    .blog-article .blog-entry-content .rx-cta-title {
        font-size: 1.6rem !important;
    }
    /* ブログ個別記事：記事タイトルを2.2remに */
    .blog-article-title {
        font-size: 2.2rem;
    }
    /* ブログ個別記事：CTA本文を左寄せ */
    .blog-article .blog-entry-content .rx-cta-text {
        text-align: left;
    }
    /* サイドバー本文を1.5remに */
    .blog-sidebar .blog-cats-list a,
    .blog-sidebar .blog-ranking-title,
    .blog-sidebar .pf-cat-items a,
    .blog-sidebar .blog-toc-side-list a {
        font-size: 1.5rem;
    }
    /* サイドバー見出しを1.7remに */
    .blog-sidebar .blog-widget-title,
    .blog-sidebar .pf-cat-heading {
        font-size: 1.7rem;
    }
}
