@charset "UTF-8";
/* Functional Page Specific Styles */

/* Scoped background to avoid breaking top page */
#hue.hue:has(.is-sub) #wrap {
    background-color: #F8F8F8 !important;
}

#hue.hue:has(.is-sub) .header {
    background: #fff !important;
}

#hue .main-visual.is-sub {
    background: #F8F8F8 !important;
    background-image: none !important;
    min-height: 250px;
    padding: 0 30px !important;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #1a1a1a;
    max-width: 1200px;
    margin: 0 auto;
}

.hue .main-visual.is-sub .main-visual__content {
    max-width: none;
    margin: 0;
    padding: 0 40px 0 Max(24px, calc(100% - 1280px)/2);
    z-index: 2;
    position: relative;
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
}

.hue .main-visual-top-right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
}

.hue .c-breadcrumb-pill ul {
    background: #fff;
    border-radius: 30px;
    padding: 8px 15px;
    display: flex;
    gap: 8px;
    list-style: none;
    font-size: 1.2rem;
    color: #b3b3b4;
}

.hue .c-breadcrumb-pill ul li a {
    color: #b3b3b4;
    text-decoration: none;
}

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

.hue .c-breadcrumb-pill ul li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
}

.hue .main-visual.is-sub .mv-main-block {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.hue .is-sub .mv-logo {
    margin: 0;
}

.hue .is-sub .mv-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.hue .is-sub .mv-ttl {
    margin: 0;
    font-size: 4rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.hue .is-sub .mv-ttl .sep {
    color: #ccc;
    font-weight: 300;
    margin: 0 10px;
}

.hue .is-sub .mv-ttl-sub {
    font-size: 1.8rem !important;
    font-weight: 500;
    color: #333;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#hue .main-visual.is-sub .main-visual__img {
    display: block !important;
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 489px;
    height: auto;
    z-index: 50;
    pointer-events: none;
    opacity: 1;
    background: none;
}

@media (max-width: 768px) {

    .hue .main-visual-top-right {
        top: 0px;
        right: 0px;
    }

    #hue .main-visual.is-sub {
        padding: 70px 5px 180px !important;
        align-items: flex-start;
    }

    .hue .main-visual.is-sub .mv-main-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hue .is-sub .mv-logo img {
        height: 48px;
    }

    .hue .is-sub .mv-ttl {
        font-size: 2.8rem !important;
        flex-wrap: wrap;
    }

    #hue .main-visual.is-sub .main-visual__img {
        right: 5%;
        width: 90%;
    }

    .hue .is-sub .main-visual__img {
        width: 80%;
        right: -20%;
    }
}


.sec-anchor {
    background-color: #fff;
    padding: 40px 0;
}

@media(min-width: 768px) {

    .hue .c-lst-anchor {
        display: flex;
        flex-wrap: wrap;
        /* ここで折り返し */
        gap: 10px 0;
        /* 行間・列間の余白 */
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .hue .c-lst-anchor li a {
        white-space: nowrap;
        display: inline-block;
        border-radius: 999px;
        background: #fff;
        border: 1px solid #595957;
        text-decoration: none;
        font-size: 14px;
    }
}


/* 2-column layout for Functions Page */
.hue .res-grid .item {
    box-shadow: 0px 6px 20px 0px rgba(89, 87, 87, 0.25);
}

/* 共通：カード全体・テキスト側 --------------------- */

.hue .res-grid.is-functions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hue .res-grid.is-functions-grid .item {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-height: 260px;
}

.hue .res-grid.is-functions-grid .item__content {
    flex: 1;
    padding: 40px 20px 0;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hue .res-grid.is-functions-grid .item__content .c-btn01 {
    margin-top: 0;
    /* ボタンを下端へ */
}

/* 共通：画像側のベース ----------------------------- */

.hue .res-grid.is-functions-grid .item__img {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
}

.hue .res-grid.is-functions-grid .item__img img {
    display: block;
    height: auto;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.hue .res-grid .item:hover .item__img img {
    transform: none !important;
}

/* 左カード（logo__bg）：画像を下に揃える ---------- */

.hue .res-grid.is-functions-grid .item.logo__bg .item__img {
    flex: 0 0 50%;
    margin: 50px 20px 0;
    max-height: 180px;
}

.hue .res-grid.is-functions-grid .item.logo__bg .item__img img {
    padding-right: 20px;
    margin-top: auto;
}

.hue .res-grid .item.logo__bg {
    padding: 0px 20px 4px;
    background: url(../../../hue/img/knowledge_bg_sp.png) 95% 20% / 35% no-repeat, #fff;
}

.hue .res-grid.is-functions-grid .item.logo__bg .item__content {
    padding: 20px 0 0;
    min-width: 191px;
}

.hue .res-grid.is-functions-grid .item__ttl {
    font-size: 2.22rem;
    line-height: 1.3;
    margin-bottom: 12px;
}


/* 右カード：上下の余白なし、PCで最大285px ---------- */

.hue .res-grid.is-functions-grid .item {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 260px;
    /* max-height ではなく height */
    max-height: none;
}

.hue .res-grid.is-functions-grid .item:not(.logo__bg) .item__img {
    flex: 0 0 50%;
    min-width: 50%;
    max-width: 50%;
    margin: 0;
    overflow: hidden;
    align-self: stretch;
    display: block;
}

.hue .res-grid.is-functions-grid .item:not(.logo__bg) .item__img img {
    display: block !important;
    width: 100% !important;
    height: 260px !important;
    max-width: none !important;
    object-fit: cover;
    object-position: center top;
    margin: 0 !important;
    padding: 0 !important;
}


/* ブレイクポイント ------------------------------- */

@media (max-width: 992px) {
    .hue .res-grid.is-functions-grid {
        grid-template-columns: 1fr;
    }


    .hue .res-grid.is-functions-grid .item__img {
        flex: none;
        height: auto;
        min-height: 180px;
    }

    .hue .res-grid.is-functions-grid .item.logo__bg {
        padding: 0 20px 10px;
        background: url("../../../hue/img/knowledge_bg_sp.png") 90% 70% / 35% no-repeat,
            #fff;
    }

    .hue .res-grid.is-functions-grid .item.logo__bg .item__img {
        position: static;
        width: 100%;
        margin-top: 50px;
    }

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


    .hue .res-grid.is-functions-grid .item.logo__bg .item__img img {
        max-width: 80%;
        margin-top: auto;
        align-items: center;
    }

    /* 右カード：スマホでは横幅100% */
    .hue .res-grid.is-functions-grid .item:not(.logo__bg) .item__img {
        align-items: center;
        height: 100%;
        min-height: 260px;
        width: 50%;
    }

    .hue .res-grid.is-functions-grid .item:not(.logo__bg) .item__img img {
        max-width: 100% !important;
        width: 100% !important;
        height: 100% !important;
    }
}

/* Function Sections - Transparent container to allow image layer to show through */
.hue .sec-function-category {
    padding: 0;
    background: transparent !important;
    position: relative;
    z-index: 15;
}

.hue .function-category-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 100px;
    display: flex;
    gap: 60px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    margin-top: -30px;
    /* Strong overlap with background image */
    margin-bottom: -30px;
    /* Pull following band under the card */
    z-index: 20;
}

#business .function-category-inner {
    margin-bottom: 10px;
}

#data .function-category-inner {
    margin-top: 10px;
}

/* Specific adjustment for the first section to not have negative top margin */
#ac .function-category-inner {
    margin-top: 50px;
}

.hue .function-category-inner.is-joined {
    flex-direction: column;
    gap: 80px;
}

.hue .function-category-inner.is-joined .function-category-row {
    display: flex;
    gap: 20px;
}

.hue .function-category-left {
    flex: 0 0 350px;
}

.hue .function-category-left h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.hue .category-badge {
    position: absolute;
    top: -22px;
    right: 0;
    background: linear-gradient(90deg, #902AF3, #5F1AA4);
    color: #fff;
    padding: 10px 22px 10px 22px;
    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;
    /* 左下だけ丸 */
}

.hue .overlap-section-wrapper {
    margin-top: 150px;
    margin-bottom: 0;
    padding-bottom: 0;
}

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



@media (max-width: 768px) {

    .hue .overlap-section-wrapper {
        margin-top: 0;
    }

    #data .function-category-inner {
        margin-top: -20px;
    }

    .hue .function-category-inner {
        padding: 30px 20px 80px;
        border-radius: 0;
        margin-top: 0px;
        /* Strong overlap with background image */
        margin-bottom: 0px;
        /* Pull following band under the card */
        z-index: 20;
        box-shadow: none;
        border: 0;
    }

    .hue .function-category-left h2 {
        font-size: 2.2rem;
    }

    .hue .category-badge {
        top: -15px;
        right: 0;
        padding: 5px 10px 5px 15px;
        font-size: 1.5rem;
        font-weight: 700;
    }

    .hue .res-grid.is-functions-grid .item__ttl {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .hue .res-ttl {
        font-size: 2.4rem;
        line-height: 1.4;
        margin-bottom: 30px;
    }

    .hue .sec-resources {
        padding: 80px 0;
    }

    .hue .res-grid.is-functions-grid .item__content {

        padding: 20px 20px 0;

    }

    .hue .sec-function-category {
        background: #fff !important;
    }

}


@media (max-width: 555px) {

    .hue .res-grid.is-functions-grid .item {
        flex-direction: column;
        height: 360px;
    }

    .hue .res-grid.is-functions-grid .item.logo__bg .item__img {
        min-height: 100px;
        margin-top: -10px;
        margin-left: 40px;
    }

    .hue .res-grid.is-functions-grid .item.logo__bg {
        padding: 0 20px 0;
        background: url(../../../hue/img/knowledge_bg_sp.png) 90% 80% / 60% no-repeat, #fff;
    }

    .hue .res-grid.is-functions-grid .item.logo__bg .item__img img {
        padding-right: 0;
        margin-top: 0px;
        max-width: 70%;

    }

    .hue .res-grid.is-functions-grid .item:not(.logo__bg) .item__img {
        width: 100%;
        max-width: 100%;
    }

    .hue .res-grid.is-functions-grid .item:not(.logo__bg) .item__img {
        min-height: auto;
    }
}

.hue .function-category-left p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #666;
    letter-spacing: 0.02em;
}

.hue .function-category-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
}

.hue .function-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px 10px 15px 15px;
    box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    position: relative;
    border: 1px solid #f2f2f2;
    min-height: 120px;
}

.hue .function-card:hover {
    opacity: 1;
}

.hue .function-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15px;
    width: 14px;
    height: 40px;
    background: linear-gradient(180deg, #902AF3 0%, #5F1AA4 100%);
    border-radius: 0 0 11px 11px;
}

/* Section specific bar colors */
#ai .function-card::before {
    background: linear-gradient(180deg, #C141EC 0%, #65217C 100%);
}

#business .function-card::before,
#data .function-card::before {
    background: linear-gradient(180deg, #6361E2 0%, #3D3B94 100%);
}

#cloud .function-card::before {
    background: linear-gradient(180deg, #606060 0%, #404040 100%);
}

.hue .function-card h3 {
    position: relative;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.6;
    padding-left: 26px;
    line-break: strict;
}

.hue .function-card:hover h3 {
    color: #902AF3;
    transition: all 0.3s ease;
}

.hue .function-card p {
    font-size: 1.2rem;
    color: #555;
    font-weight: 400;
    line-height: 1.6;
    word-break: normal;
    overflow-wrap: break-word;
    margin-top: auto;
}


/* Background image band separator - 3D depth effect */
.hue .sec-function-image-band {
    width: 100%;
    height: 260px;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

/* Darker vignette overlay */

@media(max-width: 900px) {
    .hue .function-category-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .hue .function-category-inner {
        flex-direction: column;
        gap: 30px;
    }

    .hue .function-category-inner.is-joined .function-category-row {
        flex-direction: column;
        gap: 20px;
    }

    .hue .function-category-left {
        flex: none;
        width: 100%;
    }

    .hue .function-card {
        min-width: 50%;
    }
}

@media(max-width: 768px) {
    .hue .function-category-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .hue .function-card {
        padding: 12px;
        border-radius: 8px;
        min-height: 105px;
    }

    .hue .function-card::before {
        left: 12px;
        width: 12px;
        height: 29px;
        border-radius: 0 0 10px 10px;
    }

    .hue .function-card h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        padding-left: 20px;
        line-height: 1.4;
    }

    .hue .function-card p {
        font-size: 1.1rem;
        line-height: 1.6;
        padding-left: 0;
        margin-top: auto;
    }

    .hue .sec-function-image-band {
        width: 100%;
        height: auto;
    }

    .hue .sec-function-image-band img {
        width: 100%;
    }


}

.hue #footer {
    margin-top: -90px;
    padding-top: 0;
}

.hue #footer .block02 {
    padding-top: 30px;
}

.hue .sec-pickup {
    padding: 20px 0 300px;
}

.hue .c-btn01 a:after {
    background-image: linear-gradient(128deg, #902AF3 50%, transparent 50%) !important;
}


@media (max-width: 780px) {
    .sec-cmn-intro {
        margin: 0;
    }

    .sec-cmn-intro .img-intro {
        height: auto;
    }

    .sec-cmn-intro .box-detail {
        padding-bottom: 50px;
        background-color: #fff;
    }
}




.sec-cmn-intro .box-detail:hover .tit-box {
    color: #902AF3;
}


.sec-cmn-intro .c-link-hover span:before,
.sec-cmn-intro .c-link-hover span:after {
    background: none;
}

.hue .sec-cmn-intro .c-link-hover {
    background: linear-gradient(0deg, #902AF3, #902AF3) bottom 0 left 0 / 0% 1px no-repeat;
}


.hue .sec-cmn-intro .link-purple,
.hue .c-link .c-link-hover {
    color: #8b46ff;
    font-weight: 700;
    font-size: 1.6rem;
    transition: 0.5s;
    opacity: 1;
    transition: 0.5s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.c-link a,
.c-link .c-link-hover {
    color: #8b46ff;
    background: linear-gradient(0deg, #8b46ff, #8b46ff) bottom 0 left 0 / 0% 1px no-repeat;
}

.hue .c-lst-anchor li a {
    display: block;
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 9px 37px 7px 15px;
    border-radius: 100px;
    border: solid 1px #595757;
    letter-spacing: 0.6px;
    background-color: #fff;
    color: #595757;
    text-decoration: none;
    transition: all 0.5s;
    cursor: pointer;
}

.hue .c-lst-anchor li a::before {
    position: absolute;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.79297 0.600752L6.79297 10.9337L5.53295 10.9337L5.53295 0.600752C5.53295 0.240301 5.83295 -4.19639e-08 6.13295 -2.88505e-08C6.49295 -1.31144e-08 6.73295 0.300376 6.73295 0.600752L6.79297 0.600752Z' fill='%23595757'/%3E%3Cpath d='M5.59344 11.7756L1.09344 7.26997C0.793445 6.96959 0.793445 6.54909 1.09344 6.24872C1.39344 5.94834 1.81342 5.94834 2.11341 6.24872L6.13342 10.2737L10.1534 6.24872C10.4534 5.94834 10.8734 5.94834 11.1734 6.24872C11.4734 6.5491 11.4734 6.96959 11.1734 7.26997L6.67344 11.7756C6.37344 12.076 5.95343 12.076 5.65343 11.7756L5.59344 11.7756Z' fill='%23595757'/%3E%3C/svg%3E%0A");
    background-size: 100% 100%;
    width: 12px;
    height: 12px;
    right: 14px;
    top: 50%;
    transform: translateY(-40%);
    transition: all 0.5s;
    z-index: 1;
}

.hue .c-lst-anchor li a::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    bottom: 0;
    z-index: 0;
    border-radius: 999px;
    background-image: linear-gradient(128deg, #595757 50%, transparent 50%);
    background-position: bottom right;
    background-size: 200% 200%;
    transition: 0.5s;
    z-index: -1;
}

.hue .c-lst-anchor li a:hover {
    color: #fff !important;
    opacity: 1;
}

.hue .c-lst-anchor li a:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.79297 0.600752L6.79297 10.9337L5.53295 10.9337L5.53295 0.600752C5.53295 0.240301 5.83295 -4.19639e-08 6.13295 -2.88505e-08C6.49295 -1.31144e-08 6.73295 0.300376 6.73295 0.600752L6.79297 0.600752Z' fill='white'/%3E%3Cpath d='M5.59344 11.7756L1.09344 7.26997C0.793444 6.96959 0.793444 6.54909 1.09344 6.24872C1.39344 5.94834 1.81342 5.94834 2.11342 6.24872L6.13342 10.2737L10.1534 6.24872C10.4534 5.94834 10.8734 5.94834 11.1734 6.24872C11.4734 6.5491 11.4734 6.96959 11.1734 7.26997L6.67344 11.7756C6.37344 12.076 5.95343 12.076 5.65343 11.7756L5.59344 11.7756Z' fill='white'/%3E%3C/svg%3E%0A");
}

.hue .c-lst-anchor li a:hover::after {
    background-position: top left;
}


@media (min-width: 768px) {
    .hue .sec-cmn-intro.is-right .img-intro {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .hue .sec-cmn-intro.is-right .img-intro img {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }
}

.hue .c-link.link-purple span:after,
.hue a .c-link.link-purple span:after,
.hue .c-link.link-purple .c-link-hover span:before {
    content: "";
    position: absolute;
    background-image: url(../../../hue/img/purple_arrow.svg?20260305);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 16px;
    height: 16px;
    top: 6px;
    right: -21px;
    opacity: 1;
    transition: 0.5s;
}