/* =========================================
   Reset & Base (Matched barand_senryaku.html)
   ========================================= */
html {
    font-size: 62.5%;
    /* 1rem = 10px */
    scroll-behavior: smooth;
}

:root {
    --color-primary: #333333;
    --color-accent: #4CB5A2;
    /* 画像に基づく緑色 */
    --color-accent-brand: #4CB5A2;
    --color-accent-data: #2C5282;
    --color-accent-dark: #3A8F7F;
    --color-bg-gray: #F5F5F5;
    --color-bg-dark-gray: #E0E0E0;
    --color-border: #CCCCCC;
    --font-base: 'Noto Sans JP', sans-serif;
    --font-en: 'Manrope', sans-serif;
    --header-height: 80px;
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-base);
    color: var(--color-primary);
    line-height: 1.6;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-height);
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility */
.u-pc-only {
    display: block;
}

.u-sp-only {
    display: none;
}

@media (max-width: 768px) {
    .u-pc-only {
        display: none;
    }

    .u-sp-only {
        display: block;
    }
}

/* Animation */
.js-scroll-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.0s var(--ease-out-expo), transform 1.0s var(--ease-out-expo);
}

.js-scroll-fade-up.is-show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Header Styles (From barand_senryaku.html)
   ========================================= */
.p-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: #fff;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-family: 'Noto Sans JP', sans-serif;
    transition: transform 0.3s;
}

.p-header__logo img {
    display: block;
    height: auto;
    width: 200px;
}

.p-header__nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.p-nav__list {
    display: flex;
    align-items: center;
}

.p-nav__item {
    position: relative;
    padding: 0 24px;
}

.p-nav__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: #ccc;
}

.p-nav__link {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    display: block;
    white-space: nowrap;
    position: relative;
}

.p-nav__link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease-out-expo);
}

.p-nav__link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.p-header__right-content {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: auto;
}

.c-header-btn {
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    background-color: #F5F5F5;
    color: #333;
    padding: 10px 20px;
    display: inline-block;
    transition: all 0.3s;
    white-space: nowrap;
}

.c-header-btn:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
}

.c-header-btn--primary {
    background-color: #333;
    color: #fff;
}

/* Hamburger Button */
.c-hamburger {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 16px;
    z-index: 1001;
}

.c-hamburger span {
    position: absolute;
    left: 5px;
    width: 30px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s;
}

.c-hamburger span:nth-of-type(1) {
    top: 12px;
}

.c-hamburger span:nth-of-type(2) {
    top: 19px;
}

.c-hamburger span:nth-of-type(3) {
    top: 26px;
}

.c-hamburger.is-active span:nth-of-type(1) {
    top: 19px;
    transform: rotate(45deg);
}

.c-hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
}

.c-hamburger.is-active span:nth-of-type(3) {
    top: 19px;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.p-mobile-header {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #fff;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out-expo);
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.p-mobile-header.is-active {
    transform: translateX(0);
}

.p-mobile-header__inner {
    padding: 20px 20px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.p-mobile-header__nav-item {
    border-bottom: 1px solid #eee;
}

.p-mobile-header__nav-item a {
    display: block;
    padding: 16px 0;
    font-size: 1.6rem;
    font-weight: 700;
    width: 100%;
    text-align: left;
}

.p-mobile-header__cta-area {
    margin-top: 2rem;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.c-mobile-cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s;
    line-height: 1.4;
    gap: 10px;
}

.c-mobile-cta-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.c-mobile-cta-btn--secondary {
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
}

.c-mobile-cta-btn--primary {
    background-color: #333;
    color: #fff;
    border: 1px solid #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* =========================================
   Breadcrumb
   ========================================= */
.p-breadcrumb {
    background-color: var(--color-bg-gray);
    padding: 20px 0;
    font-size: 1.2rem;
    color: #666;
}

.p-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.p-breadcrumb li {
    display: flex;
    align-items: center;
}

.p-breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 8px;
    font-family: var(--font-en);
}

.p-breadcrumb a:hover {
    text-decoration: underline;
}

/* =========================================
   Page Header
   ========================================= */
.p-page-header {
    background-color: #fff;
    padding: 5rem 0 7rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.p-page-title {
    font-size: 3.6rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    color: var(--color-accent-brand);
}

.p-page-title-en {
    font-family: var(--font-en);
    font-size: 1.4rem;
    color: #666;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 32px;
}

.p-page-lead {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333;
    max-width: 1100px;
    margin: 0 auto;
}

/* =========================================
   Blog List Layout
   ========================================= */
.section-blog-list {
    padding: 80px 0 100px;
    background-color: var(--color-bg-gray);
}

.blog-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Main Content */
.blog-main {
    flex: 1;
    /* width: 0;  <-- ここが問題だったので削除し、下部のメディアクエリで制御します */
    width: auto;
    /* width: 0 から autoに変更してデフォルト挙動に戻します */
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Blog Card Style */
.c-blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
    height: 100%;
    border-bottom: 4px solid transparent;
}

.c-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--color-accent-brand);
}

.c-blog-card__thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background-color: #ddd;
}

.c-blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.c-blog-card:hover .c-blog-card__thumb img {
    transform: scale(1.05);
}

.c-blog-card__body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.c-blog-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-family: var(--font-en);
    flex-wrap: wrap;
    /* モバイルで折り返せるように */
}

.c-blog-card__cat {
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    line-height: 1;
    color: #fff;
    background-color: var(--color-accent-brand);
    /* Brand Color Only */
}

.c-blog-card__date {
    color: #888;
}

.c-blog-card__title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #333;
}

.c-blog-card__desc {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* Sidebar */
.blog-sidebar {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background-color: #fff;
    padding: 30px 24px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.widget-title {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent-brand);
    position: relative;
}

/* Category List Widget */
.widget-cat-list li {
    border-bottom: 1px solid #f0f0f0;
}

.widget-cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 1.4rem;
    font-weight: 500;
    transition: color 0.3s;
}

.widget-cat-list a:hover {
    color: var(--color-accent-brand);
}

.widget-cat-list span {
    background-color: #f0f0f0;
    color: #666;
    font-size: 1.1rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
    font-family: var(--font-en);
}

/* Search Widget */
.widget-search-form {
    display: flex;
}

.widget-search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 1.4rem;
    background-color: #f9f9f9;
}

.widget-search-input:focus {
    outline: none;
    border-color: var(--color-accent-brand);
}

.widget-search-btn {
    background-color: var(--color-accent-brand);
    color: #fff;
    border: none;
    padding: 0 16px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.widget-search-btn:hover {
    background-color: #3aa390;
}

/* Popular Posts Widget (Mini) */
.widget-pop-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.widget-pop-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.widget-pop-thumb {
    width: 80px;
    height: 56px;
    background-color: #eee;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.widget-pop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-pop-content {
    flex: 1;
}

.widget-pop-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 4px;
    display: block;
}

.widget-pop-date {
    font-size: 1.1rem;
    color: #888;
    font-family: var(--font-en);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-weight: 700;
    font-family: var(--font-en);
    font-size: 1.4rem;
    transition: all 0.3s;
}

.pagination-link:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
    opacity: 1;
}

.pagination-link.is-active {
    background-color: var(--color-accent-brand);
    color: #fff;
    border-color: var(--color-accent-brand);
    pointer-events: none;
}

.pagination-dots {
    font-family: var(--font-en);
    color: #666;
    margin: 0 4px;
}

/* =========================================
   Footer (From barand_senryaku.html)
   ========================================= */
/* Contact & Download Area */
.footer-contact-area {
    background-color: #F5F5F5;
    padding: 80px 0;
}

.footer-contact-inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-contact-block {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.footer-contact-desc {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.link-with-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.8rem;
    transition: opacity 0.3s;
    text-align: left;
}

.link-with-arrow span {
    margin-right: 12px;
    font-size: 2.0rem;
    border: 1px solid #333;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.link-with-arrow:hover {
    opacity: 1;
    color: #555;
}

.link-with-arrow:hover span {
    background-color: #333;
    color: #fff;
    transform: translateX(4px);
}

/* Main Footer (Dark) */
.footer-main {
    background-color: #222;
    color: #fff;
    padding: 80px 0 20px;
    position: relative;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.footer-logo-col {
    width: 30%;
}

.footer-logo {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 32px;
    color: #fff;
}

.footer-logo img {
    display: block;
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-dark-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 240px;
    border: 1px solid #fff;
    color: #fff;
    padding: 16px 0;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.3s;
}

.footer-dark-btn:hover {
    background-color: #fff;
    color: #222;
    transform: translateY(-2px);
}

.footer-nav-col {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    gap: 80px;
}

.footer-nav-list li {
    margin-bottom: 16px;
}

.footer-nav-list a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    transition: opacity 0.3s;
    position: relative;
}

.footer-nav-list a:hover {
    opacity: 0.7;
}

.footer-address-list {
    font-size: 1.4rem;
    line-height: 1.8;
}

.footer-nav-head {
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-bottom-row {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 40px;
}

.footer-sub-links {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 0;
    top: 40px;
}

.footer-sub-links a {
    font-size: 1.2rem;
    color: #fff;
}

.footer-copyright {
    font-size: 1.2rem;
    font-family: 'Manrope', sans-serif;
    color: #fff;
    margin-top: 60px;
}

.back-to-top {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222;
    font-size: 2.0rem;
    transition: all 0.3s;
    text-decoration: none;
}

.back-to-top:hover {
    opacity: 0.8;
    transform: translateY(-5px);
}

.back-to-top::before {
    content: '↑';
    font-family: sans-serif;
    font-weight: bold;
}

/* =========================================
   Responsive / Media Queries (Matched barand_senryaku.html)
   ========================================= */
@media (max-width: 1024px) {

    /* Header */
    .p-header__nav {
        display: none;
    }

    .p-header__right-content .c-header-btn {
        display: none;
    }

    /* Specific selector to ensure hidden */
    .c-hamburger {
        display: block;
    }

    /* Blog Layout (Tablet) */
    .blog-layout {
        flex-direction: column;
    }

    /* 【修正】メインコンテンツが消える問題を解消 */
    .blog-main {
        width: 100%;
        /* 横幅を確保 */
        flex: auto;
    }

    .blog-sidebar {
        width: 100%;
        order: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer (Tablet) */
    .footer-nav-col {
        gap: 40px;
    }

    .footer-sub-links {
        position: static;
        margin-bottom: 20px;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: center;
    }

    .footer-copyright {
        margin-top: 20px;
    }

    .back-to-top {
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    body {
        font-size: 1.5rem;
    }

    /* Header Mobile */
    .p-header {
        padding: 0 20px;
    }

    /* Matched 20px */
    .p-header__logo img {
        width: 160px;
    }

    /* Adjusted size */

    /* Page Header */
    .p-page-header {
        padding: 60px 0 40px;
    }

    .p-page-title {
        font-size: 2.8rem;
    }

    /* Blog List */
    .section-blog-list {
        padding: 40px 0 80px;
    }

    /* 【修正】モバイルでも2列表示にする */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2列にする */
        gap: 15px;
        /* 隙間を狭くする */
    }

    /* 【修正】モバイル2列時のカードスタイルの最適化 */
    .c-blog-card__body {
        padding: 16px;
        /* 余白を縮小 */
    }

    .c-blog-card__title {
        font-size: 1.4rem;
        /* タイトルを少し小さく */
        line-height: 1.4;
    }

    .c-blog-card__meta {
        gap: 8px;
        /* メタ情報の隙間を詰める */
        font-size: 1.0rem;
    }

    .c-blog-card__cat {
        padding: 3px 8px;
        /* カテゴリラベルを小さく */
    }

    .c-blog-card__desc {
        font-size: 1.2rem;
        -webkit-line-clamp: 2;
        /* 2行でカットして高さを抑える */
        margin-top: 8px;
    }

    /* Sidebar */
    .blog-sidebar {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Footer Mobile */
    .footer-contact-area {
        padding: 60px 0;
    }

    .footer-contact-inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer-contact-block {
        width: 100%;
    }

    .footer-main {
        padding: 60px 0 20px;
    }

    .footer-top-row {
        flex-direction: column;
        gap: 60px;
        margin-bottom: 40px;
    }

    .footer-logo-col {
        width: 100%;
        text-align: left;
    }

    .footer-dark-btn {
        max-width: 100%;
    }

    .footer-nav-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
        justify-content: start;
        margin-top: 20px;
    }

    .footer-address-list {
        grid-column: 1 / -1;
        margin-top: 20px;
    }

    .footer-nav-list a {
        font-size: 1.3rem;
    }

    .footer-bottom-row {
        padding-top: 20px;
    }

    .footer-sub-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* =========================================
   Floating CTA (From barand_senryaku.html)
   ========================================= */
.p-floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    font-family: var(--font-base);
    transition: transform 0.3s var(--ease-out-expo);
}

.p-floating-cta__inner {
    background-color: #222;
    padding: 24px 20px;
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    text-align: center;
}

.p-floating-cta__close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 28px;
    height: 28px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #eee;
    color: #333;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.p-floating-cta__title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.p-floating-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.p-floating-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: opacity 0.3s, transform 0.3s;
}

.p-floating-cta__btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.p-floating-cta__btn--primary {
    background-color: var(--color-accent);
    color: #fff;
}

.p-floating-cta__btn--secondary {
    background-color: #fff;
    color: #333;
}

.p-floating-cta__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    margin-right: 12px;
    position: relative;
    top: 1px;
}

.p-floating-cta__dot--green {
    background-color: var(--color-accent);
}

.p-floating-cta__toggle {
    display: none;
}

@media (max-width: 768px) {
    .p-floating-cta {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        z-index: 2000;
        transform: translateY(0);
    }

    .p-floating-cta.is-closed {
        transform: translateY(100%);
    }

    .p-floating-cta__inner {
        width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 16px 16px 24px;
    }

    .p-floating-cta__close {
        display: none;
    }

    .p-floating-cta__title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .p-floating-cta__buttons {
        flex-direction: row;
        gap: 8px;
    }

    .p-floating-cta__btn {
        font-size: 1.2rem;
        height: 44px;
    }

    .p-floating-cta__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -32px;
        right: 10px;
        width: 44px;
        height: 32px;
        background-color: #222;
        border-radius: 8px 8px 0 0;
        border: none;
        cursor: pointer;
        color: #fff;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    }

    .p-floating-cta__toggle::before {
        content: '';
        display: block;
        width: 10px;
        height: 10px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(135deg);
        transition: transform 0.3s;
        margin-top: -4px;
    }

    .p-floating-cta.is-closed .p-floating-cta__toggle::before {
        transform: rotate(-45deg);
        margin-top: 4px;
    }
}