@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #666666;
    --text-color: #1a1a1a;
    --bg-color: #ffffff;
    --gray-bg: #f5f5f5;
    --section-margin-pc: 120px;
    --section-margin-sp: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-size: 16px;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Disable text selection for copy prevention */
}

/* PC時：SP固定背景レイヤーを非表示 */
.sp-fixed-bg {
    display: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    object-fit: cover;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3 {
    line-height: 1.4;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 4%;
}

.logo {
    flex: 0 0 200px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-pc {
    display: block;
    flex: 1;
    text-align: center;
}

.nav-pc ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-pc ul li a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.header-cta {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex: 0 0 200px;
}

.btn-header {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-header:hover {
    background: var(--accent-color);
}

/* Section Headings */
.section-header {
    margin-bottom: 60px;
    text-align: left;
    /* Default left aligned */
    position: relative;
    color: var(--text-color);
}

/* Centered Style for Contact */
.section-header.center {
    text-align: center;
}

.section-label {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-header.center .section-label {
    color: #000;
    /* Black for centered contact */
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    display: none;
    /* Removed general underline */
}

.section-header.center .section-title::after {
    display: block;
    /* Keep for contact */
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #000;
}

/* Lightbox Overrides */
.lum-lightbox {
    z-index: 2000 !important;
}

/* Sections */

/* Sections */
section {
    margin-bottom: var(--section-margin-pc);
}



/* About Us */
.about {
    margin-top: 0;
    padding: var(--section-margin-pc) 0 0;
    background-color: #ffffff;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    overflow-x: hidden;
}

.deco-about {
    position: absolute;
    left: 40px;
    /* Slightly more inside for better overlap with the margin/text box */
    bottom: -30px;
    /* Overlap with the section margin below */
    width: 480px;
    /* Slightly larger */
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-5deg);
    /* Slight tilt for 'elegant' look */
}

.deco-about img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .deco-about {
        display: none;
    }
}

.fv {
    margin-bottom: 0;
    position: relative;
    width: 100%;
}

/* FV Section Picture Image */
.fv picture {
    display: block;
    width: 100%;
}

.fv picture img {
    display: block;
    width: 100%;
    height: auto;
}

.swiper-container-fv {
    width: 100%;
    height: calc(100vh - 80px);
    /* Subtract header height */
    margin-top: 80px;
}

.swiper-slide picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
}

.scroll-down::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
}

/* SV */
.sv {
    margin-top: var(--section-margin-pc);
}

.sv-banner a {
    display: block;
    position: relative;
    overflow: hidden;
}

.sv-banner img {
    transition: 0.8s;
}

.sv-banner:hover img {
    transform: scale(1.05);
}

.flex-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.flex-layout.reverse {
    flex-direction: row-reverse;
}

.col-img {
    flex: 0 0 45%;
}

.col-txt {
    flex: 1;
}

.broken-grid {
    position: relative;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.broken-grid .col-img {
    flex: 0 0 55%;
    /* Reduced size */
    position: relative;
    z-index: 11;
}

.broken-grid .col-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.broken-grid .col-txt {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 80px 60px;
    flex: 0 0 550px;
    /* Slightly wider text box */
    margin-right: -150px;
    /* Adjusted overlap */
    position: relative;
    z-index: 12;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
}



/* CTA Area */
.cta-area {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.cta-area.compact {
    padding: 80px 0;
    /* Symmetric gap: Section Start to Heading */
}

.cta-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 0;
    /* Rely on header margin-bottom for precise gap control */
}

/* Precise spacing for Contact section */
.cta-area.compact .section-header.center {
    margin-bottom: 80px;
    /* Gap between heading and buttons (Equal to padding-top) */
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 280px;
    height: 64px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
    border-radius: 4px;
}

.btn-cta.tel {
    background: var(--primary-color);
    color: #fff;
}

.btn-cta.insta {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-cta:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Service (Parallax Addition) */
.service.parallax {
    position: relative;
    background-image: url('../img/background.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #fff;
}

.service.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Reduced from 0.7 for better visibility */
}

.service.parallax .inner {
    position: relative;
    z-index: 1;
}

.service.parallax .section-header {
    color: #fff;
}

.service.parallax .section-label {
    color: #fff;
    opacity: 0.8;
}

.service.parallax .section-title::after {
    display: none;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    background: #fff;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service.parallax .service-item {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
}

.service-img {
    margin-bottom: 25px;
    overflow: hidden;
    margin: -30px -30px 25px -30px;
}

.service-img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.service-num {
    font-size: 32px;
    font-weight: 300;
    color: #ccc;
    line-height: 1;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 19px;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

.service-item p {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}

/* Menu / Recommend */
.menu-recommend {
    position: relative;
    background-image: url('../img/background.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #fff;
}

.menu-recommend::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Added similar overlay adjustment */
}

.menu-recommend::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.menu-recommend .inner {
    position: relative;
    z-index: 1;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.menu-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-thumb {
    flex: 0 0 100px;
    height: 100px;
}

.menu-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.menu-info p {
    font-size: 14px;
    opacity: 0.8;
}

/* Projects */
.projects {
    margin-bottom: 0;
    /* Removed margin for CTA centering */
}

.projects-slider {
    padding: 0 50px;
    /* Space for buttons */
}

.project-slide {
    position: relative;
}

.compare-box {
    display: flex;
    gap: 20px;
    justify-content: center;
    /* Center images within slide */
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.compare-item {
    position: relative;
    flex: 1;
}

.compare-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.1em;
}

.compare-item img {
    width: 100%;
    aspect-ratio: 1/1;
    /* Square ratio */
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.zoom-caption {
    text-align: center;
    font-size: 12px;
    color: var(--accent-color);
    margin-top: 15px;
    margin-bottom: 40px;
    display: block;
}

/* Video Grid under Projects */
.project-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.video-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.video-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.video-card:hover img {
    transform: scale(1.05);
}

.video-card::after {
    display: none;
    /* Hide the static FontAwesome pseudo-element */
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10;
    border: 2px solid #fff;
    pointer-events: auto;
    /* Ensure it can be clicked */
}

.play-overlay i {
    padding-left: 5px;
}

.video-card:hover .play-overlay {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card.playing .play-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-card video {
    cursor: pointer;
    background-color: #f5f5f5;
    /* Fallback background while video loads */
}

.video-title {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 991px) {
    .project-videos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .project-videos {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}



/* Access / Contact */
.access {
    background-color: #f9f9f9;
    padding: var(--section-margin-pc) 0;
    position: relative;
    overflow: hidden;
}

.deco-access {
    position: absolute;
    right: -50px;
    bottom: 0;
    width: 900px;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.deco-access img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .deco-access {
        display: none;
    }
}

.access .inner {
    position: relative;
    z-index: 10;
}

.access-flex {
    display: flex;
    gap: 40px;
    align-items: stretch;
    /* Map and Info card will have same height */
}

.map-area {
    flex: 1;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-area iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.info-area {
    flex: 0 0 45%;
    /* Slightly wider info area */
    max-width: 540px;
}

.access-info-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.access-info-card .company-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
    line-height: 1.2;
}

.access-contacts {
    margin-bottom: 30px;
}

.access-contacts p {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #444;
}

.access-contacts p span {
    flex: 1;
}

.access-contacts i {
    color: var(--primary-color);
    width: 20px;
    flex-shrink: 0;
    text-align: center;
    margin-top: 5px;
    font-size: 16px;
}

.access-contacts a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.access-details-table {
    border-top: 1px solid #eee;
}

.detail-row {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row dt {
    width: 100px;
    flex-shrink: 0;
    font-weight: 700;
    color: var(--accent-color);
}

.detail-row dd {
    flex: 1;
    margin-left: 0;
    line-height: 1.8;
    color: #333;
}

.access-info-card .sns-links {
    margin-top: auto;
    padding-top: 25px;
    display: flex;
    gap: 20px;
}

.sns-links a {
    transition: 0.3s;
}

.sns-links a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Footer */
footer {
    padding: 60px 0 100px;
    /* Space for fixed SP CTA */
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}

.site-map {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 14px;
}

.copyright {
    font-size: 12px;
    opacity: 0.6;
}

/* Fixed Components */
.pagetop {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.pagetop.is-show {
    opacity: 1;
    visibility: visible;
}

.bottom-cta-sp {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.bottom-cta-sp a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
}

.bottom-cta-sp .btn-tel {
    background: var(--primary-color);
    color: #fff;
}

.bottom-cta-sp .btn-web {
    background: #fff;
    color: var(--primary-color);
}

/* Hamburger */
.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    position: absolute;
    left: 5px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    transition: 0.4s;
}

.hamburger span:nth-child(1) {
    top: 12px;
}

.hamburger span:nth-child(2) {
    top: 20px;
}

.hamburger span:nth-child(3) {
    top: 28px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.sp-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 4%;
}

.sp-menu.active {
    right: 0;
}

.sp-menu ul {
    text-align: center;
}

.sp-menu ul li {
    margin-bottom: 30px;
}

.sp-menu ul li a {
    font-size: 24px;
    font-weight: 700;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-margin-pc: var(--section-margin-sp);
    }

    section {
        margin-bottom: var(--section-margin-sp);
    }

    .nav-pc,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .inner {
        padding: 0 6%;
    }

    .flex-layout,
    .flex-layout.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .col-img,
    .info-area {
        flex: 0 0 100%;
    }

    .broken-grid {
        position: relative;
        overflow: visible;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 30px;
        padding: 40px 0;
    }

    .broken-grid .col-img {
        flex: 0 0 auto;
        margin-left: 0;
        width: 100%;
        overflow: hidden;
        z-index: auto;
    }

    .broken-grid .col-img img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 4px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .broken-grid .col-txt {
        margin-left: 0;
        margin-top: 0;
        margin-right: 0;
        padding: 30px 0;
        background: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        width: 100%;
        flex: 0 0 auto;
        z-index: auto;
        box-shadow: none;
        border: none;
    }

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

    .cta-flex {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        /* Tighter gap between buttons on mobile */
    }

    /* Mobile gaps for Contact section */
    .cta-area.compact {
        padding: 60px 0;
    }

    .cta-area.compact .section-header.center {
        margin-bottom: 60px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .access-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .info-area {
        flex: 0 0 auto;
        max-width: 100%;
        order: 2;
    }

    .map-area {
        height: 350px;
        min-height: auto;
        order: 1;
    }

    .access-info-card {
        padding: 30px 20px;
    }

    .access-contacts a {
        word-break: break-all;
    }

    .detail-row {
        flex-direction: column;
        gap: 8px;
        padding: 15px 0;
    }

    .detail-row dt {
        width: 100%;
        font-size: 13px;
        color: #999;
    }

    .detail-row dd {
        font-size: 15px;
    }

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

    .bottom-cta-sp {
        display: flex;
    }

    /* FV Section - SP用設定（上部切れ防止） */
    #fv.fv {
        height: auto !important;
        min-height: auto !important;
        padding-top: 80px;
        margin-top: 0;
    }

    #fv picture {
        display: block;
        width: 100% !important;
        overflow: visible !important;
    }

    #fv picture img {
        display: block;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    #fv .scroll-down {
        position: static !important;
        transform: none !important;
        margin-top: 0;
        text-align: center;
        bottom: auto !important;
        left: auto !important;
    }

    #fv .scroll-down::after {
        display: none !important;
    }

    .swiper-container-fv {
        height: 60vh;
    }

    .section-title {
        font-size: 26px;
    }



    .service.parallax {
        background-image: url('../img/SERVICE＿SPbackground.jpg') !important;
        background-attachment: scroll !important;
    }

    .service.parallax::before {
        z-index: 1 !important;
    }

    .menu-recommend {
        background-image: url('../img/SERVICE＿SPbackground.jpg') !important;
        background-attachment: scroll !important;
    }

    .menu-recommend::before {
        z-index: 1 !important;
    }

    /* SP【施工実績】Before/After画像を大きく表示 */
    .projects-slider {
        padding: 0 20px;
    }

    .compare-box {
        display: flex;
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .compare-item {
        position: relative;
        flex: 1;
        width: 100%;
    }

    .compare-item img {
        width: 100%;
        height: auto;
        display: block;
        max-width: 100%;
    }

    /* SP固定背景レイヤー */
    .sp-fixed-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
        opacity: 1;
        transition: opacity 0.3s ease;
        pointer-events: none;
        background-color: #f5f5f5;
        /* Fallback background color */
    }



    /* サービスセクション表示中の背景 */
    body.is-service-bg .sp-fixed-bg {
        background-image: url('../img/SERVICE＿SPbackground.jpg');
        opacity: 1;
    }

    /* コンテンツを前面に配置 */
    main {
        position: relative;
        z-index: 1;
        background-color: #fff;
    }

    /* SPメニュー閉じるボタン */
    .sp-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 32px;
        height: 32px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
    }

    .sp-menu-close::before,
    .sp-menu-close::after {
        content: "";
        position: absolute;
        width: 24px;
        height: 2px;
        background: #000;
        transform-origin: center;
    }

    .sp-menu-close::before {
        transform: rotate(45deg);
    }

    .sp-menu-close::after {
        transform: rotate(-45deg);
    }

    .sp-menu-close:hover {
        opacity: 0.7;
    }
}