body {
    margin: 0;
    background-color: #fff;
    background-image: none !important;
    background-repeat: no-repeat;
}

.page__header {
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    min-width: 100%;
}

.header-black-bar {
    width: 100%;
    height: 16px;
    min-width: 1200px;
    background: #000000;
}

.header-padding {
    padding: 0 20px;
    background-color: #ffffff;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 850px;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    min-width: 0;
    box-sizing: border-box;
}

/* より確実な左右配置のための設定 */
.header__inner .logo.header__logo {
    margin-right: auto;
}

.header__inner .header-cta-button {
    margin-left: auto;
}

.page__header .logo {
    width: 407px;
    height: auto;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: auto;
}

.logo.header__logo {
    display: flex;
    align-items: center;
    width: 407px;
    height: auto;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: auto;
}

.logo.header__logo img {
    width: 100%;
    height: auto;
    max-width: 407px;
}

.header-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
    height: 40px;
    width: 230px;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: auto;
}

.header-cta-button:hover {
    transform: translateY(-2px);
    color: #fff;
}

a:hover {
    color: #FFF;
    text-decoration: none;
    opacity: 0.8;
}

.header-cta-button::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    background-image: url("/wp-content/themes/hyacca/common/assets/img/top/arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* レスポンシブ対応 - サイズは固定、パディングのみ調整 */
@media (max-width: 1060px) {
    .header__inner {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1000px) {
    .header-padding {
        padding: 0 15px;
    }
}

@media (max-width: 900px) {
    .header-padding {
        padding: 0 12px;
    }
}

@media (max-width: 800px) {
    .header-padding {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .header-padding {
        padding: 0 8px;
    }
}

@media (max-width: 600px) {
    .header-padding {
        padding: 0 6px;
    }
}

@media (max-width: 500px) {
    .header-padding {
        padding: 0 4px;
    }
}

.contents-side-margin {
    width: 700px;
    margin: 0 auto;
}

.contents-side-margin.wide {
    width: 1060px;
}

h1, h2 {
    font-size: 32px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: bold;
}

/* Hero Section */
.hero {
    width: 1060px;
    margin: 0px auto;
    display: flex;
}

.logo-image {
    max-width: 400px;
    height: auto;
    margin-bottom: 2rem;
}

.hero .subtitle {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-banner {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    right: 90px;
    transform: translateY(-50%);
    color: #fff;
    z-index: 5;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.hero-text {
    color: #000;
    z-index: 5;
    text-align: center;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    font-weight: bold;
}

.hero-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
    cursor: pointer;
    text-align: center;
    line-height: 1.3;
    width: 250px;
    height: 70px;
    position: relative;
}

.hero-cta-button:visited,
.hero-cta-button:focus {
	color: #fff;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
}

.hero-cta-button::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    background-image: url("/wp-content/themes/hyacca/common/assets/img/top/arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Service Section */
.service-section {
    padding: 40px 0 80px 0;
    background-color: #fff;
}

.section-title {
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #000;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.service-card h3:first-of-type {
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
}

.service-card p {
    line-height: 1.6;
    font-size: 14px;
}

/* Product Section */
.product-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.product-section h2 {
    margin-bottom: 0.7rem;
}

.product-section .subtitle {
    margin-bottom: 2rem;
    font-size: 14px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.product-item {
    text-align: center;
}

.product-item img {
    width: 100%;
}

.product-item p {
    font-weight: 500;
    color: #000;
}

.product-section .load-more-button {
    display: none;
}

#forBusinessAdditionalProducts,
#forBusinessAdditionalProducts.for-business-slide,
#forBusinessAdditionalProducts.closed {
    display: block;
}

/* Use Cases */
.use-cases-section {
    padding: 80px 0;
    background-color: #fff;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.use-case-item {
    text-align: center;
}

.use-case-item img {
    width: 108px;
    margin-bottom: 15px;
}

.use-case-item h3 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.use-case-item .subtitle {
    font-size: 14px;
}

/* Case Section */
.case-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.case-items-container {
    display: flex;
    gap: 20px;
}

.case-item {
    flex: 1;
    line-height: 1.3;
}

.case-item img {
    width: 100%;
    margin-bottom: 30px;
}

.case-section .subtitle {
    font-size: 15px;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
}

.faq-question {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    margin-bottom: 0.5rem;
    background-color: #f5f5f5;
    padding: 8px 16px;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
}

.faq-prefix {
    display: inline-block;
    width: 30px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}

.faq-prefix.answer {
    margin-top: -5px;
}

.faq-question-text {
    margin-left: 8px;
    flex: 1;
}

.faq-answer {
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    padding: 8px 16px;
    font-size: 14px;
}

/* Contact */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 0.7rem;
}

.contact-section .subtitle {
    margin-bottom: 2rem;
    font-size: 14px;
}

.contact-section .contact-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    line-height: 1.3;
    width: 250px;
    height: 70px;
    position: relative;
}

.contact-section .contact-cta-button:visited,
.contact-section .contact-cta-button:focus {
	color: #fff;
}

.contact-section .contact-cta-button:hover {
    transform: translateY(-2px);
}

.contact-section .contact-cta-button::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    background-image: url("/wp-content/themes/hyacca/common/assets/img/top/arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background-color: #fff;
    text-align: center;
    max-width: 1060px;
    margin: 0 auto;
}

.footer .footer-business-nav {
    margin-bottom: 30px;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
}

.footer-business-nav__item {
    margin-bottom: 0.5rem;
}

.footer-business-nav__item a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-business-nav__item a:hover {
    color: #666;
}

.footer-business-nav__item a::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 14px;
    margin-left: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' viewBox='0 0 8 14' fill='none'%3E%3Cpath d='M1 1L7 7L1 13' stroke='%23000'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.footer-business-nav__item a:hover::after {
    transform: translateX(2px);
}

.footer p {
    font-size: 0.65rem;
    color: #888888;
    margin-bottom: 0.5rem;
}

.footer .logo {
    width: 400px;
    height: auto;
    margin-bottom: 0.4rem;
}

.footer .footer__copyright {
    font-size: 10px;
    text-align: center;
    color: #888888;
}

/* =========================================================
   スマホ向け
   ========================================================= */
@media (max-width: 767px) {
    body {
        line-height: 1.5;
    }

    .page__header {
        height: auto;
        min-width: 0;
    }

    .header-black-bar {
        min-width: 0;
        height: 12px;
    }

    .header-padding {
        padding: 8px 16px;
        height: auto;
    }

    .header__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        max-width: none;
    }

    .page__header .logo,
    .logo.header__logo {
        width: 220px;
    }

    .header-cta-button {
        width: 100%;
        max-width: 280px;
        height: 48px;
        font-size: 14px;
        position: relative;
    }

    .contents-side-margin,
    .contents-side-margin.wide {
        width: auto;
        margin: 0 24px;
    }

    h1,
    h2 {
        font-size: 25px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .hero {
        width: 100%;
        display: block;
        padding: 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        text-align: center;
        position: relative;
    }

    .hero-banner {
        position: relative;
        margin: 0;
    }

    .hero-image {
        position: relative;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .hero-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero-content {
        right: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 40px);
        padding: 0 10px;
        gap: 70vw;
        text-align: center;
        align-items: center;
    }

    .service-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 3rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-card img {
        height: auto;
    }

    .service-card h3 {
        font-size: 1.2rem;
        border-bottom: 2px solid #333;
        padding-bottom: 0.5rem;
        text-align: left;
        line-height: 1.8em;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .product-section {
        padding: 60px 0;
    }

    .product-section .subtitle {
        font-size: 14px;
        margin-bottom: 2rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .product-item p {
        font-weight: 500;
    }

    .use-cases-section {
        padding: 60px 0;
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .use-case-item img {
        width: 5.4rem;
        margin-bottom: 0.8em;
    }

    .use-case-item h3 {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .case-section {
        padding: 60px 0;
    }

    .case-items-container {
        flex-direction: column;
    }

    .case-item {
        margin-bottom: 2.5rem;
    }

    .case-item img {
        margin-bottom: 1.5em;
        height: auto;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-item {
        font-size: 0.9rem;
        line-height: 1.6rem;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-prefix {
        width: 16px;
    }

    .faq-answer {
        font-size: 14px;
        line-height: 1.6rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-section .subtitle {
        font-size: 14px;
        margin-bottom: 2rem;
    }

    .contact-section .contact-cta-button {
        width: 205px;
        height: 65px;
        font-size: 1rem;
        margin: 2rem auto 0;
    }

    .footer {
        max-width: none;
        text-align: center;
    }

    .footer .footer-business-nav {
        margin: 30px 0;
        text-align: left;
    }

    .footer .logo {
        width: 70%;
        margin: 0 auto 0.4rem;
    }
}

/* ==========================================================================
   タブレット向け
   ========================================================================== */
@media (max-width: 768px) {
    body {
        margin: 0;
        background-color: #fff;
        background-image: none !important;
        background-repeat: no-repeat;
        line-height: 1.5em;
    }

    .contents-side-margin {
        margin: 0 27px;
    }

    .corporate-logo {
        width: 90%;
        height: auto;
        line-height: 1;
    }

    h1,
    h2 {
        font-size: 1.5625rem;
        margin-bottom: 1.5rem;
        font-weight: bold;
        text-align: center;
        line-height: 1.8125rem;
    }

    h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
        font-weight: bold;
        text-align: center;
        line-height: 1.3em;
    }

    p.subtitle {
        font-size: 0.9rem;
        line-height: 1.6rem;
    }

    /* Cta Button */
    .hero-cta-button:visited,
    .hero-cta-button:focus {
        color: #fff;
    }

    .hero-cta-button::after,
    .contact-cta-button::after {
        content: "";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 17px;
        height: 17px;
        background-image: url("/wp-content/themes/hyacca/common/assets/img/top/arrow.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        line-height: 1.5em;
    }

    .contact-cta-button {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #000;
        color: #fff;
        padding: 0 24px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        text-align: center;
        margin: 2rem auto 0;
        width: 205px;
        height: 65px;
        max-width: 400px;
        position: relative;
        line-height: 1.5em;
    }

    .contact-cta-button:visited,
    .contact-cta-button:focus {
        color: #fff;
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        padding: 0;
        text-align: center;
    }

    .logo-image {
        max-width: 300px;
        height: auto;
        margin-bottom: 2rem;
    }

    .hero-banner {
        position: relative;
        margin: 0;
    }

    .hero-banner img {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero-image {
        position: relative;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .hero-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero-text p {
        font-size: 14px;
        margin: 0;
        font-weight: bold;
        line-height: 1.7em;
    }

    /* Service Section */
    .service-section {
        padding: 30px 0;
        background-color: #fff;
    }

    .section-title {
        font-size: 22px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 3rem;
        color: #000;
    }

    .service-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-card {
        background: #fff;
    }

    .service-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #000;
        border-bottom: 2px solid #333;
        padding-bottom: 0.5rem;
        text-align: left;
        line-height: 1.8em;
    }

    .service-card h3:first-of-type {
        border-bottom: 2px solid #333;
        padding-bottom: 0.5rem;
    }

    /* Product Section */
    .product-section {
        padding: 60px 0;
        background-color: #f8f9fa;
        text-align: center;
    }

    .product-section p {
        margin-bottom: 2rem;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .product-item {
        text-align: center;
    }

    .product-item img {
        width: 100%;
    }

    .product-item p {
        font-weight: 500;
        color: #000;
    }

    /* for-business専用のスライドアニメーション */
    .for-business-slide-wrapper {
        margin: -1rem auto;
    }

    .for-business-slide-wrapper .load-more-button {
        display: block;
        margin: 0 auto;
        padding: 12px 24px;
        background-color: #000;
        color: #fff;
        border: none;
        border-radius: 25px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        width: 253px;
    }

    .for-business-slide-wrapper .load-more-button::after {
        content: "";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        width: 17px;
        height: 17px;
        background-image: url("/wp-content/themes/hyacca/common/assets/img/top/arrow.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: transform 0.3s ease;
    }

    .for-business-slide-wrapper .load-more-button:hover {
        background-color: #333;
        transform: translateY(-2px);
    }

    .for-business-slide-wrapper .load-more-button.closed::after {
        transform: translateY(-50%) rotate(90deg);
    }

    .for-business-slide-wrapper .load-more-button:not(.closed)::after {
        transform: translateY(-50%) rotate(270deg);
    }

    /* 閉じるボタン（show状態）の回転 */
    .for-business-slide-wrapper .close-button::after {
        transform: translateY(-50%) rotate(270deg);
    }

    .for-business-slide-wrapper .for-business-slide {
        display: none;
    }

    .for-business-slide-wrapper .for-business-slide .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }

    /* 閉じるボタンのスタイル */
    .for-business-slide-wrapper .close-button {
        margin-top: 1rem;
        display: none;
    }

    .for-business-slide-wrapper .close-button.show {
        display: block;
    }

    /* 既存のload-more-buttonスタイルは削除 */
    .load-more-button {
        display: none;
    }

    #forBusinessAdditionalProducts {
        display: none;
    }

    #forBusinessAdditionalProducts.show {
        display: block;
    }

    /* Use Cases */
    .use-cases-section {
        padding: 60px 0;
        background-color: #fff;
    }

    .use-cases-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .use-case-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .use-case-item h3 {
        margin-bottom: 0.5rem;
    }

    .use-case-item h3.height-adjust {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 3rem;
    }

    .use-case-item .subtitle {
        margin-top: auto;
        text-align: center;
    }

    .use-case-item img {
        width: 5.4rem;
        margin-bottom: 0.8em;
    }

    /* Case Section */
    .case-section {
        padding: 60px 0;
        background-color: #f8f9fa;
    }

    .case-item {
        margin-bottom: 2.5rem;
    }

    .case-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
        margin-bottom: 1.5em;
    }

    /* FAQ */
    .faq-section {
        padding: 60px 0;
        background-color: #fff;
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background: #fff;
        margin-bottom: 1rem;
        font-size: 0.9rem;
        line-height: 1.6rem;
    }

    .faq-question {
        font-weight: 700;
        color: #000;
        margin-bottom: 0.5rem;
        background-color: #f5f5f5;
        padding: 8px 16px;
        border-radius: 4px;
        display: flex;
        align-items: flex-start;
    }

    .faq-prefix {
        display: inline-block;
        width: 20px;
        font-weight: 700;
        color: #000;
        flex-shrink: 0;
    }

    .faq-prefix.answer {
        margin-top: 0;
    }

    .faq-question-text {
        margin-left: 8px;
        flex: 1;
    }

    .faq-answer {
        display: flex;
        align-items: flex-start;
        padding: 8px 16px;
        flex-direction: row;
    }

    .faq-answer-text {
        margin-left: 28px;
        flex: 1;
    }

    /* Contact */
    .contact-section {
        padding: 60px 0;
        background-color: #f8f9fa;
        text-align: center;
    }

    .contact-section .subtitle {
        margin-bottom: 1rem;
    }

    .contact-section p {
        text-align: center;
    }

    /* Footer */
    .footer {
        padding: 2rem 0;
        background-color: #fff;
        text-align: center;
    }

    .footer .footer-business-nav {
        margin: 30px 30px 30px 30px;
        text-align: left;
        font-size: 17px;
        font-weight: 600;
    }

    .footer-business-nav__item {
        margin-bottom: 1rem;
    }

    .footer-business-nav__item a {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        color: #333;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .footer-business-nav__item a:hover {
        color: #666;
    }

    .footer-business-nav__item a::after {
        content: "";
        display: inline-block;
        width: 8px;
        height: 14px;
        margin-left: 8px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' viewBox='0 0 8 14' fill='none'%3E%3Cpath d='M1 1L7 7L1 13' stroke='%23000'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: transform 0.3s ease;
    }

    .footer-business-nav__item a:hover::after {
        transform: translateX(2px);
    }

    .footer p {
        font-size: 0.65rem;
        color: #888888;
        margin-bottom: 0.5rem;
    }

    .footer .logo {
        width: 70%;
        height: auto;
        margin-bottom: 0.4rem;
    }

    .footer .footer__copyright {
        font-size: 10px;
        text-align: center;
        color: #888888;
    }
}