/* =========================================
   Reset & Base (継承)
   ========================================= */
html {
    font-size: 62.5%;
    /* 1rem = 10px */
    scroll-behavior: smooth;
}

:root {
    --color-primary: #333333;
    --color-accent: #4CB5A2;
    --color-accent-dark: #3A8F7F;
    --color-bg-gray: #F5F5F5;
    --color-bg-dark-gray: #E0E0E0;
    --color-border: #CCCCCC;
    --font-base: 'Noto Sans JP', 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;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-height);
    overflow-x: hidden;
}
img{
    max-width: 100%;
}
p {
    font-weight: 500;
    font-size: 1.6rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s, opacity 0.3s;
}

a:not(.cta-btn):not(.feature-cta-btn):not(.link-with-arrow):not(.sub-cta-btn):not(.c-mobile-cta-btn):not(.p-floating-cta__btn):hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section[id] {
    scroll-margin-top: 100px;
}

/* =========================================
   Animation Utilities (継承)
   ========================================= */
.js-scroll-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.0s var(--ease-out-expo), transform 1.0s var(--ease-out-expo);
    will-change: opacity, transform;
}

.js-scroll-fade-up.is-show {
    opacity: 1;
    transform: translateY(0);
}

.js-scroll-child-stagger .js-scroll-child {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.js-scroll-child-stagger.is-show .js-scroll-child {
    opacity: 1;
    transform: translateY(0);
}

.js-scroll-child-stagger.is-show .js-scroll-child:nth-child(1) {
    transition-delay: 0.1s;
}

.js-scroll-child-stagger.is-show .js-scroll-child:nth-child(2) {
    transition-delay: 0.2s;
}

.js-scroll-child-stagger.is-show .js-scroll-child:nth-child(3) {
    transition-delay: 0.3s;
}

.js-scroll-child-stagger.is-show .js-scroll-child:nth-child(4) {
    transition-delay: 0.4s;
}


/* =========================================
   Header Styles (継承)
   ========================================= */
.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);
}

/* Mobile Menu (Off-canvas) */
.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 {
    margin-bottom: 30px;
}

.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);
}

.c-mobile-cta-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.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);
}

/* =========================================
   Breadcrumb Styles
   ========================================= */
.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: 'Manrope', sans-serif;
}

.p-breadcrumb a:hover {
    text-decoration: underline;
}

/* =========================================
   Page Specific Styles (Marketing Service)
   ========================================= */

/* Sub Page Hero */
.sub-hero {
    padding: 80px 0;
    background-color: var(--color-bg-gray);
    text-align: center;
    position: relative;
}

.sub-hero__inner {
    max-width: 900px;
    margin: 0 auto;
}

.sub-hero__catch {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.sub-hero__sub {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #555;
}

/* Anchor Button for Sub Hero */
.sub-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: #fff;
    padding: 16px 48px;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s var(--ease-out-expo);
}

.sub-hero__btn:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
}

.sub-hero__btn span {
    margin-left: 8px;
}

/* Section Header Styles (Unified with brand_senryaku.html) */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.4;
}

.section-title-en {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 8px;
    color: #666;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.05em;
}

.page-section-desc {
    font-size: 1.8rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 24px auto 0;
}

/* Section: Approach Map */
.section-approach {
    padding: 100px 0 80px;
 
}


/* Map SVG Area */
.approach-map-container {
    margin: 60px 0 80px;
    text-align: center;
    padding: 40px;
    background-color: #fff;
     overflow: hidden;
     transition: .3s;
     position: relative;
}
.approach-map-container img {
    transition: .3s;
    cursor: auto;
}
/* .approach-map-container:hover img {
    transform: scale(1.02);
    transition: .3s;
} */

.feature-zoom-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    pointer-events: none;
    transition: opacity 0.3s;
    line-height: 1;
    display: none;
}

.c-image-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    color: #fff;
    transition: transform 0.3s;
}
.c-image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
    background: #fff;
    padding: 20px;
}
.c-image-modal.is-active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    overflow-y: auto;
}

.approach-map-svg {
    max-width: 100%;
    height: auto;
    width: 100%;
    display: inline-block;
}

.approach-scroll-hint {
    display: none;
    /* Hide on PC */
}

/* Table Styles (Updated to match clean design) */
.approach-table-wrapper {
    margin-top: 40px;
    width: 100%;
}

.approach-table {
    width: 100%;
    border-collapse: collapse;
    /* Outer border removed for cleaner look */
    border-top: 1px solid #ddd;
}

.approach-table th,
.approach-table td {
    padding: 32px 24px;
    /* Slightly more padding vertically */
    text-align: left;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

.approach-table thead th {
    /* Removed background color for clean style */
    background-color: transparent;
    font-weight: 700;
    font-size: 1.6rem;
    color: #333;
    border-bottom: 1px solid #ccc;
    /* Slightly darker for header separator */
}

/* First column styling in body */
.approach-table tbody td:first-child {
    font-weight: 700;
    width: 25%;
    white-space: nowrap;
    /* Keep layer names on one line if possible */
}

.table-note {
    font-size: 1.3rem;
    color: #666;
    margin-top: 20px;
    text-align: left;
    /* Aligned left as per usual document flow */
}

/* Section: Value */
.section-value {
    padding: 80px 0;
    background-color: #F9F9F9;
}

.btn_block{
    padding: 5rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.value-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    margin-bottom: 24px;
    color: var(--color-accent);
}

.value-title {
    font-size: 2.0rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.4;
}

.value-desc {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #555;
}

/* Feature CTA Band (Updated Style to match image) */
.feature-cta-band {
    background-color: #333;
    /* Dark background */
    padding: 80px 0;
    color: #fff;
    /* White text globally in this section */
}

/* New wrapper for flex layout */
.cta-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    /* Space between text and button */
}

.cta-text-area {
    flex: 1;
    /* Takes available space */
    max-width: 700px;
}

.feature-cta-title {
    font-size: 3.2rem;
    /* Increased size */
    font-weight: 900;
    margin-bottom: 24px;
    color: #fff;
    /* White text */
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.feature-cta-desc {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 0;
    /* Removed bottom margin as it's handled by the flex layout gap */
    color: #ccc;
    /* Slightly darker white for description */
    max-width: 100%;
    /* Reset max-width */
    margin-left: 0;
    margin-right: 0;
}

.cta-button-area {
    flex-shrink: 0;
    /* Prevent button from shrinking */
}

.feature-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    /* White background */
    color: #333;
    /* Dark text */
    padding: 20px 60px;
    /* Slightly larger padding */
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s var(--ease-out-expo);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.feature-cta-btn:hover {
    background-color: var(--color-accent);
    /* Accent color on hover */
    color: #fff;
    /* White text on hover */
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* =========================================
   Footer Styles (継承)
   ========================================= */
.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 */
.footer-main {
    background-color: #222;
    color: #fff;
    padding: 80px 0 20px;
}

.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;
}

.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;
}

/* Floating CTA */
.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;
}

.u-pc-only {
    display: block;
}

.u-sp-only {
    display: none;
}


/* =========================================
   Responsive (Page Specific)
   ========================================= */
@media (max-width: 1024px) {
    .p-header__nav {
        display: none;
    }

    .p-header__right-content .c-header-btn {
        display: none;
    }

    .c-hamburger {
        display: block;
    }

    .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;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    p {
        font-size: 1.45rem;
    }

    .p-header {
        padding: 0 20px;
    }

    .p-header__logo img {
        width: 160px;
    }

    /* Sub Hero Responsive */
    .sub-hero {
        padding: 60px 0;
    }

    .sub-hero__catch {
        font-size: 2.6rem;
        text-align: left;
    }

    .sub-hero__sub {
        font-size: 1.6rem;
        text-align: left;
        margin-bottom: 30px;
    }

    .sub-hero__btn {
        width: 100%;
    }

    /* Approach Map Optimization for Mobile */
    .approach-map-container {
        padding: 20px 0;
        overflow-x: auto;
        /* Enable Horizontal Scroll */
        -webkit-overflow-scrolling: touch;
        text-align: left;
        /* Align Left to allow scroll start from left */
    }
    .feature-zoom-icon{
        display: none;
    }
    .approach-map-container img,
    .approach-map-svg {
        width: auto;
        /* Auto width based on min-width */
        height: auto;
        min-width: 160%;
        /* Ensure readability by enforcing min width */
        max-width: 160%;
        /* Allow exceeding container width */
        display: block;
        margin: 0 auto;
    }

    .approach-scroll-hint {
        display: block;
        text-align: center;
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 10px;
        background-color: #f5f5f5;
        padding: 8px;
        border-radius: 4px;
    }

    /* Table Responsive */
    .approach-table-wrapper {
        overflow-x: auto;
    }

    .approach-table {
        min-width: 600px;
    }

    /* Force scroll on small screens */
    .approach-table tbody td:first-child {
        white-space: normal;
    }

    /* Allow break on mobile */

    /* Value Responsive */
    .value-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .value-card {
        padding: 30px 20px;
    }

    /* CTA Responsive (Updated) */
    .feature-cta-band {
        padding: 60px 0;
    }

    .cta-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-text-area {
        max-width: 100%;
    }

    .feature-cta-title {
        font-size: 2.4rem;
        text-align: center;
    }

    .feature-cta-desc {
        text-align: center;
        color: #ccc;
    }

    .cta-button-area {
        width: 100%;
    }

    .feature-cta-btn {
        width: 100%;
        padding: 18px 20px;
    }

    /* Footer Responsive (Inherited) */
    .footer-contact-inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer-contact-block {
        width: 100%;
    }

    .footer-top-row {
        flex-direction: column;
        gap: 60px;
    }

    .footer-logo-col {
        width: 100%;
    }

    .footer-dark-btn {
        max-width: 100%;
    }

    .footer-nav-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
        margin-top: 20px;
    }

    .footer-address-list {
        grid-column: 1 / -1;
        margin-top: 20px;
    }

    .footer-sub-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Floating CTA Responsive (Inherited) */
    .p-floating-cta {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        z-index: 2000;
    }

    .p-floating-cta.is-closed {
        transform: translateY(100%);
    }

    .p-floating-cta__inner {
        width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 20px 16px 28px;
    }

    .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: -36px;
        right: 10px;
        width: 40px;
        height: 36px;
        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;
    }

    .u-pc-only {
        display: none;
    }

    .u-sp-only {
        display: block;
    }
}