@charset "UTF-8";

/*    ––––––––––––––––––––––––––––––––––––––––––––––––––
MARK: ヘッダー
–––––––––––––––––––––––––––––––––––––––––––––––––– */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 3px solid #4EAEFF;
    z-index: 9999;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 102, 204, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--blue);
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
}

header .logo:hover {
    color: var(--darkblue);
}

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

/* ハンバーガーメニュー（PC非表示） */
.hamburger {
    display: none;
}

.nav-overlay {
    display: none;
}

/* キーボードナビゲーション時のフォーカススタイル */
.keyboard-nav a:focus,
.keyboard-nav button:focus,
.keyboard-nav input:focus,
.keyboard-nav select:focus,
.keyboard-nav textarea:focus {
    outline: 3px solid var(--skyblue);
    outline-offset: 2px;
}

/* 通常時はフォーカスリングを非表示 */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

header nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

header nav a {
    color: #2F363D;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #0066CC;
}

header .header-cta {
    background: linear-gradient(90deg, #4EAEFF 0%, #0066CC 100%);
    color: #FFFFFF !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

header .header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    color: #FFFFFF;
}

/* ヘッダー分のpadding調整 */
body {
    padding-top: 65px;
}

/* Remove vignette/blur overlays */
body::before,
body::after {
    display: none !important;
    pointer-events: none !important;
}

html::before,
html::after {
    display: none !important;
}

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

    header .logo {
        font-size: 20px;
    }

    header .logo img {
        height: 30px;
    }

    /* ハンバーガーメニュー */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10001;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--blue);
        border-radius: 2px;
        transition: 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #0066CC 0%, #4EAEFF 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 80px 20px 40px;
        transition: 0.3s ease;
        z-index: 10000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    header nav.active {
        right: 0;
    }

    header nav a {
        color: #fff !important;
        font-size: 18px;
        padding: 20px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    header nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    header nav .header-cta {
        background: #FFD700 !important;
        color: var(--blue) !important;
        border-radius: 30px;
        margin-top: 20px;
        padding: 15px 30px;
        border-bottom: none;
    }

    /* オーバーレイ */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 9999;
    }

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

    header nav {
        gap: 15px;
    }

    header nav a:not(.header-cta) {
        display: none;
    }

    header .header-cta {
        padding: 8px 16px;
        font-size: 12px;
    }

    body {
        padding-top: 55px;
    }
}

/*    ––––––––––––––––––––––––––––––––––––––––––––––––––
MARK: 共通
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*color*/
:root {
    --lightyellow: #99CCFF;
    --lightblue: #D4E8FC;
    --lightgray: #F0F5FA;
    --aqua: #2995CA;
    --black: #2F363D;
    --blue: #0066CC;
    --darkblue: #004A99;
    --skyblue: #4EAEFF;
    --navy: #003366;
}


/* fontsize*/
:root {
    --160px: 10rem;
    --140px: 8.75rem;
    --130px: 8.125rem;
    --120px: 7.5rem;
    --100px: 6.25rem;
    --90px: 5.625rem;
    --80px: 5rem;
    --76px: 4.75rem;
    --72px: 4.5rem;
    --70px: 4.375rem;
    --64px: 4rem;
    --60px: 3.75rem;
    --56px: 3.5rem;
    --54px: 3.375rem;
    --50px: 3.125rem;
    --40px: 2.5rem;
    --38px: 2.375rem;
    --36px: 2.25rem;
    --32px: 2rem;
    --28px: 1.75rem;
    --24px: 1.5rem;
    --22px: 1.375rem;
    --20px: 1.25rem;
    --18px: 1.125rem;
    --16px: 1rem;
    --14px: 0.875rem;
    --12px: 0.75rem;
    --10px: 0.625rem;
}


.xl-pc {
    display: none !important;
}

.xs-sp {
    display: none !important;
}

/*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: FV
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#fv {
    background-image: url(../img/fv-bg.jpg);
    background-position: top center;
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 20px 0 0px !important;
}

/* merrybiz style FV - remove old background */
#fv.fv-merrybiz {
    background-image: none !important;
    background-color: transparent !important;
    padding: 0 !important;
}


#fv .illust {
    margin-top: 30px;
}

#fv .box {
    background-color: var(--white);
    box-shadow: 10px 10px 5px 0px rgba(0, 102, 204, 0.3);
    border-radius: 10px;
    margin: 15px 0 0;
    padding: 25px 30px 30px;
    width: 88%;
}

#fv .box .icon {
    margin: 35px 0 0 0;
}

#fv .box .title {
    color: var(--blue);
    font-weight: bold;
    font-size: var(--32px);
    margin-bottom: -10px;
}

#fv .box .title span {
    font-size: var(--24px);
}

#fv .box .title .en {
    font-size: var(--56px);
    margin: 0 4px;
}

#fv .box p {
    font-size: var(--16px);
    margin-bottom: 0px;
}

#fv .box .meyasu {
    margin-top: 20px;
}

#fv .box .meyasu p {
    font-size: var(--14px);
    font-weight: bold;
    text-align: center;
    background-color: #99CCFF;
    padding: 3px;
    margin: 0 4px;
    border-radius: 50px;
}


#fv .box .meyasu p .en {
    font-size: var(--20px);
    padding: 0;
}


/*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: ご利用企業様のお声ショートver
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#short-voice {
    padding: 60px 0;
}

#short-voice .deco-title {
    color: var(--blue);
    text-align: center;
    font-weight: 600;
    font-size: var(--36px);
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
}

#short-voice .deco-title:before {
    content: '';
    display: inline-block;
    width: 35px;
    height: 35px;
    background-image: url(../img/sec04-deco01.png);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    margin-right: 25px;
}

#short-voice .deco-title:after {
    content: '';
    display: inline-block;
    width: 35px;
    height: 35px;
    background-image: url(../img/sec04-deco02.png);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    margin-left: 25px;
}

#short-voice .box {
    background-color: var(--white);
    border-radius: 6px;
    padding: 30px;
}

#short-voice .box p {
    text-align: justify;
    font-weight: 500;
    line-height: 1.65;
    margin-bottom: 0;
    font-size: var(--14px);
}

#short-voice .box .name {
    text-align: center;
    color: var(--blue);
    margin-top: 7px;
}


/*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: ベネフィット
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#sec01 {
    padding: 50px 0 !important;
}

/*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: サービス内容ハイライト（AIニュース＆30時間）
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#sec03 .service-highlights {
    margin: 40px 0;
}

#sec03 .highlight-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    margin-bottom: 15px;
    box-shadow: 0 2px 12px rgba(0, 51, 102, 0.08);
    border: 1px solid #e8f0f8;
    transition: box-shadow 0.3s ease;
}

#sec03 .highlight-card:hover {
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.12);
}

#sec03 .highlight-badge {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-size: var(--12px);
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

#sec03 .highlight-number {
    color: var(--blue);
    font-weight: 700;
    font-size: var(--16px);
    margin-bottom: 12px;
    line-height: 1;
}

#sec03 .highlight-number .en {
    font-size: var(--48px);
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

#sec03 .highlight-number .unit {
    font-size: var(--14px);
    font-weight: 500;
    color: var(--black);
    margin-left: 2px;
}

#sec03 .highlight-card h4 {
    color: var(--black);
    font-size: var(--18px);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

#sec03 .highlight-desc {
    color: #666;
    font-size: var(--14px);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
}

/*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: フローチャット
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#sec03 .deco-title {
    color: var(--blue);
    text-align: center;
    font-weight: 600;
    font-size: var(--22px);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
}

#sec03 .deco-title:before {
    content: '';
    display: inline-block;
    width: 35px;
    height: 35px;
    background-image: url(../img/sec04-deco01.png);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    margin-right: 25px;
}

#sec03 .deco-title:after {
    content: '';
    display: inline-block;
    width: 35px;
    height: 35px;
    background-image: url(../img/sec04-deco02.png);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    margin-left: 25px;
}

#sec03 .wrap-r {
    display: flex;
    display: -webkit-flex;
    justify-content: end;
}

#sec03 .wrap-r .icon {
    margin: 0 0 0 15px;
    height: 80px;
    width: 80px;
}

#sec03 .wrap-r .balloon-right {
    background-color: #99CCFF;
    border-radius: 10px 0 10px 10px;
    padding: 20px;
}

#sec03 .wrap-l {
    display: flex;
    display: -webkit-flex;
}

#sec03 .wrap-l .icon {
    margin: 0 15px 0 0;
    height: 80px;
    width: 80px;
}


#sec03 .balloon-right .name {
    color: var(--blue);
    font-size: var(--14px);
    margin-bottom: 10px;
    font-weight: bold;
}

#sec03 .balloon-right p {
    font-size: var(--14px) !important;
    margin-bottom: 0px;
    font-weight: 500;
}

#sec03 .balloon-right .file {
    background-color: #E8F4FF;
    border-radius: 3px;
    color: var(--blue);
    font-weight: bold;
    font-size: var(--12px) !important;
    padding: 5px 15px;
    margin: 10px 0 0;
}

#sec03 .balloon-right .file img {
    margin: -3px 5px 0 0;
    width: 18px;
}

#sec03 .time-right {
    font-size: var(--12px) !important;
    text-align: right;
    margin: 5px 0 25px;
    font-weight: 500;
}

#sec03 .balloon-left {
    background-color: var(--lightblue);
    border-radius: 0px 10px 10px 10px;
    padding: 20px;
    font-weight: 500;
}


#sec03 .balloon-left .name img {
    width: 80px;
    margin-bottom: 10px !important;
}

#sec03 .balloon-left p {
    font-size: var(--14px) !important;
    font-weight: 500;
    margin-bottom: 0;
}

#sec03 .balloon-left .file {
    background-color: #FBFDFF;
    border-radius: 3px;
    color: var(--aqua);
    font-weight: bold;
    font-size: var(--12px) !important;
    padding: 5px 15px;
    margin: 10px 0 0;
}

#sec03 .balloon-left .file img {
    margin: -3px 5px 0 0;
    width: 18px;
}

#sec03 .time-left {
    font-size: var(--12px) !important;
    margin: 5px 0 25px;
    font-weight: 500;
}

#sec03 .after-late {
    text-align: center;
    font-size: 14px !important;
    font-weight: 500;
}

#sec03 .after-late span {
    background-color: #ECEDEE;
    padding: 5px 30px;
    border-radius: 20px;
}


/*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: 選ばれる理由・利用開始までの流れ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#sec03 .deco-title {
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: var(--18px);
    line-height: 1.6;
    margin: 40px 0 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
}

#sec05 .deco-title {
    color: var(--blue);
    text-align: center;
    font-weight: 600;
    font-size: var(--18px);
    line-height: 1.6;
    margin: 30px 0 -10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
}

#sec08 .deco-title {
    color: var(--blue);
    text-align: center;
    font-weight: 600;
    font-size: var(--18px);
    line-height: 1.6;
    margin: 60px 0 -20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
}

#sec03 .deco-title:before {
    content: '';
    display: inline-block;
    width: 35px;
    height: 35px;
    background-image: url(../img/sec03-deco01.png);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    margin-right: 25px;
}


#sec03 .deco-title:after {
    content: '';
    display: inline-block;
    width: 35px;
    height: 35px;
    background-image: url(../img/sec03-deco02.png);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    margin-left: 25px;
}

#sec05 .deco-title:before,
#sec08 .deco-title:before {
    content: '';
    display: inline-block;
    width: 35px;
    height: 35px;
    background-image: url(../img/sec04-deco01.png);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    margin-right: 25px;
}


#sec05 .deco-title:after,
#sec08 .deco-title:after {
    content: '';
    display: inline-block;
    width: 35px;
    height: 35px;
    background-image: url(../img/sec04-deco02.png);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    margin-left: 25px;
}

/*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: アウトプット
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#output {
    background: linear-gradient(90deg, rgba(78, 174, 255, 1) 0%, rgba(0, 102, 204, 1)100%);
    /*padding: 120px 100px;*/
    padding: 120px 4%;
}



#output h2 {
    color: #b3d9ff81;
    font-size: var(--130px);
    font-family: "DM Sans", sans-serif;
    letter-spacing: 0.4rem;
    font-weight: 900;
    line-height: 0.35;
    margin-bottom: 30px;
}

#output h2 strong {
    color: #fff;
    font-size: var(--32px);
    letter-spacing: 0.05rem;
    font-weight: bold;
}

#output .col-lg-3 {
    display: flex;
    flex-direction: column;
}

#output .balloon {
    text-align: center;
    font-size: var(--22px);
    border-radius: 6px;
    font-weight: bold;
    background: var(--black);
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 10px 10px 20px;
    width: 100%;
}

#output .balloon-two {
    padding: 25px 10px 35px;
}

#output .balloon:before {
    content: "";
    position: absolute;
    top: 99%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid var(--black);
}

#output .balloon p {
    color: #99CCFF;
    font-size: var(--22px);
    margin-bottom: 0;
    line-height: 1.4;
}

#output .box {
    background-color: #fff;
    border-radius: 6px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#output .box img {
    border-radius: 6px 6px 0 0;
}

#output .box .meyasu {
    position: absolute;
    background-color: #99CCFF;
    top: 15px;
    left: 15px;
    font-size: var(--14px);
    font-weight: bold;
    padding: 1px 10px 3px;
    border-radius: 20px;
}

#output .box .meyasu .en {
    font-size: var(--20px);
}

#output .box .meyasu img {
    margin: -3px 5px 0 0;
    width: 20px;
}

#output .box .docs {
    padding: 40px;
    margin-top: auto;
}

#output .box h4 {
    text-align: center;
    color: var(--blue);
    font-weight: bold;
    line-height: 1.5;
    font-size: var(--18px);
}

#output .box .btn {
    background-color: #fff;
    border: solid 2px var(--blue);
    color: var(--blue);
    font-size: var(--14px);
    padding: 25px 25px 25px 3px;
    width: 100%;
    margin-bottom: 15px;
    transition: 0.5s;
    letter-spacing: 0.05rem;
}

#output .box .btn:after {
    position: absolute;
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    right: 8px;
    margin-top: -4px;
    background-image: url(../img/btn-icon-arrow02.png);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    transition: 0.5s;
}


#output .box .btn:hover {
    border: solid 2px var(--darkblue);
    color: var(--darkblue);
}

#output .box .link {
    text-align: center;
    color: var(--blue);
    text-decoration: underline;
    font-weight: bold;
    font-size: var(--16px);
    display: block;
    transition: 0.5s;
}

#output .box .link:hover {
    color: var(--darkblue);
}

#output .box .btn:hover:after {
    background-image: url(../img/btn-icon-arrow03.png);
}

/*ポップアップ表示*/
.modaal-container {
    border-radius: 6px;
}

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

.modaal-content-container h3 {
    text-align: left;
    color: var(--blue);
    font-size: var(--24px);
    padding-bottom: 15px;
    border-bottom: solid 1px #AEBAC6;
}

.modaal-content-container h3:after {
    width: 0px;
}

.modaal-content-container .caption {
    color: var(--black);
    margin: 10px 0 60px;
}

.modaal-content-container .inline_close img {
    cursor: pointer;
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 1s;
    z-index: 10;
}

.modaal-content-container .border {
    border: solid 1px #AEBAC6;
    margin-bottom: 60px;
}



/*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: メリット
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#sec07 {
    background-color: var(--lightgray) !important;
}

#sec07 .fix .box {
    background-color: var(--white);
}

#sec07 .js-scrollable tbody td,
#sec07 .js-scrollable tbody .ai {
    background-color: var(--white) !important;
}

#sec07 .js-scrollable tbody .cost td {
    font-size: var(--16px) !important;
    font-weight: 500 !important;
    letter-spacing: 0.05rem !important;
}

#sec07 .js-scrollable tbody .cost td .en {
    font-size: var(--18px) !important;
    letter-spacing: 0.05rem;
}

#sec07 .js-scrollable tbody tr:last-child .ai {
    font-weight: bold !important;
}


/*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: ご利用の流れ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#sec08 {
    background-color: var(--white) !important;
}

#sec08 .fix .box {
    background-color: var(--lightgray);
}


/*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: ご利用企業様の声
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#voice {
    padding: 120px 15px;
}

#voice .box {
    background-color: var(--white);
    border-radius: 6px;
    padding: 40px;
    margin: 0 auto 25px;
    max-width: 800px;
}

#voice .box p {
    text-align: justify;
}

#voice .box img {
    margin-top: 20%;
    width: 150px;
}

#voice .box .name {
    color: var(--blue);
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
}


/*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: レスポンシブ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*1700px以下*/
@media (max-width:1700px) {
    #short-voice .col-lg-3 {
        flex: 0 0 33%;
        max-width: 33%;
    }

    #sec01 .col-lg-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/*1500px以下*/
@media (max-width:1500px) {

    /*  –––––––––––––––––––––––––––––––––––––––––––––––
MARK: FV
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #fv .box {
        width: 100%;
    }

    /*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: アウトプット
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #output .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/*1500px以下992px以上*/
@media screen and (max-width:1500px) and (min-width:992px) {
    .xl-pc {
        display: block !important;
    }

    /*  –––––––––––––––––––––––––––––––––––––––––––––––
MARK: FV
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #fv .box p {
        font-size: var(--14px);
    }


    /*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: ご利用企業様のお声ショートver
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #short-voice .col-lg-3 {
        flex: 0 0 33%;
        max-width: 33%;
    }
}

/*1300px以下*/
@media (max-width:1300px) {

    /*  –––––––––––––––––––––––––––––––––––––––––––––––
MARK: FV
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #fv .box .meyasu p {
        font-size: var(--12px);
    }

    #fv .box .meyasu p .en {
        font-size: var(--18px);
    }
}

/*1279px以下1200px以上*/
@media screen and (max-width: 1279px) and (min-width: 992px) {
    #sec01 .col-lg-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/*1200px以下992px以上*/
@media screen and (max-width:1200px) and (min-width:992px) {
    #fv .box {
        margin: 40px 0 25px;
        padding: 6% 30px 30px;
        position: relative;
        text-align: center;
        width: 100%;
    }

    #fv .box .col-md-5 {
        position: absolute;
        top: -25%;
        right: 0;
        left: 0;
        margin: 0 auto 10px;
        width: 35%;
    }

    #fv .col-md-7 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    #sec01 p {
        font-size: var(--16px) !important;
    }
}



/*992px以下*/
@media (max-width:991px) {

    /*  –––––––––––––––––––––––––––––––––––––––––––––––
MARK: FV
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #fv {
        background-image: url(../img/fv-bg-sp.jpg);
        background-position: top center;
        background-size: 100%;
        background-repeat: no-repeat;
    }

    /* merrybiz style FV - remove old background */
    #fv.fv-merrybiz {
        background-image: none !important;
        background-color: transparent !important;
        padding: 0 !important;
    }

    #fv .box {
        width: 100%;
    }

    #fv .box p {
        text-align: left;
    }

    #fv .box .meyasu {
        margin-top: 30px;
    }

    /*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: ご利用企業様のお声ショートver
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #short-voice .deco-title {
        margin-bottom: 60px;
    }

    #short-voice .icon {
        margin: -65px auto 3px;
        width: 120px;
    }

    #short-voice .box {
        margin-bottom: 45px;
        padding: 40px;
    }

    #short-voice .box .name {
        margin-bottom: 10px;
        font-weight: bold;
    }

    #short-voice .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    #sec01 .col-lg-2 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }


    /*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: フローチャット
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #sec03 .wrap-r .balloon-right p {
        text-align: left;
        margin-bottom: 10px;
    }

    #sec03 .wrap-l .balloon-left p {
        text-align: left;
        margin-bottom: 10px;
    }

    /*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: サービスハイライト（992px以下）
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #sec03 .service-highlights {
        margin: 35px 0;
    }

    #sec03 .highlight-card {
        padding: 24px 20px;
    }

    #sec03 .highlight-number .en {
        font-size: var(--40px);
    }

    #sec03 .highlight-card h4 {
        font-size: var(--16px);
    }

    #sec03 .highlight-desc {
        font-size: var(--13px);
    }

    /*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: アウトプット
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #output {
        padding: 120px 15px 100px;
    }

    #output .box .docs {
        padding: 40px 25px;
    }

    /*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: ご利用企業様の声
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #voice {
        padding: 120px 15px 80px;
    }

    #voice h2 {
        margin-bottom: 60px;
    }

    #voice .box {
        padding: 40px;
        margin: 0 auto 50px;
    }

    #voice .box img {
        margin: -65px auto 2px;
        width: 120px;
    }
}

/*768px以下600px以上*/
@media screen and (max-width: 768px) and (min-width: 601px) {
    #fv .inner {
        max-width: 650px !important;
        position: inherit;
    }
}


/*992px以下768以上*/
@media screen and (max-width: 992px) and (min-width: 769px) {

    /*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: 選ばれる理由・利用開始までの流れ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #sec05 .deco-title {
        margin: 30px 0;
    }

    #sec08 .deco-title {
        color: var(--blue);
        margin: 60px 0 -10px;
    }
}

/*768px以下*/
@media (max-width: 768px) {

    /*  –––––––––––––––––––––––––––––––––––––––––––––––
MARK: FV
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #fv {
        padding: 0 !important;
    }

    #fv .col-md-7 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    #fv .logo {
        padding: 0 20px;
    }

    #fv .box {
        margin: 70px 0 25px;
        padding: 12% 30px 20px;
        position: relative;
    }

    #fv .box p {
        line-height: 1.5;
    }

    #fv .box .icon {
        margin: 0;
    }


    #fv .box .title {
        margin-bottom: -5px;
        text-align: center;
        font-size: var(--32px) !important;
    }

    #fv .box .title span {
        font-size: var(--24px);
    }

    #fv .box p {
        text-align: center;
        font-size: var(--14px);
    }

    #fv .col-lg-6 {
        padding: 5px;
    }

    #fv .box .col-md-5 {
        position: absolute;
        top: -11%;
        right: 0;
        left: 0;
        margin: 0 auto 10px;
        width: 35%;
    }

    #fv .box .meyasu {
        margin-top: 20px;
    }

    #fv .box .meyasu p .en {
        font-size: var(--18px);
    }

    #fv .box .meyasu p {
        font-size: var(--12px);
        padding: 3px;
        margin: 0 4px 12px;
    }



    /*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: ご利用企業様のお声ショートver
–––––––––––––––––––––––––––––––––––––––––––––––––– */

    #short-voice {
        padding: 60px 0 20px;
    }

    #short-voice .deco-title {
        font-size: var(--22px);
        margin-bottom: 40px;
    }

    #short-voice .deco-title:after {
        width: 25px;
        height: 25px;
        margin-left: 8px;
    }

    #short-voice .deco-title:before {
        width: 25px;
        height: 25px;
        margin-right: 8px;
    }

    #short-voice .icon {
        margin: -65px auto 3px;
        width: 100px;
    }

    #short-voice .box {
        margin-bottom: 45px;
        padding: 40px 25px 25px;
    }

    #short-voice .box .name {
        margin-bottom: 10px;
        font-weight: bold;
    }


    #sec01 .col-lg-2 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    /*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: サービスハイライト（768px以下）
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #sec03 .service-highlights {
        margin: 25px 0;
    }

    #sec03 .highlight-card {
        padding: 20px 18px;
        border-radius: 10px;
        margin-bottom: 12px;
    }

    #sec03 .highlight-badge {
        font-size: var(--11px);
        padding: 3px 10px;
        margin-bottom: 10px;
    }

    #sec03 .highlight-number {
        font-size: var(--14px);
        margin-bottom: 10px;
    }

    #sec03 .highlight-number .en {
        font-size: var(--36px);
    }

    #sec03 .highlight-card h4 {
        font-size: var(--15px);
        margin-bottom: 6px;
    }

    #sec03 .highlight-desc {
        font-size: var(--12px);
        line-height: 1.6;
    }

    #sec03 .highlight-desc {
        font-size: var(--14px);
        text-align: center;
    }

    /*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: フローチャット
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #sec03 .deco-title {
        font-size: var(--18px);
        margin-bottom: 10px !important;
    }

    #sec03 .deco-title:before {
        width: 25px;
        height: 25px;
        margin-right: 12px;
    }

    #sec03 .deco-title:after {
        width: 25px;
        height: 25px;
        margin-left: 12px;
    }

    #sec03 .box h3 {
        line-height: 1.6;
        margin-bottom: 60px !important;
    }

    #sec03 .wrap-r .icon {
        margin: 0 0 0 15px !important;
        height: 50px;
        width: 50px;
    }

    #sec03 .wrap-r .balloon-right {
        padding: 15px;
    }

    #sec03 .wrap-r .balloon-right p {
        text-align: left;
        margin-bottom: 10px;
    }

    #sec03 .balloon-right .file {
        margin: 10px 0 0 !important;
    }

    #sec03 .balloon-left .file {
        margin: 10px 0 0 !important;
    }

    #sec03 .time-right {
        margin: 5px 0 20px !important;
    }

    #sec03 .wrap-l .balloon-left {
        padding: 15px;
    }

    #sec03 .wrap-l .icon {
        margin: 0 15px 0 0px !important;
        height: 50px;
        width: 50px;
    }

    #sec03 .wrap-l .balloon-left p {
        text-align: left;
        margin-bottom: 10px;
    }

    #sec03 .balloon-left .name img {
        margin-bottom: 0px !important;
    }

    #sec03 .time-left {
        text-align: left;
        margin: 5px 0 20px !important;

    }

    #sec03 .after-late {
        margin-bottom: 30px !important;
    }

    /*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: アウトプット
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #output {
        background: linear-gradient(0deg, rgba(78, 174, 255, 1) 0%, rgba(0, 102, 204, 1) 100%);
        padding: 100px 25px 60px;
    }

    #output h2 {
        font-size: var(--64px);
        margin-bottom: 10px;
        letter-spacing: 0.1rem;
        line-height: 0.55;
    }

    #output h2 strong {
        font-size: var(--28px);
    }

    #output .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    #output .balloon {
        margin: 45px 0px 25px;
    }

    #output .balloon p {
        font-size: var(--20px);
        line-height: 1.5;
    }

    #output .balloon-two {
        padding: 10px 10px 20px;
    }

    #output .box h4 {
        font-size: var(--16px);
        margin-bottom: 20px;
    }

    #output .box p {
        font-size: var(--14px);
        margin-bottom: 20px;
    }

    #output .box .docs {
        padding: 40px 25px;
    }

    #output .box .btn {
        padding: 12px 5px 15px;
        margin-bottom: 25px;
    }

    #output .box .btn:after {
        width: 25px;
        height: 25px;
        margin-top: -13px;
    }

    /*ポップアップ*/
    .modaal-content-container h3 {
        font-size: var(--16px);
        line-height: 1.5;
    }

    .modaal-content-container {
        padding: 15px;
    }

    .modaal-content-container .inline_close img {
        right: 15px;
        top: 15px;
        width: 40px;
        height: 40px;
    }

    .modaal-content-container .caption {
        font-size: var(--14px);
        margin: 10px 0 40px;
    }

    .modaal-content-container .border {
        margin-bottom: 40px;
    }

    /*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: 選ばれる理由
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #sec05 h2 {
        letter-spacing: 0.1rem !important;
    }



    /*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: 選ばれる理由・利用開始までの流れ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #sec03 .deco-title {
        font-size: var(--16px);
        margin: 40px 0 20px;
    }

    #sec05 .deco-title {
        font-size: var(--16px);
        margin: 30px 0;
    }

    #sec08 .deco-title {
        color: var(--blue);
        font-size: var(--16px);
        margin: 60px 0 -10px;
    }

    #sec03 .deco-title:before {
        width: 25px;
        height: 25px;
        margin-right: 5px;
    }


    #sec03 .deco-title:after {
        width: 25px;
        height: 25px;
        margin-left: 5px;
    }

    #sec05 .deco-title:before,
    #sec08 .deco-title:before {
        width: 25px;
        height: 25px;
        margin-right: 5px;
    }


    #sec05 .deco-title:after,
    #sec08 .deco-title:after {
        width: 25px;
        height: 25px;
        margin-left: 5px;
    }


    /*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: ご利用企業様の声
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #voice {
        padding: 80px 15px 30px;
    }

    #voice h2 {
        margin-bottom: 60px;
    }

    #voice .box {
        padding: 40px 25px 15px;
        margin: 0 auto 50px;
    }

    #voice .box img {
        margin: -65px auto 2px;
        width: 100px;
    }

    #voice .box p {
        font-size: var(--14px);
    }
}

/*550px以下*/
@media (max-width: 550px) {

    /*  –––––––––––––––––––––––––––––––––––––––––––––––
MARK: FV
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #fv .logo {
        padding: 0 20px;
    }

    #fv .box {
        margin: 45px 0 25px;
        padding: 13% 30px 10px;
        position: relative;
    }

    #fv .box p {
        line-height: 1.5;
    }

    #fv .box .icon {
        margin: 20px 0 0 0;
    }


    #fv .box .title {
        margin-bottom: -5px;
        text-align: center;
    }

    #fv .box .title span {
        font-size: var(--22px);
    }

    #fv .box .title .en {
        font-size: var(--50px);
    }

    #fv .box p {
        text-align: center;
        font-size: var(--14px);
    }

    #fv .col-lg-6 {
        padding: 5px;
    }

    #fv .box .col-md-5 {
        position: absolute;
        top: -55px;
        right: 0;
        left: 0;
        margin: 0 auto 10px;
        width: 180px;
    }

    #fv .box .meyasu {
        margin-top: 20px;
    }

    #fv .box .meyasu p .en {
        font-size: var(--18px);
    }

    #fv .box .meyasu p {
        font-size: var(--12px);
        padding: 3px;
        margin: 0 4px 12px;
    }

    /*  –––––––––––––––––––––––––––––––––––––––––––––––
MARK: アウトプット
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #output {
        background: linear-gradient(0deg, rgba(78, 174, 255, 1) 0%, rgba(0, 102, 204, 1) 100%);
        padding: 100px 5px 60px;
    }
}


/*    –––––––––––––––––––––––––––––––––––––––––––––––
MARK: AIサービス7分類スライダー
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#sec04 .ai-service-slider-wrap {
    position: relative;
    padding: 0 60px;
    max-width: 1600px;
    margin: 0 auto;
}

#sec04 .ai-service-swiper {
    overflow: hidden;
    padding: 10px 0 20px;
}

#sec04 .swiper-slide {
    height: auto;
}

#sec04 .ai-service-card.box {
    padding: 30px;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.05);
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#sec04 .ai-service-card.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.1);
}

#sec04 .ai-service-card.box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00BCD4 0%, #0066CC 100%);
    border-radius: 16px 16px 0 0;
}

#sec04 .ai-service-card.box .service-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(0, 102, 204, 0.06);
    font-family: "DM Sans", sans-serif;
    line-height: 1;
    z-index: 0;
    letter-spacing: -2px;
}

#sec04 .ai-service-card.box h4 {
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

#sec04 .ai-service-card.box .service-subtitle {
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

#sec04 .ai-service-card.box .service-desc {
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
    padding: 0;
    background: none;
    border: none;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

#sec04 .ai-service-card.box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    background-color: transparent;
    border-radius: 0;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

#sec04 .ai-service-card.box ul li {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    position: relative;
    padding-left: 24px !important;
    text-indent: 0 !important;
    margin-bottom: 10px;
    line-height: 1.5;
    border-bottom: 1px dashed #eee;
    padding-bottom: 8px;
}

#sec04 .ai-service-card.box ul li:last-child {
    border-bottom: none;
}

#sec04 .ai-service-card.box ul li:before {
    content: '✓' !important;
    position: absolute;
    left: 0;
    top: 2px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 16px !important;
    height: 16px !important;
    color: var(--blue);
    background-color: transparent !important;
    font-size: 14px;
    font-weight: 900;
    border-radius: 0;
}

#sec04 .ai-service-card.box .use-cases {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

#sec04 .ai-service-card.box .use-cases span {
    background: #F0F7FF;
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

/* ナビゲーションボタン */
#sec04 .ai-service-prev,
#sec04 .ai-service-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(90deg, #4EAEFF 0%, #0066CC 100%);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

#sec04 .ai-service-prev:hover,
#sec04 .ai-service-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

#sec04 .ai-service-prev {
    left: 5px;
}

#sec04 .ai-service-next {
    right: 5px;
}

#sec04 .ai-service-prev span,
#sec04 .ai-service-next span {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

#sec04 .ai-service-prev.swiper-button-disabled,
#sec04 .ai-service-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ページネーション */
#sec04 .ai-service-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

#sec04 .ai-service-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--lightblue);
    opacity: 1;
    transition: all 0.3s ease;
}

#sec04 .ai-service-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, #4EAEFF 0%, #0066CC 100%);
    width: 30px;
    border-radius: 6px;
}

/* 992px以下 - タブレット */
@media (max-width: 991px) {
    #sec04 .ai-service-slider-wrap {
        padding: 0 50px;
    }

    #sec04 .ai-service-prev,
    #sec04 .ai-service-next {
        width: 40px;
        height: 40px;
    }

    #sec04 .ai-service-prev span,
    #sec04 .ai-service-next span {
        font-size: 18px;
    }
}

/* 768px以下 - スマートフォン */
@media (max-width: 768px) {
    #sec04 .ai-service-slider-wrap {
        padding: 0 15px;
    }

    #sec04 .ai-service-prev,
    #sec04 .ai-service-next {
        display: none;
    }

    #sec04 .ai-service-card.box {
        padding: 20px;
    }

    #sec04 .ai-service-card.box .service-number {
        font-size: 2.5rem;
        top: 10px;
        right: 15px;
    }

    #sec04 .ai-service-card.box h4 {
        font-size: 1.25rem;
    }

    #sec04 .ai-service-card.box .service-subtitle {
        font-size: 0.85rem;
    }

    #sec04 .ai-service-card.box .service-desc {
        font-size: 0.8rem;
        padding: 0;
        background: none;
    }

    #sec04 .ai-service-card.box ul {
        padding: 0;
    }

    #sec04 .ai-service-card.box ul li {
        font-size: 0.8rem;
        padding-left: 20px !important;
        text-indent: 0 !important;
        margin-bottom: 8px;
    }

    #sec04 .ai-service-card.box ul li:before {
        width: 14px !important;
        height: 14px !important;
        font-size: 12px;
        background-color: transparent !important;
        color: var(--blue);
    }

    #sec04 .ai-service-card.box .use-cases span {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    #sec04 .ai-service-pagination {
        margin-top: 20px;
    }

    #sec04 .ai-service-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    #sec04 .ai-service-pagination .swiper-pagination-bullet-active {
        width: 25px;
    }
}

/*350px以下*/
@media (max-width: 350px) {
    .xs-sp {
        display: block !important;
    }

    /*  –––––––––––––––––––––––––––––––––––––––––––––––
MARK: FV
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    #fv .box {
        margin: 35px 0 25px;
        padding: 20% 15px 10px;
    }

    #fv .box .icon {
        margin: 30px 0 0 0;
    }

}