:root {
    --primary-color: #374543;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}
::selection {
    background: #b9b9b9; 
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif; */
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 76px;
    overflow-x: hidden;
}

@font-face {
    font-family: "Noto Sans Japanese";
    font-weight: 400;
    font-style: normal;
    font-display: swap; /* 优先显示系统字体，加载完成后替换，避免页面空白 */
    src: url("https://fonts.shopifycdn.com/noto_sans_japanese/notosansjapanese_n4.74a6927b879b930fdec4ab8bb6917103ae8bbca9.woff2") format("woff2"),
         url("https://fonts.shopifycdn.com/noto_sans_japanese/notosansjapanese_n4.15630f5c60bcf9ed7de2df9484ab75ddd007c8e2.woff") format("woff");
  }
  
  /* 2. 全局默认字体配置（核心） */
  html, body {
    font-family: "Noto Sans Japanese", 
                 "Noto Sans SC", /* 回退：思源黑体中文（适配中日混排） */
                 "Hiragino Sans GB", /* 回退：冬青黑体（苹果/Windows 常见日/中字体） */
                 "Meiryo", /* 回退：微软正黑体（Windows 日语默认） */
                 "MS PGothic", /* 回退：Windows 日文无衬线字体 */
                 sans-serif; /* 最终回退：系统默认无衬线字体 */
    font-weight: 400; /* 匹配 @font-face 定义的字重 */
    font-style: normal;
  }

.navbar {
    transition: var(--transition);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0 !important;
    padding: 1.2rem 0;
    background-color: #ffffff;
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: nowrap;
    margin: 0 auto;
    padding-left: 3.3rem !important;
    padding-right: 1rem;
}

.navbar .container-fluid > * {
    flex: 0 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    margin-right: 2rem;
    flex: 0 0 auto;
    order: 1;
    z-index: 2;
    margin-left: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 228px;
    object-fit: contain;
}

.navbar-brand {
    margin: 0;
    padding: 0;
}

.navbar-collapse {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    order: 2;
    min-width: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 200px);
    max-width: 1400px;
    z-index: 1;
    /* 确保下拉菜单不受transform影响 */
    isolation: isolate;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 0;
    width: auto;
    gap: 1rem;
}

.navbar-nav .nav-item {
    flex: 0 0 auto;
    text-align: center;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    text-decoration: none;
    padding-bottom: 2px;
    display: inline-block;
    color: #333 !important;
    font-size: 16px;
    white-space: nowrap;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: left;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    transition: transform 0.3s ease;
    border-radius: 999px;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 1px solid;
    border-right: 1px solid transparent;
    border-bottom: 0;
    border-left: 1px solid transparent;
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(0.4);
}

@media (max-width: 1500px) {
    .navbar-brand .logo-img,
    .logo-img {
        height: 46px;
        max-width: 170px;
    }

    .logo-section {
        margin-right: 1.25rem;
    }

    .navbar-collapse {
        width: calc(100% - 170px);
    }

    .navbar-nav {
        gap: 0.35rem;
    }

    .nav-link {
        font-size: 0.88rem;
        margin: 0 0.18rem;
        padding-bottom: 1px;
    }
}

@media (max-width: 1380px) {
    .navbar-nav {
        gap: 0.25rem;
    }

    .nav-link {
        font-size: 0.82rem;
        margin: 0 0.12rem;
    }
}

@media (max-width: 1300px) {
    .navbar-brand .logo-img,
    .logo-img {
        height: 42px;
        max-width: 160px;
    }

    .logo-section {
        margin-right: 0.75rem;
        flex-shrink: 0;
        position: relative;
        z-index: 3;
    }

    .navbar-collapse {
        width: calc(100% - 220px);
        max-width: none;
        left: 50%;
        transform: translateX(-50%);
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
    }

    .navbar-nav {
        gap: 0.2rem;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }

    .nav-link {
        font-size: 0.78rem;
        margin: 0 0.08rem;
        padding: 0.1rem 0;
    }
}

@media (max-width: 1260px) {
    .navbar-brand .logo-img,
    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .logo-section {
        margin-right: 0.5rem;
    }

    .navbar-collapse {
        width: calc(100% - 200px);
        padding-left: 25px;
        padding-right: 25px;
    }

    .navbar-nav {
        gap: 0.15rem;
        flex-wrap: wrap;
        row-gap: 0.3rem;
    }

    .nav-link {
        font-size: 16px;
        margin: 0 0.05rem;
    }
}

@media (max-width: 1200px) {
    .navbar-nav {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.35rem;
        max-width: 600px;
    }

    .navbar-nav .nav-item {
        flex: 0 1 calc(25% - 0.5rem);
        max-width: calc(25% - 0.5rem);
    }

    .navbar-brand .logo-img,
    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .navbar-nav .nav-link {
        font-size: 0.8rem;
        padding: 0.15rem 0;
    }

    .logo-section {
        margin-right: 1rem;
    }

    .navbar-collapse {
        width: calc(100% - 150px);
    }

    .navbar-nav {
        gap: 0.18rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        margin: 0 0.05rem;
        padding-bottom: 0;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 66px;
    }


    .navbar .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        flex-wrap: wrap;
        justify-content: flex-start;
        position: relative;
    }

    .logo-section {
        max-width: 120px;
        margin-right: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        order: 2;
    }

    .logo-img {
        height: 35px;
    }

    .navbar-collapse {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 0.75rem;
        display: none;
    }

    .navbar-collapse.show {
        display: block;
        width: 100%;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
        font-size: 0.95rem;
    }

    .nav-link::after {
        display: none;
    }

    .navbar-toggler {
        padding: 0.2rem 0.4rem 0 0.8rem;
        font-size: 1rem;
        order: 1;
        margin-right: auto;
    }

    .navbar-collapse {
        order: 4;
    }
    .banner-dot::after{
        background-color: #312524 !important;
    }
}

.page-banner {
    background: #374543;
    padding: 100px 0 80px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.8s ease-out;
}

.banner-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    animation: slideUp 0.8s ease-out 0.2s both;
    font-weight: normal;
    margin-bottom: 1.5rem;
}

.banner-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    animation: slideUp 0.8s ease-out 0.4s both;
    margin-bottom: 0;
    max-width: 900px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-weight: bold;
    color: #995964;
    margin-bottom: 2rem;
    animation: slideUp 0.8s ease-out;

    font-size: 30.8px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.text-primary {
    color: #E58393 !important;
}

.btn-primary {
    background-color: #E58393 !important;
    border-color: #E58393 !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #E58393 !important;
    border-color: #E58393 !important;
}

.furniture-contact {
    position: relative;
    width: 100%;
    min-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.furniture-contact-media,
.furniture-contact-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.furniture-contact-media img {
    object-fit: cover;
    transform: scale(1.12);
    animation: furnitureContactZoom 2s ease-out forwards;
    background-color: transparent;
}

.furniture-contact-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg,
    rgba(7,17,28,0.6) 0%,
    rgba(7,17,28,0.3) 100%
    ); */
    background: linear-gradient(179deg, rgb(14 14 14 / 50%) 100%, rgba(0, 0, 0, 0.2) 26%, rgba(0, 0, 0, 0.4) 66%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.furniture-contact-inner {
    position: relative;
    text-align: center;
    color: #ffffff;
    max-width: 850px;
    display: flex;
    flex-direction: column;
    gap: 1.55rem;
    opacity: 0;
    transform: translateY(45px);
    animation: enginDetailSlideUp 1s ease-out forwards;
    animation-delay: 0.45s;
    z-index: 1;
}

@keyframes enginDetailSlideUp {
    from {
        opacity: 0;
        transform: translateY(45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.furniture-contact-kicker {
    text-transform: uppercase;
    opacity: 0.92;
    font-size: 14.4px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.furniture-contact-title {
    font-size: 36px;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.furniture-contact-body {
    margin: 0;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
}

.furniture-contact-btn {
    align-self: center;
    padding: 0.8rem 2.8rem;
    font-weight: 600;
    border-radius: 999px;
    background: #1e76d4;
    border: none;
    letter-spacing:2px;
    position: relative;
    overflow: hidden;
}

.furniture-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: 1;
}

.furniture-contact-btn:hover {
    background: #1a66ba;
}

.furniture-contact-btn:hover::before {
    left: 100%;
}

@keyframes furnitureContactZoom {
    0% {
        transform: scale(1.18);
    }

    100% {
        transform: scale(1.08);
    }
}

@media (max-width: 767.98px) {
    .furniture-contact {
        width: 100%;
        height: 500px;
        min-height: 500px;
        padding: 3rem 1.5rem;
    }

    .furniture-contact-media img {
        object-position: center;
    }

    .furniture-contact-inner {
        gap: 1.1rem;
        padding: 0 1rem;
    }

    .furniture-contact-kicker {
        font-size: 12px;
    }

    .furniture-contact-title {
        font-size: 28px;
    }

    .furniture-contact-body {
        font-size: 0.95rem;
    }

    .furniture-contact-btn {
        padding: 0.7rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .furniture-contact {
        height: 500px;
        min-height: 500px;
        padding: 2rem 1rem;
    }
    .footer-col-left,
    .footer-col-middle,
    .footer-col-right {
       margin-bottom:0rem !important;
    }
    .first-child {
        border-top: none !important;
    }
    .footer-accordion-content li:first-child {
        border-bottom: none;
    }
    .footer-accordion-toggle.active + .footer-accordion-content {
        max-height: 1000px;
        opacity: 1;
        margin: 0;
        padding: 0;
    }
    }
    .furniture-contact-media img {
        object-position: center;
    }

    .furniture-contact-inner {
        gap: 0.9rem;
        padding: 0 0.5rem;
    }

    .furniture-contact-kicker {
        font-size: 14.4px;
    }

    .furniture-contact-title {
        font-size: 22px;
    }

    .furniture-contact-body {
        font-size: 16px;
        line-height: 1.6;
    }

    .furniture-contact-btn {
        padding: 0.8rem 2.2rem 0.8rem 2.2rem;
        font-size: 16px;
        font-weight: 500;
    }
    .footer-row{
        gap: 0 !important;
    }
    .footer-right-container{
        gap: 0 !important;
    }
}

.footer {
    padding: 60px 0 30px;
    background-color: #312524 !important;
    
    opacity: 1;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1410px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-col-left {
    width: 600px;
    flex-shrink: 0;
}

.footer-right-container {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    flex-shrink: 0;
    width: 40%;
}

.footer-col-middle {
    width: 200px;
    flex-shrink: 0;
    /* margin-left: auto; */
}

.footer-col-right {
    width: 170px;
    flex-shrink: 0;
    text-align: right;
}

@keyframes slideUpFadeFooter {
    from {
        transform: translateY(15px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}



.footer h5 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color:#995964;
}

.footer p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer a {
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    
}

.footer a:hover {
    color: white !important;
}

.footer-accordion-content a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: left;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: transform 0.25s ease;
    border-radius: 999px;
}

.footer-accordion-content a:hover::after,
.footer-accordion-content a:focus-visible::after {
    transform: scaleX(1);
}

.footer-col-middle-links a {
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}

.footer-col-middle-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: left;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: transform 0.25s ease;
    border-radius: 999px;
}

.footer-col-middle-links a:hover::after,
.footer-col-middle-links a:focus-visible::after {
    transform: scaleX(1);
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.slider-item-section {
    /*background: #e8edf5;*/
    background: #efe8e9;
    padding: 2.75rem 0;
    overflow: hidden;
}

.slider-item-inner {
    max-width: 100%;
    margin: 0 auto;
}

.slider-item-track {
    display: flex;
    width: 200%;
    min-width: 200%;
    gap: 4rem;
    animation: sliderLogoMarquee 50s linear infinite;
}

.slider-item-section:hover .slider-item-track {
    animation-play-state: paused;
}

.slider-item-group {
    display: flex;
    align-items: center;
    gap: 4rem;
    justify-content: space-between;
}

.slider-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.65s ease;
}

.slider-item img {
    max-height: 300px;
    width: auto;
    transition: transform 0.45s ease, filter 0.45s ease;
    filter: drop-shadow(0 12px 24px rgba(31, 50, 82, 0.08));
}

.slider-item:hover img {
    transform: scale(1.12);
    filter: drop-shadow(0 18px 32px rgba(31, 50, 82, 0.18));
}

@keyframes sliderLogoMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 767.98px) {
    .slider-item-track,
    .slider-item-group {
        gap: 2.5rem;
    }

    /* Mobile: speed up the marquee */
    .slider-item-track {
        animation-duration: 15s;
    }
    .index-slider-item img{
        width: 205px;
        height: 90px;
    }

}

.footer-accordion-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    text-align: left;
}

.footer-accordion-toggle span {
    flex: 1;
}

.footer-toggle-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.footer-toggle-icon.mobile-only {
    display: none;
}

.footer-accordion-content {
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .footer-row {
        flex-direction: column;
        margin-bottom:2rem;
    }

    .footer-col-left,
    .footer-col-middle,
    .footer-col-right {
        width: 100%;
        text-align: left;
    }
    
    .footer-right-container {
        width: 100%;
        flex-direction: column;
        margin-left: 0;
    }

    .footer-toggle-icon.mobile-only {
        display: inline-block !important;
    }

    .footer-accordion-content {
        max-height: 0;
        opacity: 0;
        margin: 0;
        padding: 0;
    }

    /* Mobile footer: default collapsed with separators (underline) */
    .footer-accordion-toggle {
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        margin-bottom: 0 !important;
    }

    .footer-accordion-content li {
        /* border-bottom: 1px solid rgba(255, 255, 255, 0.12); */
        padding: 0.25rem 0;
        margin: 0;
    }
    .footer-accordion-toggle first-child{
        border-top: none;
    }
    .footer-accordion-content li:first-child {
        border-bottom: none;
    }

    .footer-accordion-toggle.active + .footer-accordion-content {
        max-height: 1000px;
        opacity: 1;
        margin: 0;
        padding: 0;
    }

    .footer-accordion-content.collapsed {
        max-height: 0;
        opacity: 0;
        margin: 0;
        padding: 0;
    }

    .footer-accordion-toggle.active .fa-minus {
        display: inline-block !important;
    }

    .footer-accordion-toggle.active .fa-plus {
        display: none !important;
    }

    .footer-accordion-toggle:not(.active) .fa-minus {
        display: none !important;
    }

    .footer-accordion-toggle:not(.active) .fa-plus {
        display: inline-block !important;
    }
}


.furniture-title {
    color: #995964;
}
.furniture-image-wrapper{
    aspect-ratio: 1.2 / 0.8 !important;
}
.aos-animate-text{
    padding: 0 0 0 5rem !important;
}
.align-items-center{
    margin-bottom: 5rem;
}

/* Page Banner with Background Image */
.page-banner {
    min-height: 500px;
    display: flex;
    align-items: center;
}

.page-banner .banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.page-banner .banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 4s ease-out;
    animation: pageLoadZoom 1s ease;
}
@keyframes pageLoadZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.page-banner:hover .banner-background img {
    transform: scale(1.08);
}

.page-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgba(55, 69, 67, 0.75) 0%, rgba(55, 69, 67, 0.6) 100%);*/
    z-index: 1;
}

/* Banner Text Wrapper */
.banner-text-wrapper {
    display: block;
    text-align: right;
    margin-left: 0;
    margin-right: auto;
    max-width: 100%;
    position: relative;
}

/* Banner Title with Dark Purple Background and Hover Slide Effect */
.banner-title {
    position: relative;
    display: block;
    padding: 1rem 2rem;
    padding-left: calc(50vw - 50% + 1rem);
    margin: 0;
    margin-left: calc(50% - 50vw);
    margin-bottom: 0;
    background-color: #995964;
    color: #ffffff;
    overflow: hidden;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: none;
    line-height: 1.3;
    text-align: right;
}

.banner-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: 0;
}

.banner-title:hover::before {
    left: 100%;
}

.banner-title span,
.banner-title {
    position: relative;
    z-index: 1;
}

/* Banner Subtitle with Peach Background and Hover Slide Effect */
.banner-subtitle {
    position: relative;
    display: block;
    padding: 0.75rem 2rem;
    padding-left: calc(50vw - 50% + 1rem);
    margin: 0;
    margin-left: calc(50% - 50vw);
    margin-top: 5px;
    margin-right: 2rem;
    background-color: #E58393;
    color: #ffffff;
    overflow: hidden;
    font-size: 1.2rem;
    opacity: 1;
    line-height: 1.4;
    text-align: right;
}

.banner-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: left 0.5s ease;
    z-index: 0;
}

.banner-subtitle:hover::before {
    left: 100%;
}

.banner-subtitle span,
.banner-subtitle {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .banner-title {
        font-size: 2.5rem;
        padding: 0.75rem 1.5rem;
    }

    .banner-subtitle {
        font-size: 1.2rem;
        padding: 0.6rem 1.5rem;
    }
    .align-items-center{
        margin-bottom: 0 !important;
    }
}
.footer-accordion-content {
    display: grid; /* 启用网格布局 */
    gap: 10px 20px; /* 上下间距10px，左右列间距20px（可调整） */
    padding: 0;
    margin: 0;
    list-style: none; /* 去掉默认列表样式 */
}

.footer-accordion-content li {
    /* 可选：控制文字对齐方式，左对齐/右对齐 */
    text-align: left; /* 第一列左对齐 */
    /* 如果想让第二列右对齐，可加：nth-child(even) { text-align: right; } */
}

.footer-accordion-content a {
    display: inline-block;
    text-decoration: none; /* 去掉链接下划线（可选） */
}



/* Navigation Dropdown Menu Styles */
.nav-item.nav-dropdown {
    position: static;
}

.navbar-nav {
    overflow: visible;
}

.navbar-collapse {
    overflow: visible;
}

.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.dropdown-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-icon {
    transform: rotate(0deg);
}

.dropdown-mega-menu {
    position: fixed;
    top: 55px;
    left: -270px;
    right: 0;
    width: 100vw;
    margin-left: 0;
    margin-right: 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
    display: block;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, max-height 0.4s ease, transform 0.4s ease;
    transform: translateY(-20px);
}

.nav-dropdown.active .dropdown-mega-menu {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
    border-top: 1px solid #b9b9b9;
    transform: translateY(0);
}

.dropdown-mega-content {
    display: flex;
    gap: 0;
    padding: 2.5rem 0rem 3rem 1rem;
    max-width: 1410px;
    margin: 0 auto;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
}

/* Desktop Only Elements */
.desktop-only {
    display: block;
}

.mobile-dropdown-header,
.mobile-category-list,
.mobile-dropdown-image {
    display: none;
}

/* Mobile Menu Overlay - Only visible on mobile */
.mobile-menu-overlay {
    display: none;
}
@media (max-width: 1800px) {
    .dropdown-mega-menu {
        position: fixed;
        top: 50px;
        left: -106px;
        right: 0;
        width: 100vw;
        margin-left: 0;
        margin-right: 0;
        background: #ffffff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 0;
        display: block;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease, max-height 0.4s ease, transform 0.4s ease;
        transform: translateY(-20px);
    }
}

@media (max-width: 991.98px) {
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-container {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        /* max-width: 400px; */
        height: 100%;
        background: #f5f5f5;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .mobile-menu-overlay.active .mobile-menu-container {
        transform: translateX(0);
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem;
        background: #fff;
        /* border-bottom: 1px solid #e0e0e0; */
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .mobile-menu-logo {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

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

    .mobile-logo-text {
        display: flex;
        flex-direction: column;
        font-size: 0.9rem;
        color: #333;
        line-height: 1.3;
    }

    .mobile-logo-text div:first-child {
        font-weight: 500;
        color: #333;
    }

    .mobile-logo-text div:last-child {
        font-size: 0.75rem;
        color: #666;
    }

    .mobile-menu-close {
        background: none;
        border: none;
        padding: 0.5rem;
        cursor: pointer;
        color: #333;
        font-size: 1.5rem;
        line-height: 1;
    }

    /* Mobile Menu List */
    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
        background: #f5f5f5;
        flex: 1;
        overflow-y: auto;
    }

    /* .mobile-menu-item {
        border-bottom: 1px solid #e0e0e0;
    } */

    /* .mobile-menu-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.25rem 1.5rem;
        color: #333;
        text-decoration: none;
        background: #fff;
        transition: background 0.2s ease;
        font-size: 1rem;
        font-weight: 500;
    } */

    .mobile-menu-link:hover {
        background: #f9f9f9;
    }

    .mobile-menu-link span {
        flex: 1;
    }

    .mobile-menu-link i {
        color: #999;
        font-size: 0.9rem;
    }
}

.dropdown-columns {
    display: flex;
    gap: 2rem;
    flex: 1;
    min-width: 0;
}

.dropdown-column {
    flex: 1;
    max-width: 247px;
}

.dropdown-column-title {
    font-size: 19.8px;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: left;
}

.dropdown-column-title a {
    color: #995964;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    position: relative;
}

.dropdown-column-title a::after {
    display: none;
}

.dropdown-column-title a:hover {
    color: #995964;
}

.dropdown-column-list {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dropdown-column-list li a {
    color: #393939;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    display: inline-block;
    line-height: 1.5;
    position: relative;
    padding-bottom: 2px;
}

.dropdown-column-list li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: left;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    transition: transform 0.3s ease;
    border-radius: 999px;
}



.dropdown-column-list li a:hover::after,
.dropdown-column-list li a:focus-visible::after {
    transform: scaleX(1);
}

.dropdown-image {
    flex: 0 0 auto;
    width: 550px;
    max-width: 550px;
    height: 418px;
    overflow: hidden;
    margin-left: 3rem;
    position: relative;
}

.dropdown-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transition: transform 0.5s ease;
    transform: scale(1);
    
}
.dropdown-image:hover img {
    transform: scale(1.05);
}

/* Package Dropdown Styles */
.dropdown-package-menu {
    min-width: 1000px;
}

.package-content {
    display: flex;
    gap: 1.8rem;
    padding: 2.5rem 0 3rem 0rem;
}

.package-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    max-width: 690px;
}



.package-image {
    width: 690px;
    height: 227px;
    overflow: hidden;
    position: relative;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.5s ease;
}

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

.package-overlay {
    position: absolute;
    text-align: justify;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 2rem;
    color: #ffffff;
}

.package-title-common {
    font-size: 21.8px;
    font-weight: 600;
    margin: 0 0 1.55rem 0;
    color: #ffffff;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.package-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    display: inline-block;
    font-family: "Noto Sans Japanese", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    transition: opacity 0.3s ease;
}

.package-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.package-link:hover .package-link {
    opacity: 0.9;
}

.package-card:hover .package-link::after {
    animation: underlineHideShow 0.5s ease-in-out;
}

@keyframes underlineHideShow {
    0% {
        transform: scaleX(1);
        transform-origin: right;
    }
    50% {
        transform: scaleX(0);
        transform-origin: right;
    }
    100% {
        transform: scaleX(1);
        transform-origin: right;
    }
}



/* Mobile Dropdown Styles */
@media (max-width: 991.98px) {
    .dropdown-mega-menu {
        display: none;
    }

    /* Mobile Header */
    .mobile-dropdown-header {
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #e0e0e0;
        background: #fff;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .mobile-dropdown-back {
        background: none;
        border: none;
        padding: 0.5rem;
        margin-right: 1rem;
        cursor: pointer;
        color: #333;
        font-size: 1.2rem;
    }

    .mobile-dropdown-title {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 500;
        color: #333;
        flex: 1;
    }

    /* Desktop Only */
    .desktop-only {
        display: none;
    }

    /* Mobile Category List */
    .mobile-category-list {
        display: flex;
        flex-direction: column;
        background: #f5f5f5;
    }

    .mobile-category-item {
        position: relative;
        /* border-bottom: 1px solid #e0e0e0; */
    }

    .mobile-category-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        color: #333;
        text-decoration: none;
        background: #fff;
        transition: background 0.2s ease;
    }

    .mobile-category-link:hover {
        background: #f9f9f9;
    }

    .mobile-category-link span {
        flex: 1;
        font-size: 1rem;
    }

    .mobile-category-arrow {
        color: #999;
        font-size: 0.9rem;
    }

    /* Mobile Submenu */
    .mobile-category-submenu {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 20;
        overflow-y: auto;
    }

    .mobile-category-item.active .mobile-category-submenu {
        transform: translateX(0);
    }

    .mobile-submenu-header {
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #e0e0e0;
        background: #fff;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .mobile-submenu-back {
        background: none;
        border: none;
        padding: 0.5rem;
        margin-right: 1rem;
        cursor: pointer;
        color: #333;
        font-size: 1.2rem;
    }

    .mobile-submenu-title {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 500;
        color: #333;
        flex: 1;
    }

    .mobile-submenu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

 

    .mobile-submenu-list a {
        display: block;
        padding: 1rem 1.5rem;
        color: #333;
        text-decoration: none;
        transition: background 0.2s ease;
    }

    .mobile-submenu-list a:hover {
        background: #f9f9f9;
    }

    /* Mobile Image */
    .mobile-dropdown-image {
        width: 100%;
        height: 300px;
        overflow: hidden;
        margin-top: auto;
        flex-shrink: 0;
    }

    .mobile-dropdown-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-category-list {
        /* flex: 1; */
        overflow-y: auto;
    }

    .dropdown-package-menu {
        min-width: 100%;
        max-width: 100%;
    }

    .dropdown-mega-content {
        flex-direction: column;
        padding: 0;
        gap: 0;
        height: 100%;
        display: flex;
    }

    .mobile-dropdown-header,
    .mobile-category-list,
    .mobile-dropdown-image {
        display: block;
    }

    .package-content {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .package-image {
        height: 250px;
    }

    .package-overlay {
        padding: 1.5rem;
    }

    .package-title {
        font-size: 18px;
    }

    .dropdown-columns {
        flex-direction: column;
        gap: 2rem;
    }

    .dropdown-column {
        width: 100%;
    }

    .dropdown-column-title {
        margin-bottom: 1rem;
    }

    .dropdown-column-list {
        display: block;
    }

    .dropdown-column-list li {
        margin-bottom: 0.75rem;
    }

    .dropdown-column-list a {
        display: block;
        padding: 0.5rem 0;
        color: #333;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .dropdown-column-list a:hover {
        color: #995964;
    }

    .dropdown-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        height: 250px;
        margin-left: 0;
    }

    .package-card {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    .slider-item-section{
        padding: 3.2rem 0rem;
    }
}