/* Breadcrumb Override for HUE */
.hue .c-breadcrumb {
    position: relative;
    margin: 10px auto 0;
    padding: 10px 20px;
    z-index: 10;
    background: #f8f9fa;
}

.hue .c-breadcrumb ul {
    background-color: #fff;
    border-radius: 999px;
    padding: 6px 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    height: 30px;
    display: inline-flex;
    align-items: center;
}

.hue .c-breadcrumb ul li {
    color: #595757;
}

.hue .c-breadcrumb ul li a {
    color: #b3b3b4;
    transition: opacity 0.3s ease;
}

.hue .c-breadcrumb ul li a:hover {
    color: #0762dc;
    opacity: 0.8;
}

.hue .c-breadcrumb ul li:not(:first-of-type)::before {
    content: "/";
    color: #b3b3b4;
    font-weight: 400;
    margin: 0 6px;
}

@media (min-width: 781px) {
    .hue .c-breadcrumb {
        margin-top: 0;
    }
}

@media (max-width: 780px) {
    .hue .c-breadcrumb ul {
        padding: 8px 16px;
    }

    .hue .c-breadcrumb ul li,
    .hue .c-breadcrumb ul li a {
        font-size: 1rem;
        line-height: 1.8;
    }
}

.hue .c-ttl02 {
    color: #000;
    text-align: center;
    margin-top: -53px;
    margin-bottom: 50px;
    font-size: 3.2rem;
}

.hue .c-ttl02#features_title {
    margin-top: -60px;
    margin-bottom: 50px;
    font-size: 3.2rem;
}

/* Features Section (Matching provided design) */
.hue .sec-features {
    padding: 35px 0 120px;
    background: #fff;
    position: relative;
}

.hue .sec-features::before {
    content: "";
    display: block;
    height: 80px;
    /* ずらしたい量 */
    margin-top: -80px;
    /* 同じ値をマイナスで */
}

.hue .feature-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0 auto 60px;
    max-width: 996px;
    justify-content: center;
}

.hue .feature-item:last-child {
    margin-bottom: 0;
}

.hue .feature-item.is-reverse {
    flex-direction: row-reverse;
}

.hue .feature-content {
    flex: 1;
}

.hue .feature-label {
    display: inline-block;
    background: linear-gradient(64.16deg, #902AF3 9.28%, #0762DC 53.06%, #00D3BC 98.2%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 0 20px 20px 0;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .hue .feature-label {
        padding: 10px 18px 10px 22px;
        margin-left: -25px;
    }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
    .hue .feature-ttl .pc {
        display: none;
    }

}

.hue .feature-ttl {
    font-size: 3.4rem;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin-bottom: 25px;
}

.hue .feature-desc {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #595957;
    margin-bottom: 30px;
}

.hue .feature-desc .highlight {
    color: #FF7631;
    font-weight: 700;
}

.hue .feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8b46ff;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s;
}


.hue .feature-img {
    flex: 1;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}

.hue .feature-img img {
    max-width: 100%;
    max-height: 466px;
    height: auto;
}

.hue .feature-img.dual {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.hue .feature-img.dual img {
    width: 100%;
    height: auto;
    padding-top: 60px;

}

/* Specific adjustments for feature 1 and 2 diagrams */
.hue .feature-img.dual .img-box,
.hue .feature-img.duel .img-box {
    text-align: center;
    flex: 1 1 0;
}


.hue .feature-img.dual .img-label {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #595757;
}

.hue .feature-img.dual .img-label.hue-label {
    color: #8b46ff;
}

@media (max-width: 992px) {

    .hue .feature-item,
    .hue .feature-item.is-reverse {
        flex-direction: column !important;
        gap: 10px;
        margin-bottom: 50px;
    }

    .hue .feature-img {
        width: 100%;
        padding: 0;
        min-height: auto;
    }

    .hue .feature-ttl {
        font-size: 2.6rem;
        margin-top: 20px;
    }

    .hue .feature-img.dual,
    .hue .feature-img.duel {
        flex-direction: column;
        gap: 30px;
        padding: 20px 20px;
    }

    .hue .feature-img.dual .img-box,
    .hue .feature-img.duel .img-box {
        flex: none;
        /* Override desktop flex:1 */
    }

    .hue .feature-img.dual .img-box:first-child,
    .hue .feature-img.duel .img-box:first-child {
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
    }
}


/* SPで縦積み */
@media (max-width: 768px) {
    .hue .feature-img.dual {
        flex-direction: column;
        /* 子要素を縦並び */
    }

    .hue .feature-img.dual .img-box:first-child,
    .hue .feature-img.duel .img-box:first-child {
        border-bottom: none;
        padding-bottom: 0px;
    }

    .hue .feature-img.dual .img-box {
        width: 100%;
        /* 念のため100%に */
        flex: none;
    }


    .hue .feature-img.dual .img-label {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #595757;
    }

    .hue .feature-img.dual .img-label.hue-label {
        color: #8b46ff;
    }

    /* 2枚目の画像ブロックの上に線 */
    .hue .feature-img.dual .img-box+.img-box {
        border-top: 1px solid #E5E5E5;
        padding-top: 20px;
        margin-top: 20px;
    }

    .hue .feature-img.dual img.sp {
        padding-top: 20px;
    }

}

.hue .sec-pickup {
    padding: 65px 0 200px;
    background: #f8f8f8;
}

.hue .case-header {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0;
}

.hue .case-ttl {
    font-size: 3.6rem;
    font-weight: 700;
    color: #8b46ff;
    margin-bottom: 20px;
}

.hue .case-lead {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
}

.hue .slider-center .c-swiper-nav {
    align-items: center;
    position: absolute;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.slider-center .swiper-wrapper .item:hover .box-info .box-top .tit-item {
    color: #902AF3;
}

/* HUEの活用事例 見出し調整（このページのみ） */
.sec-pickup .case-header {
    text-align: left !important;
    margin-bottom: 52px;
}

.sec-pickup .case-ttl-row {
    display: flex;
    align-items: baseline;
    gap: 30px;
    margin-bottom: 12px;
}

.sec-pickup .case-ttl {
    font-size: 32px !important;
    font-weight: 700;
    color: #000;
    margin-bottom: 0 !important;
    line-height: 1.2;
}

.sec-pickup .case-inline-link {
    font-size: 18px;
    color: #8b46ff;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s;
}

.sec-pickup .case-inline-link:hover {
    opacity: 0.7;
}

.sec-pickup .case-lead {
    font-size: 16px;
    color: #595757;
    text-align: left !important;
    margin-top: 0 !important;
}

@media (max-width: 768px) {

    .hue .sec-pickup .case-header {
        display: flex;
        flex-direction: column;
        margin-bottom: 16px;
    }

    .hue .sec-pickup {
        padding: 70px 0 120px;
    }

    .sec-pickup .case-lead {
        font-size: 1.4rem;
        line-height: 1.8;
    }

    .sec-pickup .case-ttl-row {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .sec-pickup .case-ttl {
        font-size: 24px !important;
        line-height: 1.4;
    }

    .sec-pickup .c-link {
        margin-bottom: 22px;
    }

    /* 事例スライダーSP調整 */
    .sec-pickup .item {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
    }

    .sec-pickup .item .box-info {
        padding: 0 !important;
        height: auto !important;
        min-height: 200px !important;
        display: block !important;
    }

    .sec-pickup .item .box-top {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px !important;
    }

    .sec-pickup .item .logo {
        margin: 0 0 16px 0 !important;
        width: auto !important;
        max-width: 140px !important;
        height: auto !important;
        flex-shrink: 0;
    }

    .sec-pickup .item .logo img {
        height: auto !important;
        max-height: 50px !important;
        width: auto !important;
    }

    .sec-pickup .item .tit-item {
        font-size: 2.2rem !important;
        line-height: 1.4 !important;
        margin-top: 0 !important;
        width: 100% !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 2;
        /* 行数制限 */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .sec-pickup .item .box-bottom {
        padding-top: 0 !important;
    }

    .sec-pickup .item .desc {
        font-size: 1.6rem !important;
        margin-bottom: 12px !important;
        color: #595757 !important;
    }

    .sec-pickup .item .box-img {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto;
        aspect-ratio: 16 / 9;
        margin-top: auto;
    }

    .sec-pickup .item .box-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

.hue .logo-swiper.swiper-free-mode>.swiper-wrapper {
    transition-timing-function: linear !important;
}

.hue .case-logo-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.hue .case-logo-swiper .swiper-slide img {
    max-height: 50px;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.hue .case-logo-swiper .swiper-slide img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Philosophy Section */
.hue .sec-philosophy {
    position: relative;
    padding: 0;
    background-color: #8b46ff;
    /* Fallback color */
    background-image: url('../../../hue/img/bg_philosophy.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    color: #fff;
}



.hue .philosophy-flex {
    display: flex;
    align-items: center;
}

.hue .philosophy-content {
    flex: 0 0 calc(50% + 100px);
    position: relative;
    padding-right: 30px;
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: left;
}


.hue .philosophy-ttl {
    position: relative;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #fff;
    letter-spacing: 0.02em;
}

.hue .philosophy-ttl span {
    display: inline-block;
}

.hue .philosophy-text {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 400;
}

.hue .philosophy-signature {
    font-size: 1.6rem;
    font-weight: 700;
    /* margin-bottom: 40px !important; */
}

.hue .philosophy-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s;
}


.hue .philosophy-image {
    flex: 1;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: calc(50% - 100px);
    height: 375px;
}

.hue .philosophy-image img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: calc(100% - 40px);
    object-fit: cover;
    border-radius: 12px 0 0 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hue .sec-philosophy .c-btn01 a.philosophy-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 200px;
    padding: 10px 20px 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    background: transparent !important;
    color: #ffffff !important;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: color 0.35s ease, border-color 0.35s ease;
}


/* 背景アニメーション本体 */
.hue .sec-philosophy .c-btn01 a.philosophy-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: -8%;
    width: 140%;
    height: 100%;
    z-index: 0;
    border-radius: 999px;

    /* 右端に斜めの境界を残す */
    background-image: linear-gradient(128deg, #ffffff 50%, transparent 50%) !important;
    background-size: 200% 200%;
    background-position: bottom right;
    transition: background-position 0.5s ease;
}

/* hoverで標準っぽくスライド */
.hue .sec-philosophy .c-btn01 a.philosophy-link:hover::after {
    background-position: top left;
}

/* 文字 */
.hue .sec-philosophy .c-btn01 a.philosophy-link span {
    position: relative;
    z-index: 2;
    display: inline-block;
    color: #ffffff !important;
    background: transparent !important;
    transition: color 0.35s ease;
}

/* hover時に文字を紫へ */
.hue .sec-philosophy .c-btn01 a.philosophy-link:hover,
.hue .sec-philosophy .c-btn01 a.philosophy-link:hover span {
    color: #8b46ff !important;
}

/* 矢印 */
.hue .sec-philosophy .c-btn01 a.philosophy-link span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -46px;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M1.5 9H16.5' stroke='white' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M9.5 2L16.5 9L9.5 16' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    z-index: 2;
    transition: background-image 0.35s ease;
}

.hue .sec-philosophy .c-btn01 a.philosophy-link:hover span::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M1.5 9H16.5' stroke='%238b46ff' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M9.5 2L16.5 9L9.5 16' stroke='%238b46ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* 既存の共通 before があれば止める */
.hue .sec-philosophy .c-btn01 a.philosophy-link::before {
    content: none !important;
}

/* SP */
@media (max-width: 768px) {
    .hue .sec-philosophy .c-btn01 a.philosophy-link {
        min-width: auto;
        width: 100%;
        max-width: 320px;
        padding: 10px 40px 10px 20px;
    }

    .hue .sec-philosophy .c-btn01 a.philosophy-link span::after {
        right: -26px;
        width: 14px;
        height: 14px;
    }
}



@media (max-width: 992px) {
    .hue .sec-philosophy .inner_1200 {
        padding: 0 20px;
    }

    .hue .sec-philosophy {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .hue .philosophy-content {
        order: 1;
        padding: 10px 5px 0 5px;
        flex: none;
        width: 100%;
    }

    .hue .philosophy-image {
        order: 2;
        position: static;
        top: auto;
        right: auto;
        transform: none;
        height: auto;
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .hue .philosophy-image img {
        position: static;
        top: auto;
        transform: none;
        height: 100%;
        border-radius: 0;
        object-position: top center;
    }

    .hue .philosophy-ttl {
        font-size: 3.2rem;
    }

    .hue .philosophy-text .pc {
        display: none;
    }

    .hue .sec-philosophy {
        position: relative;
        padding: 0;
        background-color: #8b46ff;
        /* Fallback color */
        background-image: url('../../../hue/img/bg_philosophy_sp.png?20260509');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        overflow: hidden;
        color: #fff;
    }
}

.hue .sec-philosophy .c-btn01.is-white a {
    color: #fff;
    max-width: 240px;
}

@media (max-width: 768px) {
    .hue .philosophy-ttl {
        font-size: 2.8rem;
        margin-bottom: 35px;
    }

    .hue .philosophy-text {
        font-size: 1.4rem;
    }

    .hue .sec-philosophy {
        padding: 50px 0 0;
    }

    .hue .philosophy-link {
        font-size: 1.4rem;
    }

}

/* Products Section Refresh */
.hue .sec-products {
    padding: 100px 0 0;
    background-color: #f8f8f8;

}

.hue .product-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0;
}

.hue .product-ttl-row {
    display: flex;
    align-items: baseline;
    gap: 30px;
    margin-bottom: 20px;
}

.hue .product-ttl {
    font-size: 3.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.hue .product-link {
    color: #8b46ff;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hue .product-lead {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
    width: 100%;
    order: 3;
}

@media (max-width: 768px) {
    .hue .product-ttl {
        font-size: 2.8rem;
    }

}

/* Gradient Container */
.hue .product-gradient-container {
    display: block;
    text-decoration: none;
    background: linear-gradient(75.8deg, #902AF3 0.45%, #5F3EEB 22.49%, #2755E1 47.49%, #0762DC 61.64%, #00D3BC 97.53%);
    padding: 40px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}


@media (max-width: 768px) {
    .hue .product-gradient-container {
        background: linear-gradient(11.65deg, #902AF3 20.67%, #0762DC 62.4%, #00D3BC 99.51%);
        padding: 45px 30px;
        border-radius: 0;
    }

}



/* Main White Box */
.hue .product-main-card {
    background: #fff;
    border-radius: 10px;
    padding: 64px 56px 48px;
    overflow: visible;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .hue .product-main-card {
        padding: 40px 20px 30px;
    }

}

.hue .product-main-card .card-badge {
    position: absolute;
    top: -20px;
    right: 0;
    background: linear-gradient(90deg, #902AF3 0%, #5F1AA4 100%);
    color: #fff;
    padding: 8px 20px 8px 20px;
    border-radius: 999px;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    border-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
}

@media (max-width: 768px) {
    .hue .product-main-card .card-badge {
        font-size: 1.6rem;
        font-weight: 700;
        padding: 10px 12px 10px 22px;
    }

}


.hue .product-main-card .card-content {
    display: flex;
    gap: 60px;
}

.hue .product-main-card .card-col {
    flex: 1;
}

.hue .product-main-card .card-col:not(:last-child) {
    border-right: 1px solid #595957;
    padding-right: 60px;
}

.hue .product-main-card .col-ttl {
    font-size: 2.4rem;
    font-weight: 700;
    color: #902AF3;
    margin-bottom: 15px;
}


@media (max-width: 768px) {
    .hue .product-main-card .col-ttl {
        font-size: 1.8rem;
    }

}

.hue .product-main-card .module-text {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333;
    font-weight: 700;
    margin-top: 1.4rem;
}

.hue .product-main-card .module-text span {
    display: block;
}

/* Sub Card Row */
.hue .product-sub-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hue .sub-card {
    background: #fff;
    border-radius: 12px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-size: 2.0rem;
    font-weight: 700;
    color: #6361E2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .hue .sub-card {
        font-size: 2.4rem;
    }

    .hue .product-main-card .module-text {
        font-size: 1.4rem;
    }

}

.hue .sub-card.sub-card--ai {
    color: #C141EC;
}

.hue .sub-card.sub-card--cloud {
    color: #606060;
}

/* Solution Link Cards Refined */
.hue .product-solutions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0;
}

.hue .solution-link-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 120px;
    /* Slimmer height like design */
    transition: transform 0.3s, box-shadow 0.3s;
}


.hue .solution-link-card .card-content {
    flex: 1;
    padding: 0 30px;
}

.hue .solution-link-card .card-ttl {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

.hue .solution-link-card .card-img {
    width: 130px;
    /* Narrower for vertical slice effect */
    height: 100%;
    flex-shrink: 0;
}

.hue .solution-link-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Ensures core part of image is visible */
}

@media (max-width: 992px) {
    .hue .product-header {
        display: flex;
        flex-direction: column;
    }


    .hue .product-lead {
        margin-bottom: 16px;
        order: initial;
        font-size: 1.4rem;
    }

    .hue .product-header .c-link {
        order: initial;
    }

    .hue .product-main-card .card-content {
        flex-direction: column;
        gap: 40px;
    }

    .hue .product-main-card .card-col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #595957;
        padding-right: 0;
        padding-bottom: 40px;
    }

    .hue .product-solutions {
        grid-template-columns: 1fr;
    }

    .hue .product-sub-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2列 */
        grid-template-areas:
            "top top"
            "business data"
            "bottom bottom";
        gap: 12px;
    }

    .hue .sub-card--ai {
        grid-area: top;
    }

    .hue .sub-card--business {
        grid-area: business;
    }

    .hue .sub-card--data {
        grid-area: data;
    }

    .hue .sub-card--cloud {
        grid-area: bottom;
    }

    .hue .sub-card {
        height: 96px;
        /* SP用に少し低めに */
        font-size: 1.9rem;
    }
}


/* Resources Section */
.hue .sec-resources {
    padding: 100px 0 160px;
    background: #f8f8f8;
}

@media (max-width: 992px) {
    .hue .sec-resources {
        background: #efefef;
        padding: 100px 0 0;
    }
}

.hue .res-ttl {
    font-size: 3.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

@media screen and (max-width:768px) {
    .hue .res-ttl {
        font-size: 2.4rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

}

/* Default layout (TOP page etc.) */
.hue .res-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hue .cm-two-cols {
    display: flex;
    gap: 30px;
}

.hue .res-grid .item {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.5s ease-in;
}

.hue .res-grid .item__content {
    padding: 40px;
}

.hue .res-grid #support .item__content {
    padding: 60px 30px;
}

.hue .res-grid .item__ttl {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    transition: all 0.5s ease;
}

.hue .res-grid .item__txt {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.hue .res-grid .item__img {
    margin-top: auto;
    height: 300px;
    overflow: hidden;
}

.hue .res-grid .item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in;
}

.hue .res-grid .item.is-wide,
.hue .res-grid .item.is-wide>a {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.hue .res-grid .item.is-wide .item__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hue .res-grid .item.is-wide .item__img {
    flex: 0 0 480px;
    height: auto;
    margin-top: 0;
}

.hue .res-grid .item.is-wide .item__ttl {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.hue .res-grid .item.is-wide .item__txt {
    font-size: 1.6rem;
    margin-bottom: 30px !important;
}


.hue .card-label {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    background: linear-gradient(45deg, #902AF3 0%, #0762DC 58.22%, #00D3BC 92.92%);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 2.5px 12px 2.5px 30px;
    margin-left: -30px;
    border-radius: 0 20px 20px 0;
    margin-bottom: 25px;
}





@media (max-width: 992px) {
    .hue .res-grid .item.is-wide {
        flex-direction: column;
    }

    .hue .res-grid .item.is-wide .item__img {
        flex: none;
        height: 300px;
    }
}


/* 1枚目の大きいカード（添付デザイン寄せ） */
.hue .res-grid .item.is-hero {
    position: relative;
    padding: 20px 30px;
    border-radius: 10px;
    background:
        url("../../../hue/img/knowledge_bg.png") center bottom / 40% no-repeat,
        #fff;
    /* 背景色のフォールバック */
    box-shadow: 0px 6px 20px 0px rgba(89, 87, 87, 0.25);
    overflow: hidden;
    min-height: 300px;
}

.hue .res-grid .item.is-hero .item__content {
    padding: 0;
    max-width: 520px;
}

.hue .res-grid .item.is-hero .item__img {
    position: absolute;
    right: 45px;
    bottom: 15px;
    width: 380px;
    height: auto;
}


/* ラベル・ボタンは既存の .card-label / .res-btn が効く */
.hue .res-grid .item.is-hero .item__ttl {
    font-size: 2.4rem;
}

.hue .res-grid .item.is-hero .item__txt {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.hue .res-grid .c-btn01.is-dark a,
.hue .res-grid .c-btn01.is-dark>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #595757;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 2.5px 32px 2.5px 12px !important;
    font-size: 1.4rem;
    line-height: 1.8;
    font-weight: 700;
    text-decoration: none !important;
    width: fit-content;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.5s;
    border: none !important;
}

.hue .res-grid #support .c-btn01.is-dark a,
.hue .res-grid #support .c-btn01.is-dark>span {

    padding: 7px 44px 7px 16px !important;

}


/* 「一覧を見る」ボタンのグラデーションhoverエフェクト（メインビジュアルと同じ） */
.hue .res-grid .c-btn01.is-dark>span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 999px;
    background-image: linear-gradient(128deg, #902AF3 50%, transparent 50%);
    background-position: bottom right;
    background-size: 210% 210%;
    transition: background-position 0.5s;
}

.hue .res-grid .item:hover .c-btn01.is-dark>span::after,
.hue .res-grid .item.is-wide:hover .c-btn01.is-dark>span::after {
    background-position: top left;
}

.hue .res-grid .c-btn01.is-dark span span {
    padding: 0 !important;
    background: transparent !important;
}



.hue .res-grid .c-btn01.is-dark>span:before {
    content: "";
    position: absolute;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuNjAwNzUyIDUuMjA3MDNIMTAuOTMzN1Y2LjQ2NzA1SDAuNjAwNzUyQzAuMjQwMzAxIDYuNDY3MDUgMCA2LjE2NzA1IDAgNS44NjcwNUMwIDUuNTA3MDUgMC4zMDAzNzYgNS4yNjcwNSAwLjYwMDc1MiA1LjI2NzA1VjUuMjA3MDNaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMTEuNzc1NiA2LjQwNjU1TDcuMjY5OTcgMTAuOTA2NkM2Ljk2OTU5IDExLjIwNjYgNi41NDkxIDExLjIwNjYgNi4yNDg3MiAxMC45MDY2QzUuOTQ4MzQgMTAuNjA2NiA1Ljk0ODM0IDEwLjE4NjYgNi4yNDg3MiA5Ljg4NjU4TDEwLjI3MzcgNS44NjY1OEw2LjI0ODcyIDEuODQ2NTdDNS45NDgzNCAxLjU0NjU3IDUuOTQ4MzQgMS4xMjY1NiA2LjI0ODcyIDAuODI2NTYyQzYuNTQ5MSAwLjUyNjU2MyA2Ljk2OTU5IDAuNTI2NTYzIDcuMjY5OTcgMC44MjY1NjJMMTEuNzc1NiA1LjMyNjU2QzEyLjA3NiA1LjYyNjU2IDEyLjA3NiA2LjA0NjU3IDExLjc3NTYgNi4zNDY1N1Y2LjQwNjU1WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 12px;
    height: 12px;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
}

.hue .res-grid #support .c-btn01.is-dark>span:before {
    right: 16px;
}

@media (max-width: 992px) {
    .hue .res-grid .c-btn01.is-dark>span:before {
        width: 14px;
        height: 14px;
    }
}



/* SP時は縦積みに戻す */
@media (max-width: 992px) {
    .hue .res-grid .item.is-hero {
        padding: 20px 20px 24px;
        background: url("../../../hue/img/knowledge_bg_sp.png") 60% 50% / 50% no-repeat,
            #fff;
    }

    .hue .res-grid .item.is-hero .item__img {
        position: static;
        width: 50%;
        margin-top: 20px;
        margin-left: 20%;
    }

    .hue .res-grid .item.is-hero::before {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: auto;
        top: 40%;
        width: 280px;
        height: 180px;
    }
}

@media (max-width: 480px) {

    .hue .res-grid .item.is-hero {
        padding: 20px 20px 24px;
        background: url("../../../hue/img/knowledge_bg_sp.png") 90% 70% / 60% no-repeat,
            #fff;
    }

    .hue .res-grid .item.is-hero .item__img {
        width: 100%;
    }
}

/* 2枚目・3枚目：テキスト上／画像下レイアウト */
.hue .sec-resources .res-two-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.hue .sec-resources .res-two-cols .item {
    display: flex;
    flex-direction: column;
    /* 上:テキスト / 下:画像 */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 6px 20px 0px rgba(89, 87, 87, 0.25);
    overflow: hidden;
    /* 角丸に画像を合わせる */
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}


.hue .sec-resources .res-two-cols .item__content {
    padding: 32px 36px 24px;
}

.hue .sec-resources .res-two-cols .item__img {
    width: 100%;
    height: 180px;
    /* 必要に応じて調整 */
    overflow: hidden;
}

.hue .sec-resources .res-two-cols .item__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* カード横幅いっぱいにトリミング */
}

/* SP時は1カラム */
@media (max-width: 768px) {
    .hue .sec-resources .res-two-cols {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hue .sec-resources .res-two-cols .item__content {
        padding: 24px 20px 18px;
    }

    .hue .sec-resources .res-two-cols .item__img {
        height: 200px;
    }

    .hue .res-grid .c-btn01.is-dark a,
    .hue .res-grid .c-btn01.is-dark>span {
        padding: 5px 40px 5px 20px !important;
    }


}


.hue .res-grid .item {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    overflow: hidden;
}

.hue .res-grid .item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hue .res-grid .item:hover .item__ttl {
    color: #8b46ff;
}

.hue .res-grid .item:hover .item__img img {
    transform: scale(1.05);
    transition: transform 0.5s ease-in;
}



.hue .res-grid .item.is-hero:hover .item__img img {
    transform: none;
}

/* Stats Section with Gradient Border */
.hue .sec-stats {
    margin-top: 100px;
    max-width: 1200px;
    margin: 120px auto 0;
    position: relative;
    padding: 2px;
    /* For gradient border effect */
    background: linear-gradient(152.92deg, #902AF3 0%, #0762DC 48.34%, #00D3BC 96.68%);
    overflow: hidden;
}

.hue .stats-inner {
    background: #fff;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}



.hue .stats-info {
    flex: 0 0 35%;
}

.hue .stats-ttl {
    font-size: 2.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.hue .stats-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #505050;
}

@media (max-width: 992px) {
    .hue .stats-inner {
        display: block;
    }

    .hue .stats-text {
        margin-bottom: 20px
    }
}

.hue .stats-grid {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.hue .stat-item {
    text-align: center;
    position: relative;
    flex: 1;
}

.hue .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 15%;
    width: 1px;
    height: 70%;
    background: #eee;
}

.hue .stat-val {
    font-size: 4.8rem;
    font-weight: 700;
    color: #FF7631;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 8px;
    white-space: nowrap;
}

.hue .stat-val span {
    font-size: 2rem;
    margin-left: 2px;
}

.hue .stat-label {
    font-size: 1.3rem;
    color: #505050;
    font-weight: bold;
}


@media screen and (min-width: 768px) and (max-width: 900px) {

    .hue .stats-inner {
        padding: 30px 20px 10px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hue .stats-text .pc {
        display: none;
    }

    .hue .stats-grid {
        width: 100%;
        flex-direction: row;
        gap: 0;
        padding: 0;
    }

    .hue .stats-info {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hue .sec-stats {
        margin: 80px 0 0;
        padding: 1px;
        background-color: #EFEFEF;
    }

    .hue .stats-inner {
        padding: 30px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .hue .stats-info {
        width: 100%;
        text-align: left;
    }

    .hue .stats-ttl {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }

    .hue .stats-grid {
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .hue .stat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 24px 5px;
        width: 100%;
        border-bottom: 1px solid #eee;
        text-align: left;
    }

    .hue .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 10px;
    }

    .hue .stat-item::after {
        display: none !important;
    }

    .hue .stat-val {
        font-size: 2.8rem;
        margin-bottom: 0;
        flex: 1;
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 4px;
        letter-spacing: -2px;
    }

    .hue .stat-val span {
        font-size: 1.4rem;
    }

    .hue .stat-label {
        font-size: 1.4rem;
        font-weight: 700;
        color: #595757;
        flex: 1;
        text-align: center;
    }
}

/* 4枚目専用 */
.hue .sec-resources .item.is-support {
    box-shadow: 0px 6px 20px 0px rgba(89, 87, 87, 0.25);
    border-radius: 10px;
    margin-top: 80px;
    background: #fff;
    overflow: hidden;
}

.hue .sec-resources .item.is-support>a {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

/* 画像は添付のように、右側にやや細めで表示 */
.hue .sec-resources .item.is-support .item__img {
    flex: 0 0 50%;
    height: 290px;
    /* 必要なら固定高さ */
    margin-top: 0;
    overflow: hidden;
}

.hue .sec-resources .item.is-support .item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SP時は縦並び＋画像が上 */
@media (max-width: 992px) {
    .hue .sec-resources .item.is-support {
        display: flex !important;
        flex-direction: column-reverse !important;
        border-radius: 0;
        box-shadow: none;
        margin-top: 40px;
        background-color: #f8f8f8;
        position: relative;
        width: 100vw;
        /* 画面幅いっぱい */
        left: 50%;
        /* 画面中央に寄せて */
        right: 50%;
        margin-left: -50vw;
        /* 親コンテナからはみ出させる */
        margin-right: -50vw;
        border-radius: 0;
    }

    .hue .sec-resources .item.is-support .item__content {
        padding: 40px 24px 60px;
        background-color: #fff;
    }

    .hue .sec-resources .item.is-support .item__ttl {
        font-size: 2.6rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #1a1a1a;
    }

    .hue .sec-resources .item.is-support .item__txt {
        font-size: 1.5rem;
        line-height: 1.8;
        color: #595757;
        margin-bottom: 25px;
    }

    .hue .sec-resources .item.is-support .item__img {
        flex: none;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }

    /* SP専用のボタン調整 */
    .hue .sec-resources .item.is-support .c-btn01.is-dark a {
        background: #595757 !important;
        border-radius: 999px !important;
        padding: 4px 20px !important;
        width: fit-content !important;
        height: auto !important;
        display: inline-flex !important;
        align-items: center;
        gap: 10px;
        font-size: 1.6rem !important;
        color: #fff !important;
        text-decoration: none !important;
    }

    .hue .sec-resources .item.is-support .c-btn01.is-dark a::before {
        display: none !important;
    }

    .hue .sec-resources .item.is-support .c-btn01.is-dark a::after {
        content: "";
        font-size: 1.6rem;
        margin-left: 18px;
        margin-right: 8px;
        position: static !important;
        height: auto !important;
        width: auto !important;
        background: none !important;
    }

    .hue .sec-resources .item.is-support .c-btn01.is-dark a span {
        padding: 0 !important;
    }


    .hue .c-btn01 a {
        max-width: 100% !important;
    }

}


@media (max-width: 780px) {
    .hue .card-label {
        padding: 6px 18px 6px 20px;
        margin-left: -24px;
        font-size: 1.3rem;
        line-height: 1.8;
        margin-bottom: 16px;
        background: linear-gradient(85.55deg, #912AF4 3.8%, #02D5BB 84.25%);
    }

    .hue .res-grid .item.is-wide .item__ttl {
        font-size: 1.8rem !important;
        margin-bottom: 12px;
        line-height: 1.4;
    }


    .hue .res-grid .item.is-wide .item__txt {
        font-size: 1.4rem;
        margin-bottom: 15px !important;
    }

    .hue .res-grid .item__txt {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hue .cm-two-cols {
        flex-direction: column;
    }

    .hue .res-grid .item__ttl {
        font-size: 1.8rem;

    }

    .hue .res-grid .item__txt {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
}



/* Overlap Blocks (Community & Partner) */
.hue .overlap-section-wrapper {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 0;
}


@media (max-width:768px) {
    .hue .overlap-section-wrapper {
        margin-top: 80px;
        gap: 0;
    }
}

@media (max-width: 780px) {
    .sec-cmn-intro .box-detail {
        padding-bottom: 120px;
    }
}