        /* --- CSS Variables --- */
        :root {
            --primary: #1e3a8a;
            /* アクセント用ネイビー */
            --primary-light: #eff6ff;
            --secondary: #059669;
            /* サブアクセント用グリーン */
            --secondary-light: #ecfdf5;
            --surface: #ffffff;
            --background: #fafafa;
            /* 現行サイトに合わせた背景色 */
            --text-main: #333333;
            /* 黒文字 */
            --text-muted: #666666;
            --border-color: #e5e7eb;
            --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --transition: all 0.3s ease;
        }

        /* --- Base Styles --- */
        * {
            margin: 0;
            padding: 0;
        }

        body {
            font-feature-settings: "palt";
            background-color: var(--background);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        ul {
            list-style: none;
        }

        h2,
        h3,
        h4,
        h5,
        h6 {
            margin-top: 0;
        }

        h2 {
            border-left: none;
            padding-left: 0;
        }

        /* --- Subpage KV --- */
        .font-en {
            font-family: var(--ff-en);
            font-weight: var(--fw-medium);
        }

        .u-select-none {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .p-subpage-kv {
            position: relative;
            margin-bottom: 88px;
        }

        .p-subpage-kv__bg {
            margin-inline: calc(var(--container-size) * -1);
            overflow: hidden;
        }

        .p-subpage-kv__bg.-mid {
            height: 280px;
        }

        .p-subpage-kv__bg picture {
            display: block;
            height: 100%;
        }

        .p-subpage-kv__bg img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .c-heading-subpage {
            --bevel: 20px;
            --calc-bevel: calc(100% - var(--bevel));
            display: grid;
            grid-template-columns: 66px 1fr;
            column-gap: 16px;
            row-gap: 8px;
            align-items: center;
            position: absolute;
            left: 0;
            bottom: -43px;
            background: #fff;
            padding: 24px 32px 24px 42px;
            clip-path: polygon(0 0, var(--calc-bevel) 0, 100% var(--bevel), 100% 100%, 0 100%);
            z-index: 1;
        }

        .c-heading-subpage__title {
            font-size: 34px;
            line-height: 1.3;
        }

        .c-heading-subpage__title.icon {
            grid-column: 2 / 3;
        }

        .c-heading-subpage__icon {
            grid-column: 1 / 2;
            grid-row: 1 / 2;
            width: 66px;
        }

        .c-heading-subpage__icon img {
            display: block;
            width: 100%;
            height: auto;
        }

        .c-heading-subpage__sub {
            grid-column: 1 / -1;
            font-size: 17px;
            line-height: 1.2;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .p-subpage-kv__deco {
            position: absolute;
            right: 5%;
            bottom: -68px;
        }

        .p-subpage-kv__deco svg {
            display: block;
        }

        @media (max-width: 767px) {
            .p-subpage-kv {
                margin-bottom: 72px;
            }

            .p-subpage-kv__bg.-mid {
                height: 260px;
            }

            .c-heading-subpage {
                grid-template-columns: 48px 1fr;
                column-gap: 8px;
                padding: 16px 30px 16px 16px;
                bottom: -40px;
            }

            .c-heading-subpage__title {
                font-size: 24px;
                letter-spacing: 0.1em;
            }

            .c-heading-subpage__icon {
                width: 48px;
            }

            .c-heading-subpage__sub {
                font-size: 13px;
                letter-spacing: 0.01em;
            }

            .p-subpage-kv__deco {
                width: 60px;
                right: 0;
                top: 0;
                bottom: auto;
            }

            .p-subpage-kv__deco svg {
                width: 100%;
                height: auto;
            }
        }

        .container {
            max-width: 1226px;
            /* .l-container__wrap と同じ幅にして左右の隙間をなくす */
            margin: 0 auto;
            padding: 0 20px;
        }

        .text-center {
            text-align: center;
        }
.font-blue {
  color: #1951AA;
}

        /* --- Utility & Layout --- */
        .flex {
            display: flex;
        }

        .items-center {
            align-items: center;
        }

        .justify-between {
            justify-content: space-between;
        }

        .justify-center {
            justify-content: center;
        }

        .grid {
            display: grid;
            gap: 32px;
        }

        @media (min-width: 768px) {
            .grid-cols-2 {
                grid-template-columns: repeat(2, 1fr);
            }

            .grid-cols-3 {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* --- Page Header / Nav Section --- */
        .page-header-section {
            padding: 40px 0;
            background-color: var(--background);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 60px;
        }

        /* --- 5 Process Nav (Page Links) --- */
        .process-nav {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            position: relative;
        }

        @media (min-width: 767px) {
            .process-nav {
                display: flex;
                flex-direction: row;
                gap: 16px;
            }
        }

.nav-title {
  font-size: 24px;
    color: var(--text-main);
    margin-bottom: 10px;
    padding: 0;
    background: transparent;
    border-left: none;
}

        .process-link-card {
            flex: 1;
            background: var(--surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 24px 16px;
            text-align: center;
            position: relative;
            transition: var(--transition);
            box-shadow: 3px 3px 8px 0 rgba(0, 0, 0, 0.08) inset;
            display: block;
        }

        .process-link-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-soft);
        }

        .process-link-card:hover h3 {
            text-decoration: underline;
        }

        .process-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 12px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            /*background: var(--background);
            color: var(--primary);*/
            transition: var(--transition);
        }

        /*.process-link-card:hover .process-icon {
            background: var(--primary-light);
            color: #4AACD5;
        }*/

        .process-link-card h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: var(--text-main);
        }

        .process-link-card p {
            font-size: 14px;
            color: var(--text-main);
            line-height: 1.4;
        }

        /* --- Main Content Area --- */
        .main-content {
            padding-bottom: 100px;
        }

        .section-mb {
            scroll-margin-top: 40px;
        }

        #framework1.section-mb {
            margin-top: 64px;
        }

        #framework2 {
            margin-top: 64px;
        }

        #framework2 + section {
            margin-top: 64px;
        }

#framework3 {
            margin-top: 64px;
        }
#framework4 {
            margin-top: 64px;
        }

hr {
  border: 1px solid var(--border-color);
  margin: 16px auto;
}


        /* --- Pickup / 注目コンテンツ Styles --- */
        .section-title-small {
            font-size: 20px;
            font-weight: bold;
            color: var(--text-main);
            border-left: none;
            padding-left: 0;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title-small i {
            color: var(--primary);
        }

        .pickup-grid {
            display: grid;
            gap: 24px;
            grid-template-columns: 1fr;
        }

        /* バナーを横に最大3つ並べるレイアウト */
        @media (min-width: 768px) {
            .pickup-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .pickup-card {
            background-color: var(--surface);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--border-color);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            color: inherit;
            transition: var(--transition);
        }

        .pickup-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: #93c5fd;
        }

        .pickup-thumb {
            position: relative;
            width: 100%;
            height: 160px;
            /* 全てのバナーで高さを統一 */
            overflow: hidden;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pickup-thumb i {
            font-size: 48px;
            color: rgba(255, 255, 255, 0.8);
            transition: transform 0.5s ease;
        }

        .pickup-card:hover .pickup-thumb i {
            transform: scale(1.1);
        }

        .pickup-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .pickup-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .pickup-tag {
            background-color: var(--primary-light);
            color: var(--primary);
            font-size: 12px;
            font-weight: bold;
            padding: 4px 12px;
            border-radius: 4px;
        }

        .pickup-date {
            font-size: 13px;
            color: var(--text-muted);
            font-family: monospace;
        }

        .pickup-title {
            font-size: 17px;
            font-weight: bold;
            color: var(--text-main);
            line-height: 1.5;
            margin-bottom: 0;
            transition: var(--transition);
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .pickup-card:hover .pickup-title {
            color: var(--primary);
            text-decoration: underline;
        }

        /* --- Shared Section Styles --- */
        /* index.html の .u-container-full と同様、
           .container の 20px ＋ l-container の --container-size を打ち消し枠端まで伸ばす */
        .section-header-box {
            background-color: #A8DAF2;
            margin-inline: calc(-20px - var(--container-size, 20px));
            padding-block: 24px;
            padding-inline: calc(20px + var(--container-size, 20px));
            width: auto;
            max-width: none;
            box-sizing: border-box;
            border-radius: 0;
        }

        .section-title-wrap {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 16px;
        }

        /* PC表示時のタイトル部分の横並び設定 */
        @media (min-width: 768px) {
            .section-title-wrap {
                flex-direction: row;
                align-items: center;
                gap: 24px;
            }

            .section-title-wrap .section-label {
                margin-bottom: 0;
                flex-shrink: 0;
            }

            .section-title-wrap .section-title {
                padding-left: 0;
                border-left: none;
                /* 区切り線 */
            }
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 0;
            font-weight: bold;
            font-size: 14px;
            color: var(--text-main);
        }

        .section-label-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            /*background: #ffffff;
             水色背景上で目立つように白固定 */
            /*color: var(--primary);*/
            /* アイコンの色をすべて統一 */
            font-size: 16px;
            flex-shrink: 0;
        }

        .section-title {
            font-size: 24px;
            color: var(--text-main);
            margin-bottom: 0;
            line-height: 1.4;
            padding: 0;
            background: transparent;
        }
        

        .section-header-desc {
            font-size: 14px;
            color: var(--text-main);
            line-height: 1.6;
        }

        /* ヘッダー全体をリンクにするスタイル */
        a.section-header-box.clickable-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: inherit;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .clickable-header .header-content {
            flex: 1;
        }

        .clickable-header .header-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: var(--surface);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--primary);
            margin-left: 24px;
            flex-shrink: 0;
            transition: var(--transition);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        /* ホバーアクション統一 */
        a.section-header-box.clickable-header:hover {
            background-color: #9cd5ef;
            /* ホバー時に少し色を濃く */
            border-color: rgba(30, 58, 138, 0.15);
        }

        a.section-header-box.clickable-header:hover .header-icon {
            background-color: var(--primary);
            color: white;
            transform: scale(1.05);
        }

        @media (max-width: 767px) {
            a.section-header-box.clickable-header {
                flex-direction: column;
                align-items: flex-end;
            }

            .clickable-header .header-content {
                width: 100%;
            }

            .clickable-header .header-icon {
                margin-top: 16px;
                margin-left: 0;
            }
        }

        /* --- Shared Card Styles --- */
        .card-panel {
            background-color: var(--surface);
            /*border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--border-color);*/
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
        }

        .card-panel-inner {
            padding: 0;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
          align-items: flex-start;
        }

        /* 横長レイアウト用のFlexスタイル (PC) */
        @media (min-width: 768px) {
            .card-panel-inner.horizontal {
                flex-direction: row;
                gap: 40px;
            }

            .card-panel-inner.horizontal .desc-area {
                flex: 1;
            }

            .card-panel-inner.horizontal .content-area {
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
         
        }
@media (max-width: 767px){
  .card-panel {
    background-color: transparent;
  }

  
}
        /* --- 全体をリンクにするカード用の共通スタイル --- */
        a.clickable-card {
            color: inherit;
            transition: var(--transition);
        }

        a.clickable-card:hover {
            background-color: var(--primary-light) !important;
            border-color: rgba(30, 58, 138, 0.15) !important;
            box-shadow: var(--shadow-hover) !important;
        }

        .clickable-card .action-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: var(--surface);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border-color);
            transform: none;
        }

        .clickable-card .action-icon.small {
            width: 36px;
            height: 36px;
        }

        .clickable-card .action-icon__svg {
            display: block;
            flex-shrink: 0;
            /* 右矢印は見た目が左寄りなので、円の中心に合わせて補正 */
            transform: translateX(1px);
        }

        a.clickable-card:hover .action-icon {
            background-color: #A8DAF2;
            color: #fff;
            border-color: #A8DAF2;
            transform: none;
        }

        /* --- Framework 1 Specific (階層化デザイン) --- */
        .card-panel.f1-border {
            border-top: 4px solid var(--primary);
        }

        /* 色を統一 */

        .f1-content-box {
          margin-top: 20px;
            background: var(--surface);
          padding: 24px 32px;
            /*border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);*/
        }

        .f1-main-link {
            display: block;
            padding: 24px;
            color: inherit;
            border-bottom: 1px dashed var(--border-color);
            transition: var(--transition);
        }

        .f1-main-link:hover {
            background: var(--primary-light);
        }

        .f1-main-link:hover .f1-title {
            color: var(--primary);
            text-decoration: underline;
        }

        .f1-title {
            font-size: 18px;
            font-weight: bold;
            color: var(--text-main);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: var(--transition);
        }

        .f1-title i {
            color: var(--primary);
            /* アイコン色を統一 */
        }

        .f1-desc {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .f1-sub-area {
            padding: 20px 24px 0px 24px;
         
            /* 左インデントで階層を表現 */
            background: #fdfdfd;
        }

        .f1-sub-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            background: var(--surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            color: var(--text-main);
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
        }

        .f1-sub-link:hover {
            border-color: #bfdbfe;
            background: var(--primary-light);
        }

        .f1-sub-link:hover .f1-sub-text {
            color: var(--primary);
            text-decoration: underline;
        }

        .f1-sub-text {
            font-weight: bold;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-main);
        }

        /* --- Framework 3 Specific --- */
        

        .practice-stack .card-panel {
            width: 100%;
        }
        .practice_stack {
          margin-top: 20px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            align-items: stretch;
            background: var(--surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 0;
            box-shadow: var(--shadow-soft);
        }

        .practice_stack .card-panel {
            width: 100%;
        }

        /* 1枚カード内レイアウト
           PC:
           [ 画像 + 取組事例一覧 ] [ 適応ビジネス ]
           [ キーワード検索     ] [ 気候リスク管理 ]
                               [ サステナビリティ ]
           画像は左・上端をカード枠いっぱい（community-card-media と同様） */
        .community-card.practice-main-card {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            height: auto;
            padding: 0;
            gap: 0;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .community-card.practice-main-card {
              display: grid;
              grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
              grid-template-rows: auto auto;
              grid-template-areas:
              "intro cats"
              "search search"
              "latest latest";
              gap: 0;
              padding: 0;
              align-items: stretch;
              box-shadow: none;
            }
        }

        .practice-main-card__intro {
            grid-area: intro;
            display: flex;
            flex-direction: column;
            gap: 0;
            text-decoration: none;
            color: inherit;
            min-width: 0;
        }

        @media (min-width: 768px) {
            .practice-main-card__intro {
                flex-direction: column;
                align-items: stretch;
            }
        }

        .practice-main-card__media {
            flex: 0 0 auto;
            width: 100%;
            height: 160px;
            border-radius: 0;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .practice-main-card__media {
                width: 100%;
                height: auto;
                min-height: 160px;
                align-self: stretch;
            }
        }

        .practice-main-card__media img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .practice-main-card__intro-text {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 20px 20px 16px;
        }

        @media (min-width: 768px) {
            .practice-main-card__intro-text {
                padding: 24px 20px 20px 32px;
            }
        }

        .practice-main-card__intro .comm-header h5 {
            text-decoration: none;
            margin: 0;
        }

        .practice-main-card__intro .community-card-footer {
            margin-top: auto;
            padding-top: 8px;
        }

        .practice-main-card__intro:hover .action-icon {
            background-color: #A8DAF2;
            color: #fff;
            border-color: #A8DAF2;
            transform: none;
        }

        .practice-main-card__search {
            grid-area: search;
            margin: 0;
            width: 100%;
            padding: 20px;
            box-sizing: border-box;
        }
        .practice-main-card__search .ps-keyword-search__row {
            width: 100%;
            max-width: 600px;
          }
        @media (min-width: 768px) {
            .practice-main-card__search {
                padding: 12px 20px 24px 32px;
            }
          .practice-main-card__search .ps-keyword-search__row {
              width: 600px;
            }
        }

        .practice-main-card__cats {
            grid-area: cats;
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-width: 0;
            height: 100%;
            padding: 12px 20px;
            box-sizing: border-box;
        }

        @media (min-width: 768px) {
            .practice-main-card__cats {
                padding: 24px 24px 24px 16px;
            }
        }

        .practice-cat-item {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 12px 14px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            background: var(--background);
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
            min-width: 0;
            flex: 1;
        }

        .practice-cat-item:hover {
            background: var(--primary-light);
            border-color: rgba(30, 58, 138, 0.15);
            box-shadow: var(--shadow-soft);
        }

        .practice-cat-item__title {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.4;
            margin: 0;
          color: #1951AA;
            text-decoration: underline;
        }

        .practice-cat-item__desc {
            font-size: 16px;
            line-height: 1.5;
            margin: 0;
        }

        .practice-stack > .content-area {
            width: 100%;
            box-sizing: border-box;
        }

        .community-card.practice-latest-card {
            grid-column: 1 / -1;
            width: 100%;
            margin-top: 24px;
            padding-top: 24px;
            box-shadow: none;
        }
        .content-area.practice-latest-card {
          grid-area: latest;
        }
        @media (max-width: 768px){
         .content-area.practice-latest-card {
                    padding: 20px;
          }
        }
        .practice-latest-card__body {
            box-sizing: border-box;
        }
        .practice-latest-card__body h5 {
          padding-top: 24px;
          border-top: 1px solid var(--border-color);
        }
        @media (min-width: 768px) {
            .practice-latest-card__body {
                padding: 0 24px 24px 32px;
            }
        }

        .practice-latest-card .doc-title {
            margin-bottom: 16px;
        }

        .practice-title-link {
            background: var(--surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md, 8px);
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            height: 100%;
            overflow: hidden;
        }
.practice-main-card__intro .community-card-body {
  flex: 1;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  gap: 12px;
  align-items: flex-start;
}
.practice-main-card__intro .community-card-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding-top: 16px;
        }

.practice-title-link img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  overflow: hidden;
  object-position: center;
}
        .sync-vertical-wrap {
            display: flex;
            justify-content: center;
            position: relative;
            z-index: 10;
        }

        .sync-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 20px;
        }

        .card-panel h3 {
            font-size: 20px;
            color: var(--text-main);
            margin-bottom: 16px;
        }

        .card-panel .section-desc {
            color: var(--text-main);
            font-size: 14px;
            margin-bottom: 24px;
            background: var(--background);
            padding: 12px 16px;
            border-radius: var(--radius-md);
            border-left: 4px solid var(--border-color);
        }

        /* 取組事例のカテゴリと説明のリスト */
        .category-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 24px;
        }

        .category-item {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
        }

        .tag {
            padding: 4px 12px;
            background: var(--background);
            color: var(--text-main);
            font-size: 12px;
            font-weight: 500;
            border-radius: 4px;
            border: 1px solid var(--border-color);
        }

        .category-desc {
            font-size: 14px;
            color: var(--text-main);
            line-height: 1.4;
            padding-left: 2px;
        }

        .btn-text {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: bold;
            color: var(--text-main);
        }

        .btn-text:hover {
            text-decoration: underline;
        }

        /* 新着記事リスト (取組事例用) */
        .recent-articles {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
        }

        .article-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 12px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            background: var(--surface);
            transition: var(--transition);
        }

        .article-item:hover {
            background: var(--background);
            border-color: var(--primary);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .article-thumb {
            width: 160px;
            height: 120px;
            background-color: #fafafa;
            border-radius: 4px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
          color: grey;
        }

        .article-thumb i {
            font-size: 24px;
        }

        .article-info {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
          padding: 14px 14px 14px 0;
        }

        .article-date {
            font-size: 12px;
            color: var(--text-muted);
            font-family: monospace;
        }

        .article-title {
            font-size: 16px;
            font-weight: bold;
            color: var(--text-main);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: var(--transition);
        }

        .article-item:hover .article-title {
            color: var(--primary);
            text-decoration: underline;
        }

        /* index-mock2 右カラム：記事カードを枠いっぱい（内側パディングなし） */
        .content-area .recent-articles .article-item {
            padding: 0;
            overflow: hidden;
        }

        .content-area .recent-articles .article-thumb {
            border-radius: 0;
        }

        /* private-sector.js が注入するカード（index.html と同様の3カラム横並び） */
        .card-panel-inner.vertical > .content-area,
        .card-panel > .content-area {
            width: 100%;
            margin-top: 0;
            box-sizing: border-box;
        }

        .content-area .recent-articles {
            width: 100%;
        }

        .content-area .p-private-sector__card-wrap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
            width: 100%;
            margin-top: 24px;
          padding: 0 12px;
        }

        .content-area .p-private-sector__card-wrap .c-card[data-card="with-img"] {
            display: flex;
            flex-direction: column;
            color: inherit;
            text-decoration: none;
            min-width: 0;
        }

        .content-area .p-private-sector__card-wrap .u-card-img {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 215px;
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid var(--border-color, #D9D9D9);
        }

        .content-area .p-private-sector__card-wrap .u-card-img img,
        .content-area .p-private-sector__card-wrap .c-card__figure img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .content-area .p-private-sector__card-wrap .hover-img-scale:hover img {
            transform: scale(1.05);
        }

        .content-area .p-private-sector__card-wrap .c-card__body {
            display: flex;
            flex-direction: column;
            flex: 1;
            margin-top: 0;
        }

        .content-area .p-private-sector__card-wrap .c-card__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
            margin-bottom: 12px;
        }

        .content-area .p-private-sector__card-wrap .c-card__tag {
            color: #fff;
            font-size: 12px;
            padding: 2px 5px;
            background: #727272;
        }

        .content-area .p-private-sector__card-wrap .c-card__title {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.5;
        }

        .content-area .p-private-sector__card-wrap .c-card__wrap {
            display: flex;
            margin-top: auto;
            padding-top: 16px;
        }

        .content-area .p-private-sector__card-wrap .c-card__time {
            font-size: 14px;
        }

        @media (max-width: 959px) {
            .content-area .p-private-sector__card-wrap {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        /* --- Framework 4: Knowledge Grid (1カラム構成) --- */
        .knowledge-grid {
        margin-top: 16px;
        display: grid;
        gap: 16px;
        }

        @media (min-width: 768px) {
            .knowledge-grid {
              margin-top: 20px;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .md-col-span-2 {
                grid-column: span 2 / span 2;
            }
        }

        @media (min-width: 1024px) {
            .knowledge-grid {
              margin-top: 24px;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }

            .lg-col-span-1 {
                grid-column: span 1 / span 1;
            }

            .lg-col-span-2 {
                grid-column: span 2 / span 2;
            }

            .lg-col-span-3 {
                grid-column: span 3 / span 3;
            }
        }

        .doc-card {
            background: var(--surface);
            padding: 16px 20px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
        }

        a.doc-card.clickable {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .doc-card.clickable-db:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-soft);
        }
        .doc-card.clickable:hover {
          background-color: var(--primary-light) !important;
          border-color: rgba(30, 58, 138, 0.15) !important;
          box-shadow: var(--shadow-hover) !important;
}

        .doc-card-flex {
          flex: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        /* 縦2行・上半分画像（1カラム幅） */
        .doc-card-feature {
            padding: 0;
            overflow: hidden;
            grid-row: span 2;
            align-items: stretch;
        }

        .doc-card-feature .doc-card-media {
            flex: none;
            align-self: stretch;
            width: 100%;
            height: 100px;
            background: #e2e8f0;
            overflow: hidden;
        }

        .doc-card-feature .doc-card-media img {
            display: block;
            width: 100%;
            height: 100%;
            min-width: 100%;
            min-height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .doc-card-feature .doc-card-body {
            flex: 1 1 50%;
            padding: 16px 20px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
        }

        @media (max-width: 767px) {
            .doc-card-feature {
                grid-row: span 1;
            }

            .doc-card-feature .doc-card-media {
                height: 100px;
            }
        }

        .doc-card-center {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

.doc-card h3 {
  font-size: 20px;
  color: var(--text-main);
  margin-bottom: 16px;
}

        .doc-icon {
            color: var(--text-main);
            font-size: 24px;
            margin-top: 2px;
        }

        .doc-title {
            font-weight: bold;
            font-size: 16px;
            color: var(--text-main);
            line-height: 1.4;
        }

        .doc-card.clickable:hover .doc-title {
            text-decoration: underline;
        }
.doc-card.clickable-db:hover .doc-title {
            text-decoration: underline;
        }

        .doc-header {
            font-weight: bold;
            color: var(--text-main);
            /*margin-bottom: 16px;*/
            font-size: 17px;
             /*border-bottom: 1px solid var(--border-color);*/
            padding-bottom: 10px;
        }

        .chip-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .chip {
            font-size: 14px;
            background: var(--background);
            color: var(--text-main);
            padding: 8px 16px;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .chip:hover {
            background: var(--primary-light);
            text-decoration: underline;
            border-color: #bfdbfe;
        }

        .doc-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .doc-link {
            font-size: 14px;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .doc-link i {
            font-size: 12px;
            color: var(--text-main);
        }

        .doc-link:hover {
            text-decoration: underline;
        }

        .tag-small-list {
          padding: 0;
            display: flex;
          flex-direction: row;
          gap: 12px;
          width: 100%;
        }

        /* a（chip）と p（説明文）を縦積み・左寄せ */
        .tag-small-list:has(.category-desc) {
            flex-direction: column;
            flex-wrap: nowrap;
            align-items: flex-start;
        }

        .tag-small-list:has(.category-desc) .category-desc {
            margin-top: 6px;
            margin-bottom: 16px;
            width: 100%;
        }

        .tag-small-list:has(.category-desc) .category-desc:last-child {
            margin-bottom: 0;
        }
.tag-small-list2 {
            display: flex;
  flex-direction: row;
  gap: 24px;
        }

@media (max-width: 767px) {
  .tag-small-list2 {
            display: flex;
  flex-direction: column;
  gap: 18px;
  }
}


        .tag-small {
            font-size: 13px;
            background: var(--background);
            color: var(--text-main);
            padding: 6px 12px;
            border-radius: 4px;
            border: 1px solid var(--border-color);
        }

        /* --- Framework 5 --- */
        .community-container {
            margin: 24px auto;
        }

        .community-card, .community-card-logo {
            background: var(--surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 0;
            box-shadow: var(--shadow-soft);
            display: flex;
            flex-direction: row;
            align-items: stretch;
            height: 100%;
            overflow: hidden;
        }

        .community-card-media {
            flex: 0 0 33.333%;
            max-width: 33.333%;
            background: #e2e8f0;
            overflow: hidden;
        }

        .community-card-media picture {
            display: block;
            width: 100%;
            height: 100%;
        }

        .community-card-media img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
      .community-card-media-logo {
            flex: 0 0 33.333%;
            max-width: 33.333%;
            background: #ffffff;
            overflow: hidden;
        }

        .community-card-media-logo img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .community-card-body {
            flex: 1;
          width: 100%;
            min-width: 0;
            display: flex;
          padding: 16px 20px;
            flex-direction: column;
        }

        .community-card-footer {
            margin-top: auto;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding-top: 16px;
        }




        @media (max-width: 767px) {
            .community-card, .community-card-logo {
                flex-direction: column;
            }

            .community-card-media, .community-card-media-logo {
                flex: none;
                max-width: 100%;
                width: 100%;
                height: 140px;
            }
        }

        .comm-header {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
        }

        .comm-header .comm-title,
        .comm-header h5 {
            flex: 1 1 auto;
            min-width: 0;
            margin: 0;
        }

        .comm-header .action-icon {
            flex-shrink: 0;
            margin-left: auto;
            margin-top: 0;
            width: 26px;
            height: 26px;
        }

        .comm-header .action-icon.small {
            width: 26px;
            height: 26px;
        }

        .comm-header .action-icon__svg {
            width: 12px;
            height: 12px;
        }
        

        .comm-title {
            font-size: 17px;
            font-weight: bold;
            color: var(--text-main);
            line-height: 1.4;
        }

        .comm-desc {
          padding-top: 6px;
            font-size: 16px;
            color: var(--text-main);
            flex-grow: 1;
            line-height: 1.5;
        }

        /* --- 本番 index から移したピックアップ（box タイプ） --- */
        .ps-pick-up {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            padding: 0;
            align-items: stretch;
        }

        @media (min-width: 768px) {
            .ps-pick-up {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .ps-pick-up > a {
            display: flex;
            flex-direction: column;
            height: 100%;
            color: inherit;
        }

        .pickup-box {
            padding: 20px;
            flex: 1;
            height: 100%;
            transition: background-color 0.3s;
            background-size: 80px;
            background-repeat: no-repeat;
            background-position: right bottom;
            background-color: #f0fafc;
            border: 1px solid #ccc;
        }

        .ps-pick-up h3 {
            line-height: 1.2;
            margin-bottom: 5px;
            font-size: 17px;
        }

        .pickup-box p {
            font-size: 14px;
            line-height: 1.4;
            margin-top: 1em;
            padding-right: 40px;
        }

        .pickUp-02 {
            background-image: url("../../local/img/pinkup-bg02.png");
        }

        .pickUp-03 {
            background-image: url("../../local/img/pinkup-bg03.png");
        }

        .pickUp-04 {
            background-image: url("../../local/img/pinkup-bg04.png");
        }
        .pickUp-06 {
            background-image: url("../../local/img/pinkup-bg06.png");
        }

        @media (any-hover: hover) {
            .ps-pick-up > a:hover .pickup-box {
                background-color: #A8DAF2;
            }
        }

/* ===== 新着情報・イベント（index.html と表示を揃える / .p-top-latest-event-wrap にスコープ） ===== */
.p-top-latest-event-wrap {
  --le-black: #2A2D32;
  --le-border: #D9D9D9;
  --le-blue-200: #4AACD5;
  --le-ff-en: "Poppins", "Noto Sans JP", sans-serif;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 80px;
  border-top: 1px solid var(--border-color);
  color: var(--le-black);
}
.p-top-latest-event-wrap a {
  color: var(--le-black);
}
.p-top-latest-event-wrap .stack {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* --- LATEST / EVENT セクション --- */
.p-top-latest-event-wrap .c-latest {
  position: relative;
  padding-inline: 20px;
}
.p-top-latest-event-wrap .c-event {
  position: relative;
  padding-inline: 20px;
}
.p-top-latest-event-wrap .c-latest .stack,
.p-top-latest-event-wrap .c-event .stack {
  margin-top: 10px;
}
.p-top-latest-event-wrap .c-latest .btn-wrap,
.p-top-latest-event-wrap .c-event .btn-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* --- 見出し --- */
.p-top-latest-event-wrap .c-heading-inline {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.p-top-latest-event-wrap .c-heading-inline__title {
  font-size: 37px;
  font-weight: 700;
  margin-top: 0;
  padding: 0;
  border-left: none;
}
.p-top-latest-event-wrap .c-heading-inline__sub {
  font-size: 17px;
  text-transform: uppercase;
}

/* --- カード共通 --- */
.p-top-latest-event-wrap .c-card__time {
  font-size: 12px;
}

/* --- 新着カード --- */
.p-top-latest-event-wrap .c-card-latest {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  column-gap: 16px;
  row-gap: 8px;
  padding-block: 20px;
  border-bottom: 1px solid var(--le-border);
}
.p-top-latest-event-wrap .c-card-latest__title {
  grid-column: 1 / -1;
  font-size: 14px;
  font-weight: 700;
}

/* --- イベントカード --- */
.p-top-latest-event-wrap .c-card-event {
  display: grid;
  align-items: center;
  grid-template-columns: max-content 1fr;
  column-gap: 45px;
  row-gap: 8px;
  padding-block: 20px;
  border-bottom: 1px solid var(--le-border);
}
.p-top-latest-event-wrap .c-card-event__city {
  font-size: 14px;
}
.p-top-latest-event-wrap .c-card-event__icon {
  translate: 0 -2px;
}
.p-top-latest-event-wrap .c-card-event__top-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-top-latest-event-wrap .c-card-event__bottom-wrap {
  grid-column: 1 / -1;
  display: flex;
  gap: 27px;
  font-size: 12px;
}

/* --- 矢印ボタン --- */
.p-top-latest-event-wrap .btn-arrow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 14px;
  position: relative;
  border: 1px solid var(--le-border);
  font-weight: 700;
  z-index: 1;
}
.p-top-latest-event-wrap .btn-arrow.-en-small {
  font-size: 14px;
  font-family: var(--le-ff-en);
  padding: 11px 16px;
  grid-template-columns: 1fr auto;
  column-gap: 8px;
}
.p-top-latest-event-wrap .btn-arrow.-en-small::before {
  display: none;
}
.p-top-latest-event-wrap .rss-btn {
  margin-left: auto;
  margin-right: 20px;
  padding: 8px;
  border: 1px solid var(--le-border);
  border-radius: 4px;
  display: inline-flex;
}

/* --- 矢印スライドアニメーション --- */
.p-top-latest-event-wrap .arrow-hover .icon-body {
  width: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.p-top-latest-event-wrap .arrow-hover .icon-wrap {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  translate: -300%;
  transition: translate 0.6s cubic-bezier(0.87, 0, 0.13, 1);
}

/* --- リンクホバー背景 --- */
.p-top-latest-event-wrap .link-hover {
  position: relative;
}
.p-top-latest-event-wrap .link-hover .link-hover-deco {
  position: absolute;
  inset: 0;
  background: #F0F4F4;
  width: 0;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s, width 0.1s;
  transition-delay: 0s, 0.6s;
  z-index: -1;
}
.p-top-latest-event-wrap .link-hover.-edge .link-hover-deco {
  left: -8px;
}

/* --- ボタン枠線ドロー --- */
.p-top-latest-event-wrap .btn-arrow-hover .line::before,
.p-top-latest-event-wrap .btn-arrow-hover .line::after {
  content: '';
  background: var(--le-black);
  position: absolute;
  transition: 0.2s;
}
.p-top-latest-event-wrap .btn-arrow-hover .line.-top-left::before {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  transform-origin: left;
}
.p-top-latest-event-wrap .btn-arrow-hover .line.-top-left::after {
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  transform-origin: bottom;
  transition-delay: 0.2s;
}
.p-top-latest-event-wrap .btn-arrow-hover .line.-bottom-right::before {
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  transform-origin: right;
}
.p-top-latest-event-wrap .btn-arrow-hover .line.-bottom-right::after {
  width: 1px;
  height: 100%;
  bottom: 0;
  right: 0;
  transform-origin: top;
  transition-delay: 0.2s;
}

@media (any-hover: hover) {
  .p-top-latest-event-wrap .arrow-hover:hover .icon-wrap {
    translate: 2px 0 !important;
  }
  .p-top-latest-event-wrap .link-hover:hover.-edge .link-hover-deco {
    width: calc(100% + 16px);
  }
  .p-top-latest-event-wrap .link-hover:hover .link-hover-deco {
    opacity: 1;
    width: 100%;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .p-top-latest-event-wrap .btn-arrow-hover:hover .line.-top-left::before,
  .p-top-latest-event-wrap .btn-arrow-hover:hover .line.-top-left::after,
  .p-top-latest-event-wrap .btn-arrow-hover:hover .line.-bottom-right::before,
  .p-top-latest-event-wrap .btn-arrow-hover:hover .line.-bottom-right::after {
    scale: 0;
  }
}

/* --- レスポンシブ（1カラム化） --- */
@media (max-width: 959px) {
  .p-top-latest-event-wrap {
    grid-template-columns: 1fr;
  }
  .p-top-latest-event-wrap .c-heading-inline {
    flex-direction: column;
    align-items: start;
    gap: 14px;
  }
  .p-top-latest-event-wrap .c-heading-inline__title {
    font-size: 24px;
  }
  .p-top-latest-event-wrap .c-heading-inline__sub {
    font-size: 12px;
  }
  .p-top-latest-event-wrap .c-card-latest {
    column-gap: 10px;
  }
  .p-top-latest-event-wrap .c-card-latest__title {
    font-size: 12px;
  }
  .p-top-latest-event-wrap .c-card-event {
    column-gap: 16px;
  }
  .p-top-latest-event-wrap .c-card-event__bottom-wrap {
    gap: 24px;
  }
  .p-top-latest-event-wrap .c-latest .btn-wrap,
  .p-top-latest-event-wrap .c-event .btn-wrap {
    width: 100%;
  }
  .p-top-latest-event-wrap .c-latest .btn-wrap .btn-arrow,
  .p-top-latest-event-wrap .c-event .btn-wrap .btn-arrow {
    width: 100%;
    text-align: center;
  }
}

/* ===== キーワード検索フォーム（ps-db.html へ遷移） ===== */
.ps-keyword-search {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ps-keyword-search__row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.ps-keyword-search__input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ps-keyword-search__input:focus {
  border-color: #0078d7;
  box-shadow: 0 0 4px rgba(0, 120, 215, 0.3);
}
.ps-keyword-search__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.ps-keyword-search__icon {
  display: block;
  flex-shrink: 0;
}
.ps-keyword-search__btn:hover {
  opacity: 0.85;
}
.ps-keyword-search__modes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.ps-keyword-search__modes label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  cursor: pointer;
}
.ps-keyword-search__modes input[type="radio"] {
  accent-color: #0078d7;
}

@media (max-width: 767px) {
  .card-panel-inner.horizontal .desc-area {
    padding: 24px;
  }

  .card-panel-inner.horizontal .desc-area,
  .card-panel-inner.horizontal .content-area,
  .tag-small-list,
  .tag-small-list .doc-card,
  .ps-keyword-search,
  .ps-keyword-search__row,
  .ps-keyword-search__input,
  .ps-keyword-search__btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .ps-keyword-search {
    margin-top: 0px;
  }
.ps-keyword-search__row {
flex-direction: row;
}

.ps-keyword-search__input {
flex: 1;
width: auto;
}

.ps-keyword-search__btn {
width: auto;
flex-shrink: 0;
padding: 8px 14px;
}

}

/*自治体による事業者支援ページへのボタン*/
.local-link {
  background: var(--surface);
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 100%;
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
}

.local-link .community-card {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px;
}
@media (min-width: 768px){
  .local-link .community-card {
  padding: 20px 20px 20px 32px;
  }
}

.local-link .community-card-body {
  flex: 1;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 0;
  align-items: center;
}

.local-link .community-card-footer {
  margin-top: 0;
  padding: 0;
}

@media (max-width: 959px) {
  .practice-title-link .community-card {
  flex: 1;
  width: 100%;
  flex-direction: column;
  align-items: start;
}
  .practice-title-link .community-card-body {
  flex-direction: column;
    align-items: start;
}
  
.practice-main-card__intro .community-card-footer {
  padding: 0;
        }
.local-link .community-card {
  flex: 1;
  width: 100%;
  align-items: stretch;
  gap: 12px;
}
  .local-link .community-card-body {
  flex-direction: column;
    align-items: start;
    gap: 12px;
}
  .local-link .community-card-footer {
  padding: 0;
    justify-content: flex-end;
    align-items: flex-end;
        }
}

@media (min-width: 960px) {
  .process-link-card p,
  .section-header-desc,
  .f1-desc,
  .card-panel .section-desc,
  .category-desc,
  .pickup-box p {
    font-size: 14px;
  }
}