/* ========================================
   リセット & グローバルスタイル
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    /* 动态REM系统：基于375px宽度，16px为基准 */
    /* 公式：font-size = (100vw / 375) * 16 */
    /* 使用clamp限制最小和最大值 */
    font-size: clamp(12px, 4.2667vw, 20px); /* 在280px-468px之间动态缩放 */
}

/* 桌面端缩小到0.8倍 */
@media (min-width: 481px) {
    html {
        font-size: 12.8px; /* 桌面端固定12.8px (16px * 0.8) */
    }
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.8;
    color: #000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #f0ebe5;
}

.container {
    max-width: 1184px; /* 1480 * 0.8 */
    margin: 0 auto;
    padding: 0 16px; /* 20 * 0.8 */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* パフォーマンス最適化 */
section {
    will-change: transform;
}

/* タッチデバイス用の最適化 */
@media (hover: none) and (pointer: coarse) {
    a,
    button {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
}

/* 滚动渐入渐出效果 */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Header
   ======================================== */
.header {
    height: 64px; /* 80 * 0.8 */
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* 使用伪元素实现背景图片淡入淡出效果 */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/header_bg.png') center/cover;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.header.scrolled::before {
    opacity: 1;
}

.header-content {
    height: 64px; /* 80 * 0.8 */
    display: flex;
    align-items: center;
}

.logo {
    position: relative;
}

.logo img {
    width: 160px; /* 200 * 0.8 */
    transition: opacity 0.3s ease;
    object-fit: contain;
}

/* Logo切换效果：使用opacity实现平滑过渡 */
.header.scrolled .logo img {
    content: url('image/logo_white1.svg');
}

/* ========================================
   Banner
   ======================================== */
.banner {
    position: relative;
    min-height: 640px; /* 800 * 0.8 */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 64px; /* 80 * 0.8 */
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    text-align: center;
    color: #fff;
    padding: 128px 16px; /* 60 * 0.8, 20 * 0.8 */
}

.banner-title-large {
    font-size: 59.2px; /* 74 * 0.8 */
    font-weight: bold;
    color: #fff;
    margin-bottom: 24px; /* 30 * 0.8 */
    line-height: 1.4;
    white-space: nowrap;
}

.banner-title-medium {
    font-size: 48px; /* 60 * 0.8 */
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px; /* 20 * 0.8 */
    line-height: 1.6;
}

.banner-title-small {
    font-size: 30.4px; /* 38 * 0.8 */
    font-weight: 400;
    color: #E9E9E9;
    line-height: 1.6;
    width: 880px; /* 1100 * 0.8 */
    margin: 0 auto;
}

/* ========================================
   Module 3 - Company Introduction
   ======================================== */
.module-3 {
    background: #f0ebe5;
    height: 432px; /* 540 * 0.8 */
    display: flex;
    align-items: center;
}

.module-3-content {
    display: flex;
    align-items: center;
    gap: 64px; /* 80 * 0.8 */
}

.module-3-logo {
    flex: 0 0 320px; /* 400 * 0.8 */
    height: 320px; /* 400 * 0.8 */
    background: url('image/logo1.svg') ;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.module-3-logo img {
    width: 100%;
}

.module-3-text {
    flex: 1;
}

.module-3-text p {
    font-size: 28.8px; /* 36 * 0.8 */
    line-height: 2;
    color: #666;
}

/* ========================================
   Module 4 - Services
   ======================================== */
.module-4 {
    padding: 80px 0; /* 100 * 0.8 */
    background: #f0ebe5;
}

.module-4-block {
    display: flex;
    align-items: center;
    gap: 48px; /* 60 * 0.8 */
    margin-bottom: 64px; /* 80 * 0.8 */
}

.module-4-block:last-child {
    margin-bottom: 0;
}

.module-4-block.reverse {
    flex-direction: row-reverse;
}

.module-4-text {
    flex: 1;
}

.module-4-title {
    font-size: 28.8px; /* 36 * 0.8 */
    color: #0067C2;
    margin-bottom: 24px; /* 30 * 0.8 */
    line-height: 1.4;
    font-weight: bold;
}
.module-4 .title1 {
    line-height: 48px; /* 60 * 0.8 */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 12.8px; /* 16 * 0.8 */
}
.module-4 .title1::before{
    content: '';
    width: 12.8px; /* 16 * 0.8 */
    height: 96px; /* 120 * 0.8 */
    background: #65b7ff;
    border-radius: 6.4px; /* 8 * 0.8 */
    position: absolute;
    top: 0;
    left: -8px; /* -10 * 0.8 */
}
.content1 {
    padding-left: 12.8px; /* 16 * 0.8 */
    position: relative;
}
.content1::before{
    content: '';
    width: 11.2px; /* 14 * 0.8 */
    height: 11.2px; /* 14 * 0.8 */
    background: #65b7ff;
    border-radius: 50%;
    position: absolute;
    top: 10.4px; /* 13 * 0.8 */
    left: -8px; /* -10 * 0.8 */
}

.module-4-content {
    font-size: 20.8px; /* 26 * 0.8 */
    color: #666;
    margin-bottom: 16px; /* 20 * 0.8 */
}

.module-4-content:last-child {
    margin-bottom: 0;
}

.module-4-image {
    flex: 0 0 560px; /* 700 * 0.8 */
}

.module-4-image img {
    width: 100%;
}
.img1 {
    padding: 40px; /* 50 * 0.8 */
}
.img2 {
    border-radius: 50%;
}

/* ========================================
   Module 5 - About Us
   ======================================== */
.module-5 {
    padding: 80px 0; /* 100 * 0.8 */
    background: #f0ebe5;
}

.section-title {
    font-size: 33.6px; /* 42 * 0.8 */
    color: #005BC1;
    margin-bottom: 32px; /* 40 * 0.8 */
    font-weight: 700;
}

.module-5-top {
    display: flex;
    gap: 48px; /* 60 * 0.8 */
    margin-bottom: 48px; /* 60 * 0.8 */
}

.module-5-left {
    flex: 1;
}

.module-5-right {
    flex: 0 0 704px; /* 880 * 0.8 */
}

.module-5-right img {
    width: 100%;
    border-radius: 8px; /* 10 * 0.8 */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); /* 10 * 0.8, 30 * 0.8 */
}

.module-5-bottom {
    gap: 32px; /* 40 * 0.8 */
}

.module-5-card {
    padding: 0 24px 24px 0; /* 30 * 0.8 */
    border-radius: 8px; /* 10 * 0.8 */
    margin-bottom: 24px; /* 30 * 0.8 */
}

.module-5-bottom .module-5-card {
    margin-bottom: 0;
}

.module-5-card-title {
    font-size: 25.6px; /* 32 * 0.8 */
    color: #000;
    margin-bottom: 12px; /* 15 * 0.8 */
    font-weight: bold;
}

.module-5-card-content {
    font-size: 19.2px; /* 24 * 0.8 */
    line-height: 1.8;
    color: #333;
}

/* ========================================
   Module 6 - Partnership
   ======================================== */
.module-6 {
    padding: 80px 0; /* 100 * 0.8 */
    background: #f0ebe5;
}

.module-6-content {
    display: flex;
    align-items: center;
    gap: 48px; /* 60 * 0.8 */
}

.module-6-image {
    flex: 0 0 480px; /* 600 * 0.8 */
}

.module-6-image img {
    width: 100%;
    border-radius: 8px; /* 10 * 0.8 */
}

.module-6-text {
    flex: 1;
}

.module-6-title {
    font-size: 28.8px; /* 36 * 0.8 */
    color: #000;
    margin-bottom: 24px; /* 30 * 0.8 */
    line-height: 1.4;
}

.module-6-content {
    font-size: 19.2px; /* 24 * 0.8 */
    line-height: 2;
    color: #333;
}



/* ========================================
   Module 7
   ======================================== */

.module-7 {
    padding: 80px 0; /* 100 * 0.8 */
    background: #f0ebe5;
    height: 960px; /* 1200 * 0.8 */
}

.module-7-2 {
    height: auto;
    /* min-height: 960px; 1200 * 0.8 */
}

.module-7-2 .label +.label {
    margin-top: 20px; /* 60 * 0.8 */
}

.module-7-2 .title1 {
    font-size: 28.8px; /* 36 * 0.8 */
    color: #000;
    margin-bottom: 24px; /* 30 * 0.8 */
    line-height: 1.4;
    
}
.module-7-title1 {
    font-size: 38.8px; /* 36 * 0.8 */
    color: #000;
    margin-bottom: 24px; /* 30 * 0.8 */
    line-height: 1.4;
    text-align: center;
}

.module-7-title {
    font-size: 28.8px; /* 36 * 0.8 */
    color: #000;
    margin-bottom: 24px; /* 30 * 0.8 */
    line-height: 1.4;
    text-align: center;
}

.module-7 p {
    font-size: 19.2px; /* 24 * 0.8 */
    padding: 0 120px; /* 150 * 0.8 */
    line-height: 2;
    color: #666;
    margin-bottom: 24px; /* 30 * 0.8 */
    position: relative;
    font-weight: bold;
}

.module-7 p::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 96px; /* 120 * 0.8 */
    width: 8px; /* 10 * 0.8 */
    height: 8px; /* 10 * 0.8 */
    background: #666;
    border-radius: 50%;
    transform: translateY(-50%);
}

.module-7-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px; /* 60 * 0.8 */
    margin-top: 48px; /* 60 * 0.8 */
    position: relative;
    height: 600px; /* 750 * 0.8 */
    width: 960px; /* 1200 * 0.8 */
    margin: 0 auto;
}

.module-7 img {
    width: 380.8px; /* 476 * 0.8 */
    object-fit: contain;
}

.module-7-label {
    position: absolute;
    font-size: 24px; /* 30 * 0.8 */
    color: #fff;
    font-weight: bold;
    height: 64px; /* 80 * 0.8 */
    border-radius: 80px; /* 100 * 0.8 */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.6px solid #fff; /* 2 * 0.8 */
    background: linear-gradient(90deg, #62ACFF 0%, #3CFFEF 100%);
    box-shadow: 0 3.2px 16px 0 rgba(25, 143, 182, 0.30); /* 4 * 0.8, 20 * 0.8 */
    padding: 0 40px; /* 50 * 0.8 */
    white-space: nowrap;
}

.module-7-bottom .label1 {
    top: 62.4px; /* 78 * 0.8 */
    left: 44px; /* 55 * 0.8 */
}

.module-7-bottom .label2 {
    top: 73.6px; /* 92 * 0.8 */
    left: 595.2px; /* 744 * 0.8 */
}

.module-7-bottom .label3 {
    top: 322.4px; /* 403 * 0.8 */
    left: 0;
}

.module-7-bottom .label4 {
    top: 253.6px; /* 317 * 0.8 */
    left: 622.4px; /* 778 * 0.8 */
}

.module-7-bottom .label5 {
    top: 472px; /* 590 * 0.8 */
    left: 324px; /* 405 * 0.8 */
}




/* ========================================
   Module 8
   ======================================== */

.module-8 {
    padding: 80px 0; /* 100 * 0.8 */
    background: #f0ebe5;
}

.module-8-title {
    text-align: center;
    font-size: 44.8px; /* 56 * 0.8 */
    color: #000;
    margin-bottom: 24px; /* 30 * 0.8 */
    line-height: 1.4;
    font-weight: bold;
}
.module-8-title2 {
    text-align: center;
    font-size: 20.8px; /* 26 * 0.8 */
    color: #000;
    margin-bottom: 24px; /* 30 * 0.8 */
    line-height: 1.4;
    font-weight: bold;
}

.module-8 .row {
    display: flex;
    align-items: center;
    gap: 80px; /* 100 * 0.8 */
    margin-top: 128px; /* 160 * 0.8 */
}

.module-8 .block {
    padding: 0 80px 0 0; /* 100 * 0.8 */
}

.module-8 .row img {
    width: 400px; /* 500 * 0.8 */
    height: auto;
    border-radius: 16px; /* 20 * 0.8 */
}

.module-8 .row .title1 {
    font-size: 36.8px; /* 46 * 0.8 */
    color: #005BC1;
    line-height: 1.4;
    font-weight: bold;
}

.module-8 .row .title2 {
    font-size: 28.8px; /* 36 * 0.8 */
    color: #005BC1;
    line-height: 1.4;
    font-weight: bold;
    margin: 24px 0 32px; /* 30 * 0.8, 40 * 0.8 */
}

.module-8 .row .label1 {
    font-size: 24px; /* 30 * 0.8 */
    color: #000;
    line-height: 1.4;
    font-weight: bold;
    border-bottom: 1px solid #C7C7C7;
    width: fit-content;
    padding: 8px 0; /* 10 * 0.8 */
}

.module-8 .row .label2 {
    font-size: 18.2px; /* 24 * 0.8 */
    color: #666;
    width: fit-content;
    margin-bottom: 16px; /* 20 * 0.8 */
    font-weight: 500;
}

.module-8 .row2 {
    flex-direction: row-reverse;
}




/* ========================================
   Module 9
   ======================================== */

.module-9 {
    padding: 80px 0; /* 100 * 0.8 */
    background: #f0ebe5;
}

.module-9 a {
    text-decoration: none;
}

.module-9-title {
    text-align: center;
    font-size: 44.8px; /* 56 * 0.8 */
    color: #000;
    line-height: 1.4;
    font-weight: bold;
    position: relative;
    width: fit-content;
    margin: 0 auto 40px; /* 50 * 0.8 */
    height: 56px; /* 70 * 0.8 */
}
.module-9-title::before {
    content: '';
    position: absolute;
    left: -112px; /* -140 * 0.8 */
    top: 26.4px; /* 33 * 0.8 */
    width: 96px; /* 120 * 0.8 */
    height: 3.2px; /* 4 * 0.8 */
    background: #859EC0;
}
.module-9-title::after {
    content: '';
    position: absolute;
    right: -112px; /* -140 * 0.8 */
    top: 26.4px; /* 33 * 0.8 */
    width: 96px; /* 120 * 0.8 */
    height: 3.2px; /* 4 * 0.8 */
    background: #859EC0;
}

.question {
    font-size: 20.8px; /* 26 * 0.8 */
    color: #333;
    margin-bottom: 16px; /* 20 * 0.8 */
    line-height: 1.4;
    font-weight: bold;
}
.answer {
    font-size: 20.8px; /* 26 * 0.8 */
    color: #005BC1;
    line-height: 1.8;
    margin: 12px 0 24px; /* 15 * 0.8, 30 * 0.8 */
    font-weight: 500;
}


.module-9-content2 {
    margin-top: 96px; /* 120 * 0.8 */
}

.module-9 .label {
    font-size: 20.8px; /* 26 * 0.8 */
    color: #005BC1;
    line-height: 1.4;
    font-weight: bold;
    margin: 16px 0; /* 20 * 0.8 */
    text-align: center;
}

.module-9 .line {
    font-size: 20.8px; /* 26 * 0.8 */
    color: #005BC1;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    border-top: 1px dashed #C7C7C7;
    width: 70%;
    margin: 0 auto 32px; /* 40 * 0.8 */
}



/* ========================================
   Footer
   ======================================== */
.footer {
    display: none;
    height: 448px; /* 560 * 0.8 */
    background: linear-gradient(90deg, #DDE8FA 0%, #D2E4FA 100%);;
    padding: 32px 0; /* 40 * 0.8 */
    position: relative;
}

.footer-logo {
    margin: 40px 0; /* 50 * 0.8 */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px; /* 10 * 0.8 */
}

.footer-logo img {
    height: 48px; /* 60 * 0.8 */
}

.footer-logo span {
    font-size: 22.4px; /* 28 * 0.8 */
    color: #000;
    line-height: 1.4;
    font-weight: bold;
}

.footer-text {
    font-size: 11.2px; /* 14 * 0.8 */
    opacity: 0.8;
}

.footer-content .label1 {
    font-size: 20.8px; /* 26 * 0.8 */
    color: #000;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 8px; /* 10 * 0.8 */
}

.footer-content .label2 {
    font-size: 28.8px; /* 36 * 0.8 */
    color: #005BC1;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 48px; /* 60 * 0.8 */
}

.footer-content .label3 {
    font-size: 20.8px; /* 26 * 0.8 */
    color: #F00;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 16px; /* 20 * 0.8 */
}

.footer-content .tip {
    font-size: 20.8px; /* 26 * 0.8 */
    color: #666;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 16px; /* 20 * 0.8 */
}

/* ========================================
   移动端响应式设计 (REM单位)
   1rem = 16px
   只适配手机端 (480px以下)
   ======================================== */
@media (max-width: 480px) {
    /* 1rem = 16px */

    .container {
        padding: 0 0.94rem; /* 15px */
        overflow: hidden;
    }

    /* Header */
    .header {
        height: 3.75rem; /* 60px */
    }

    .header-content {
        height: 3.75rem; /* 60px */
    }

    /* 移动端使用不同的背景图 */
    .header::before {
        background: url('image/header_bg2.png') center/cover;
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }

    .logo img {
        width: 6.25rem; /* 100px */
    }

    /* Banner */
    .banner {
        margin-top: 3.75rem; /* 60px */
        min-height: 16.25rem; /* 260px */
        align-items: center;
    }

    .banner .banner-content {
        padding: 0;
        padding-bottom: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 16.25rem;
    }

    .banner-title-large {
        font-size: 1.05rem; /* 20px */
        margin-bottom: 0rem;
        padding-bottom: 0.2rem;
        white-space: normal;
    }

    .banner-title-medium {
        font-size: 0.94rem; /* 15px */
        margin-bottom: 0.9375rem; /* 15px */
        padding-bottom: 0.2rem;
    }

    .banner-title-small {
        font-size: 0.875rem; /* 14px */
        width: 100%;
        line-height: 1.8;
        padding-bottom: 0.2rem;
    }

    /* Module 3 */
    .module-3 {
        height: auto;
        padding: 3.125rem 0; /* 50px */
    }

    .module-3-content {
        flex-direction: column;
        gap: 1.875rem; /* 30px */
    }

    .module-3-logo {
        flex: 0 0 auto;
        width: 19rem;
        max-width: 100%;
        height: 5.5rem;
        background: url('image/logo1.svg') no-repeat center/contain;
        margin: 0 auto;
    }

    .module-3-text p {
        font-size: 0.875rem; /* 14px */
        line-height: 1.8;
    }

    /* Module 4 */
    .module-4 {
        padding: 3.125rem 0; /* 50px */
    }

    .module-4-block,
    .module-4-block.reverse {
        flex-direction: column;
        gap: 1.875rem; /* 30px */
        margin-bottom: 3.125rem; /* 50px */
    }

    .module-4-text,
    .module-4-image {
        flex: 1;
        width: 100%;
    }

    .module-4-title {
        font-size: 1.125rem; /* 18px */
        margin-bottom: 1.25rem; /* 20px */
        line-height: 1.6;
    }

    .module-4 .title1 {
        line-height: 1.6;
        padding-left: 1.25rem; /* 20px */
    }

    .module-4 .title1::before {
        height: 3.75rem; /* 60px */
        width: 0.5rem; /* 8px */
        left: 0;
    }

    .content1 {
        padding-left: 1.25rem; /* 20px */
    }

    .content1::before {
        width: 0.5rem; /* 8px */
        height: 0.5rem; /* 8px */
        left: 0;
        top: 0.5rem; /* 8px */
    }

    .module-4-content {
        font-size: 0.8125rem; /* 13px */
        margin-bottom: 0.9375rem; /* 15px */
        line-height: 1.8;
    }

    .img1 {
        padding: 1.25rem; /* 20px */
    }

    /* Module 5 */
    .module-5 {
        padding: 0 0 3.125rem; /* 50px */
    }

    .section-title {
        font-size: 1.25rem; /* 20px */
        margin-bottom: 1.875rem; /* 30px */
    }

    .module-5-top {
        flex-direction: column;
        gap: 0; /* 30px */
        margin-bottom: 1.875rem; /* 30px */
    }

    .module-5-left,
    .module-5-right {
        flex: 1;
        width: 100%;
    }

    .module-5-bottom {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .module-5-left .module-5-card {
        margin-bottom: 0;
    }

    .module-5-card {
        padding: 0 0.9375rem 1.25rem 0; /* 0 15px 20px 0 */
        margin-bottom: 1.25rem; /* 20px */
    }

    .module-5-card-title {
        font-size: 1rem; /* 16px */
        margin-bottom: 0.625rem; /* 10px */
        line-height: 1.6;
    }

    .module-5-card-content {
        font-size: 0.8125rem; /* 13px */
        line-height: 1.8;
    }

    /* Module 6 */
    .module-6 {
        padding: 3.125rem 0; /* 50px */
    }

    .module-6-content {
        flex-direction: column;
        gap: 1.875rem; /* 30px */
    }

    .module-6-image,
    .module-6-text {
        flex: 1;
        width: 100%;
    }

    .module-6-title {
        font-size: 1.125rem; /* 18px */
        margin-bottom: 1.25rem; /* 20px */
        line-height: 1.6;
    }

    .module-6-content {
        font-size: 0.8125rem; /* 13px */
        line-height: 1.8;
        flex-direction: column-reverse;
    }

    /* Module 7 */
    .module-7 {
        padding: 3.125rem 0; /* 50px */
        height: auto;
    }

    .module-7-title {
        font-size: 1.25rem; /* 20px */
        margin-bottom: 1.25rem; /* 20px */
    }

    .module-7 p {
        font-size: 0.8125rem; /* 13px */
        padding: 0 0 0 1.875rem; /* 0 0 0 30px */
        margin-bottom: 0.9375rem; /* 15px */
        line-height: 1.8;
    }

    .module-7 p::before {
        left: 0.625rem; /* 10px */
        width: 0.375rem; /* 6px */
        height: 0.375rem; /* 6px */
    }

    .module-7-bottom {
        flex-direction: column;
        height: auto;
        width: 100%;
        padding: 1rem 0; /* 30px */
        gap: 1.25rem; /* 20px */
    }

    .module-7 img {
        width: 100%;
        max-width: 18.75rem; /* 300px */
        margin: 0 auto;
        position: relative;
        right: -30%;
    }

    .module-7-label {
        /* position: static; */
        font-size: 0.75rem; /* 12px */
        height: auto;
        padding: 0.75rem 0.9375rem; /* 12px 15px */
        margin-bottom: 0.9375rem; /* 15px */
        white-space: normal;
        text-align: center;
        border-width: 0.0625rem; /* 1px */
    }

    .module-7-bottom .label1{
        left: 0;
        top: 0;
    }
    .module-7-bottom .label4{
        left: 0;
        top: 4rem;
    }
    .module-7-bottom .label3{
        left: 0;
        top: 8rem;
    }
    .module-7-bottom .label2{
        left: 0;
        top: 12rem;
    }
    .module-7-bottom .label5 {
        top: 16rem;
        left: 0;
    }

    /* Module 8 */
    .module-8 {
        padding: 3.125rem 0; /* 50px */
    }

    .module-8-title {
        font-size: 1.5rem; /* 24px */
        margin-bottom: 1.25rem; /* 20px */
    }

    .module-8-title2 {
        font-size: 0.875rem; /* 14px */
        margin-bottom: 1.25rem; /* 20px */
        padding: 0 0.625rem; /* 0 10px */
    }

    .module-8 .row {
        flex-direction: column;
        gap: 1.875rem; /* 30px */
        margin-top: 3.125rem; /* 50px */
    }

    .module-8 .block {
        padding: 0;
    }

    .module-8 .row img {
        width: 100%;
        max-width: 18.75rem; /* 300px */
        margin: 0 auto;
    }

    .module-8 .row .title1 {
        font-size: 1.25rem; /* 20px */
    }

    .module-8 .row .title2 {
        font-size: 1rem; /* 16px */
        margin: 1.25rem 0 1.25rem; /* 20px 0 20px */
    }

    .module-8 .row .label1 {
        font-size: 0.875rem; /* 14px */
        padding: 0.3125rem 0; /* 5px 0 */
    }

    .module-8 .row .label2 {
        font-size: 0.8125rem; /* 13px */
        margin-bottom: 0.9375rem; /* 15px */
        line-height: 1.8;
    }

    .module-8 .row2 {
        flex-direction: column;
    }

    /* Module 9 */
    .module-9 {
        padding: 3.125rem 0; /* 50px */
    }

    .module-9-title {
        font-size: 1.5rem; /* 24px */
        height: 2.5rem;
        line-height: 2.5rem;
        margin-bottom: 1.875rem; /* 30px */
    }

    .module-9-title::before {
        width: 3.75rem;
        height: 0.125rem; /* 2px */
        left: -4.25rem;
        top: 1.25rem;
        border-radius: 0.125rem; /* 2px */
    }
    .module-9-title::after {
        width: 3.75rem;
        height: 0.125rem; /* 2px */
        right: -4.25rem;
        top: 1.25rem;
        border-radius: 0.125rem; /* 2px */
    }

    .question {
        font-size: 0.875rem; /* 14px */
        margin-bottom: 0.9375rem; /* 15px */
    }

    .answer {
        font-size: 0.8125rem; /* 13px */
        margin: 0.625rem 0 1.5625rem; /* 10px 0 25px */
        line-height: 1.8;
    }

    .module-9-content2 {
        margin-top: 3.125rem; /* 50px */
    }

    .module-9 .label {
        font-size: 0.8125rem; /* 13px */
        margin: 0.9375rem 0; /* 15px 0 */
        padding: 0 0.625rem; /* 0 10px */
        line-height: 1.6;
    }

    .module-9 .line {
        width: 90%;
        margin: 0 auto 1.875rem; /* 0 auto 30px */
    }

    /* Footer */
    .footer {
        height: auto;
        padding: 1.875rem 0; /* 30px */
    }

    .footer-logo {
        margin: 1.875rem 0; /* 30px */
        flex-direction: column;
        text-align: center;
    }

    .footer-logo img {
        height: 2.5rem; /* 40px */
        margin: 0 auto 0.625rem; /* 0 auto 10px */
    }

    .footer-logo span {
        font-size: 0.875rem; /* 14px */
    }

    .footer-content .label1 {
        font-size: 0.875rem; /* 14px */
    }

    .footer-content .label2 {
        font-size: 1.125rem; /* 18px */
        margin-bottom: 1.875rem; /* 30px */
    }

    .footer-content .label3 {
        font-size: 0.875rem; /* 14px */
    }

    .footer-content .tip {
        font-size: 0.8125rem; /* 13px */
        line-height: 1.6;
    }
}



/* ========================================
   移动端优化
   ======================================== */

/* 移动端滚动锚点偏移 */
@media (max-width: 480px) {
    section {
        scroll-margin-top: 3.75rem; /* 60px */
    }
}

/* 触摸设备优化 */
@media (hover: none) {
    img {
        transition: none;
    }
}

/* 文字选择样式 */
::selection {
    background-color: #005BC1;
    color: #fff;
}

::-moz-selection {
    background-color: #005BC1;
    color: #fff;
}

/* 折叠面板样式 */
.accordion-item {
  border: 1px solid #d0c4b8;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #fff;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #f8f6f3;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background: #f0ebe5;
}

.accordion-content {
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
}

.accordion-item.active .accordion-content {
  padding: 20px;
}

.accordion-item:not(.active) .accordion-content {
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-icon {
  font-size: 24px;
  font-weight: bold;
  color: #005BC1;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-icon::before {
  content: '+';
}

.accordion-item.active .accordion-icon::before {
  content: '−';
}

.accordion-item:not(.active) .accordion-icon::before {
  content: '+';
}

.cmp-footer {
  background: #111828;
  bottom: 0;
  width: auto
}

@media screen and (min-width: 768px) {
  .cmp-footer {
    padding:0 2pc
  }
}

@media screen and (min-width: 1200px) {
  .cmp-footer {
    -webkit-box-pack:justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*gap: 88px;*/
    justify-content: space-between;
    padding: 0 0 0 3pc;
    position: inherit
  }
}

.cmp-footer__container {
  padding: 2pc 0
}

.cmp-footer__container,.cmp-footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.cmp-footer__row {
  gap: 8px;
  width: 100%
}

@media screen and (min-width: 768px) {
  .cmp-footer__row {
    gap:24px
  }
}

.cmp-footer__heading {
  -webkit-box-flex: 1;
  -ms-flex-preferred-size: 48%;
  border-top: 1px solid #d9d2cc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex: 1;
  flex: 1;
  flex-basis: 48%;
  max-width: 50%
}

@media screen and (min-width: 768px) {
  .cmp-footer__heading {
    -ms-flex-preferred-size:22%;
    flex-basis: 22%;
    max-width: 25%
  }
}

.cmp-footer__heading:last-child,.cmp-footer__heading:nth-child(3) {
  margin-top: 24px
}

@media screen and (min-width: 768px) {
  .cmp-footer__heading:last-child,.cmp-footer__heading:nth-child(3) {
    margin-top:0
  }
}

.cmp-footer__header {
  color: #d9d2cc;
  font-family: Graphik,Meiryo,Hiragino Kaku Gothic Pro;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -.0125em;
  line-height: 20px;
  margin-bottom: 1pc;
  margin-top: 1pc
}

@media screen and (min-width: 768px) {
  .cmp-footer__header {
    font-size: 0.9pc;
    line-height: 28px;
    margin-top: 24px
  }
}

.cmp-footer__listitems {
  list-style: none;
  margin-bottom: 0;
  padding: 0
}

.cmp-footer__list {
  padding-bottom: 8px
}

.cmp-footer--socials {
  display: inline-block;
  height: 30px;
  padding-right: 8px;
  width: 30px
}

@media screen and (min-width: 768px) {
  .cmp-footer--socials {
    display:block;
    padding-right: 0
  }
}

.cmp-footer--socials img {
  height: 28px;
  width: 28px
}

.cmp-footer__link {
  color: #d9d2cc;
  font-family: Graphik,Meiryo,Hiragino Kaku Gothic Pro;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.0125em;
  line-height: 19px;
  text-decoration: none
}

.cmp-footer__link:active,.cmp-footer__link:focus,.cmp-footer__link:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px
}

.cmp-footer__link:before {
  content: var(--bg-image)
}

.cmp-footer__link:hover:before {
  content: var(--bg-image-hover)
}

@media screen and (min-width: 768px) {
  .cmp-footer__link {
    font-size: 0.9pc;
    line-height: 26px
  }
}

.cmp-footer__link--icons:after {
  content: url(../image/open_in_new.svg);
  padding-left: 6px;
  vertical-align: middle
}

.cmp-footer__trademark {
  -webkit-box-flex: 1;
  color: #d9d2cc;
  -ms-flex: 1;
  flex: 1;
  font-family: Inter,Meiryo,Hiragino Kaku Gothic Pro;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: 10px
}

@media screen and (min-width: 768px) {
  .cmp-footer__trademark {
    -webkit-box-flex:3;
    -ms-flex: 3;
    flex: 3;
    font-size: 15.0866px;
    line-height: 18px
  }
}

.cmp-footer__copywrite {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 40px
}

.cmp-footer__copywrite--image {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.cmp-footer__copywrite img {
  width: 9pc
}

.cmp-footer__text {
  padding: 0 8px
}

@media screen and (min-width: 1200px) {
  .cmp-footer__text {
    width:100%
  }
}

.cmp-footer__stoke {
  display: none
}

@media screen and (min-width: 1200px) {
  .cmp-footer__stoke {
    content:url(../image/graph.png);
    display: block
  }
}

.cmp-footer .hover-footer-image-contents {
  content: var(--bg-image-hover);
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
  z-index: -9999
}


/* 确保折叠面板样式正确 */
.module-7-bottom2 .accordion-item:not(.active) .accordion-content {
  display: none;
}

.module-7-bottom2 .accordion-item.active .accordion-content {
  display: block;
  padding: 20px;
}

.module-7-bottom2 .accordion-header {
  cursor: pointer;
}

/* Privacy Policy Styles */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.8;
  color: #333;
}

.privacy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #005BC1;
  text-align: center;
  margin-bottom: 1rem;
}

.privacy-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 2rem;
}

.privacy-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  /* padding: 20px; */
  /* background: #f8f9fa; */
  border-radius: 8px;
}

.privacy-section {
  margin-bottom: 2rem;
}

.privacy-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #005BC1;
  margin-bottom: 1rem;
  border-bottom: 2px solid #005BC1;
  padding-bottom: 0.5rem;
}

.privacy-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 1.5rem 0 0.5rem 0;
}

.privacy-section p {
  margin-bottom: 1rem;
}

.privacy-section ul {
  margin: 1rem 0 1rem 2rem;
}

.privacy-section li {
  margin-bottom: 0.5rem;
}

.privacy-contact {
  background: #f0ebe5;
  padding: 20px;
  border-radius: 8px;
  margin-top: 3rem;
}

.privacy-contact h3 {
  color: #005BC1;
  margin-bottom: 1rem;
}

