@charset "UTF-8";



/* === 事業紹介 INDEX === */
.business-index ul {
    position: relative;
    margin: 50px auto 0;
}

.business-index ul li {
    position: relative;
    margin-bottom: 50px;
}

.business-index ul li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.business-index ul li .text {
    width: 49%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 20px;
    position: relative;
}

.business-index ul li .text:before {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(to right, #004098 50%, #CDDBED 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    transition: all .4s;
}

.business-index ul li .bg {
    width: 49%;
    border-radius: 16px;
}

.business-index ul li .bg img {
    object-fit: cover;
    height: 100%;
}

.business-index ul li:nth-child(even) .text {
    order: 2;
}

.business-index ul li:nth-child(even) .bg {
    order: 1;
}

.business-index ul li .text .link-title {
    font-size: clamp(18px, 2.4vw, 32px);
    line-height: 1.6em;
    margin-bottom: 15px;
    position: relative;
}

.business-index ul li .text p:not([class]) {
    line-height: 1.6em;
    font-size: clamp(13px, 2.4vw, 16px);
}

.business-index ul li .text:after {
    content: "";
    position: absolute;
    right: 7px;
    bottom: 7px;
    width: 16px;
    height: 16px;
    background: url('../img/common_img/button-arrow-blue.svg') no-repeat center/contain;
}

@media (hover: hover) {
    .business-index ul li a:hover .text:before {
        background-position: 0 0;
    }
}

@media screen and (max-width: 768px) {
    .business-index ul {
        margin: 30px auto 0;
    }

    .business-index ul li {
        margin-bottom: 30px;
    }

    .business-index ul li .text {
        width: 100%;
        padding: 12px 10px 30px;
        position: relative;
    }

    .business-index ul li .bg {
        width: 100%;
        border-radius: 16px 16px
    }

    .business-index ul li .bg img {
        object-fit: cover;
        height: 100%;
        max-height: 180px;
    }

    .business-index ul li .text {
        order: 2;
    }

    .business-index ul li .bg {
        order: 1;
    }

    .business-index ul li .text .link-title {
        margin-bottom: 5px;
    }
}


.business-intreview-links {
    position: relative;
}

.business-intreview-links .content-wrap {
    position: relative;
    margin-top: 60px;
    padding: 60px 0 0;
}

.business-intreview-links .content-wrap:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #04bb83 0%, #0388c6 100%);
}

.business-intreview-links .title {
    color: #004098;
    font-family: var(--en-font);
    text-align: center;
}

.business-intreview-links ul {
    position: relative;
    margin: 30px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2%;
}

.business-intreview-links ul li {
    box-sizing: border-box;
    width: calc((100% - 4%) / 3);
    margin-bottom: 3%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 64, 152, 0.2);
    transition: 0.3s;
}

.business-intreview-links ul li:after {
    content: "";
    position: absolute;
    right: 7px;
    bottom: 7px;
    width: 16px;
    height: 16px;
    background: url('../img/common_img/button-arrow-blue.svg') no-repeat center/contain;
}

.business-intreview-links ul li .btn-img img {
    object-fit: cover;
    min-height: 120px;
}

.business-intreview-links ul li .btn-text {
    padding: 20px 20px 30px;
}

.business-intreview-links ul li .job-type {
    display: inline-block;
    padding: 6px 16px;
    color: #fff;
    font-size: 12px;
    line-height: 1em;
    font-weight: bold;
    border-radius: 4px;
    min-width: 50px;
    text-align: center;
    margin-bottom: 10px;
}

.business-intreview-links ul li .type-green {
    background: linear-gradient(90deg, #04bb83 0%, #197937 100%);
}

.business-intreview-links ul li .type-blue {
    background: linear-gradient(90deg, #0388c6 0%, #1a4e89 100%);
}

.business-intreview-links ul li .btn-text .name {
    font-family: var(--en-font);
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 10px;
}

.business-intreview-links ul li .btn-text p:not([class]) {
    font-size: 14px;
    line-height: 1.4em;
    min-height: 2.8em;
}

@media screen and (max-width: 768px) {
    .business-intreview-links {
        margin: 20px auto;
    }

    .business-intreview-links ul li {
        width: calc((100% - 4%) / 2);
    }

    .business-intreview-links ul li .btn-img img {
        min-height: 100px;
    }

    .business-intreview-links ul li .btn-text {
        padding: 6px 6px;
        letter-spacing: -0.01em;
        font-size: 11px;
    }

    .business-intreview-links ul li .job-type {
        padding: 6px 10px;
        font-size: 11px;
    }

    .business-intreview-links ul li .btn-text .name {
        font-size: 20px;
    }
}

@media (hover: hover) {
    .business-intreview-links ul li:hover {
        box-shadow: 0 0 2px rgba(0, 64, 152, 0.4);
    }
}



@keyframes luminousReveal {
    0% {
        opacity: 0;
        filter: blur(20px) brightness(3);
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        filter: blur(0) brightness(1);
        transform: scale(1);
    }
}


.business-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.business-title .business-title__text {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.business-title .business-title__text h2 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 500;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.business-title .business-title__mv.eft {
    width: 50%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.business-title .business-title__mv.eft img {
    opacity: 0;
    filter: blur(20px) brightness(2);
    transform: scale(1.1);
    transition: none;
}

.business-title .business-title__mv.eft.eon img {
    animation: luminousReveal 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.line-bottom-full {
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.line-bottom-full.eon {
    opacity: 1;
    transform: translateY(0);
}

.line-bottom-full:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #04bb83 0%, #0388c6 100%);
    transition: width 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.line-bottom-full.eon:after {
    width: 100%;
}

.business-overview {
    padding: 80px 0;
}

.business-overview h3 {
    color: #FFF;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4em;
    width: 90%;
    margin: 0 auto;
    position: relative;
    padding: 30px 0 0;
    z-index: 1;
    text-align: center;
}

.business-overview h3:after {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(90deg, #04bb83 0%, #0388c6 100%);
    width: 100%;
    height: 140px;
    border-radius: 70px;
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.overview-list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2%;
    margin: 20px 0 0;
}

.overview-list.two-column li {
    width: 49%;
    box-shadow: 0 0 10px rgba(0, 64, 152, 0.2);
    background: #FFF;
    padding: 30px;
    border-radius: 16px;
}

.overview-list.three-column li {
    width: 31.33%;
    box-shadow: 0 0 10px rgba(0, 64, 152, 0.2);
    background: #FFF;
    padding: 30px;
    border-radius: 16px;
}

.overview-list h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 15px;
}

.overview-list p {
    padding: 10px 0 0;
    line-height: 1.6em;
}

.overview-list p.note {
    padding: 5px 0 0;
    font-size: 80%;
    line-height: 1.6em;
}

.business-features {
    padding-bottom: 80px;
}

.feature-item {
    margin-bottom: 60px;
}

.feature-item:last-of-type {
    margin-bottom: 0;
}

.feature-item__title,
.cases__title {
    font-size: 24px;
    font-weight: 500;
}

.feature-item .split-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature-item .split-content .feature-item__text {
    width: 48%;
}


.feature-item .split-content .feature-item__image {
    width: 48%;
}

.business-cases .case-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.business-cases .case-card {
    width: 48%;
    margin-bottom: 50px;
}

.case-card__image {
    box-shadow: 0 0 10px rgba(0, 64, 152, 0.2);
    background: #FFF;
    padding: 0;
    border-radius: 16px;
    margin-bottom: 20px;
}

.case-card__text h3 {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 10px;
}

.case-card__button {
    width: 300px;
    margin: 0 auto;
    position: relative;
}

.case-card__button .push-button {
    min-height: 60px;
    margin: 20px auto 0;
}

.case-card__button .push-button>span {
    font-size: 14px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.case-card__button .push-button>span span {
    font-size: 75%;
}

@media screen and (max-width: 768px) {
    .business-title .business-title__text {
        width: 100%;
    }

    .business-title .business-title__text h2 {
        font-size: clamp(20px, 4vw, 40px);
        font-weight: 500;
        padding-bottom: 10px;
        margin-bottom: 10px;

    }

    .business-title .business-title__mv.eft {
        width: 100%;
        border-radius: 16px;
        order: 1;
        padding-top: 20px;
    }

    .line-bottom-full:after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #04bb83 0%, #0388c6 100%);
        transition: width 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
    }

    .line-bottom-full.eon:after {
        width: 100%;
    }

    .business-overview {
        padding: 40px 0;
    }

    .business-overview h3 {
        color: #FFF;
        font-weight: 500;
        font-size: 16px;
        line-height: 1.4em;
        width: 96%;
        margin: 0 auto;
        position: relative;
        padding: 20px 0 0;
        z-index: 1;
        text-align: center;
    }

    .business-overview h3:after {
        content: "";
        display: block;
        position: absolute;
        background: linear-gradient(90deg, #04bb83 0%, #0388c6 100%);
        width: 100%;
        height: 80px;
        border-radius: 50px;
        z-index: -1;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .overview-list {
        position: relative;
        z-index: 2;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0;
        margin: 10px 0 0;
    }

    .overview-list.two-column li,
    .overview-list.three-column li {
        width: 100%;
        padding: 20px;
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .overview-list h4 {
        text-align: center;
        font-size: 18px;
        font-weight: 500;
        padding-bottom: 15px;
    }

    .overview-list p {
        padding: 10px 0 0;
        line-height: 1.6em;
    }

    .business-features {
        padding-bottom: 40px;
    }

    .feature-item {
        margin-bottom: 60px;
    }

    .feature-item:last-of-type {
        margin-bottom: 0;
    }

    .feature-item__title,
    .case__title {
        font-size: 16px;
        font-weight: 500;
    }

    .feature-item .split-content .feature-item__text {
        width: 100%;
        order: 2;
    }


    .feature-item .split-content .feature-item__image {
        width: 100%;
        order: 1;
        padding-bottom: 15px;
    }

    .business-cases .case-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .business-cases .case-card {
        width: 100%;
        margin-bottom: 50px;
    }

    .case-card__text h3 {
        font-size: 20px;
        font-weight: 500;
        padding-bottom: 10px;
    }

    .case-card__button {
        width: 250px;
        margin: 0 auto;
        position: relative;
    }

    .case-card__button .push-button {
        min-height: 50px;
        margin: 20px auto 0;
    }

    .case-card__button .push-button span {
        font-size: 13px;
    }
}


.finance-figure {
    width: 90%;
    max-width: 760px;
    margin: 50px auto 0;
}

.finance-figure figure {
    margin-bottom: 30px;
}

.finance-figure p {
    text-align: center;
    line-height: 2em;
    font-size: 24px;
}


.global-figure {
    width: 90%;
    max-width: 760px;
    margin: 0 auto 50px;
}

.global-figure figure {
    margin: 20px auto 0;
    width: 90%;
    max-width: 550px;
}

.global-figure p {
    text-align: center;
    line-height: 2em;
    font-size: 24px;
}


.csdv-figure01 {
    padding-bottom: 50px;
}

.csdv-figure01 figure {
    width: 80%;
    max-width: 370px;
    margin: 0 auto 30px;
}

.csdv-figure02 {
    padding-bottom: 50px;
}

.csdv-figure02 figure {
    width: 100%;
    margin: 0 auto 30px;
}

.overview-large-text {
    padding-top: 30px;
}

.csdv-figure01 p,
.overview-large-text,
.csdv-figure02 p {
    text-align: center;
    line-height: 2em;
    font-size: 24px;
}

@media screen and (max-width: 768px) {
    .finance-figure {
        width: 100%;
        max-width: 460px;
        margin: 50px auto 0;
    }

    .finance-figure figure {
        margin-bottom: 30px;
    }

    .finance-figure p {
        font-size: min(3.8vw, 18px);
    }


    .global-figure {
        width: 100%;
        margin: 0 auto 50px;
    }

    .global-figure figure {
        width: 80%;
        max-width: 360px;
        margin: 30px auto 0;
    }

    .global-figure p {
        font-size: min(3.8vw, 18px);
    }

    .csdv-figure01 {
        padding-bottom: 30px;
    }

    .csdv-figure01 figure {
        width: 80%;
        max-width: 220px;
        margin: 0 auto 10px;
    }

    .csdv-figure02 {
        padding-bottom: 30px;
    }

    .csdv-figure02 figure {
        width: 100%;
        margin: 0 auto 10px;
    }

    .overview-large-text {
        padding-top: 10px;
    }

    .csdv-figure01 p,
    .overview-large-text,
    .csdv-figure02 p {
        text-align: center;
        line-height: 2em;
        font-size: min(3.8vw, 18px);
    }
}