@charset "UTF-8";

/* ---------------------
イントロ
--------------------- */

.intro-block {
    gap: 2rem 5%;
    flex-direction: column;
}

.intro-lead {
    font-size: 5.3vw;
    letter-spacing: 0.05em;
    line-height: 200%;
    font-weight: 600;
    color: var(--c-blue);
}

.intro-comment {
    font-size: .875rem;
    letter-spacing: 0.05em;
    line-height: 200%;
}

@media (min-width: 768px) {

    .intro-section {
        padding-top: 3rem;
    }

    .intro-lead {
        font-size: 2rem;
    }

    .intro-img {
        text-align: center;
    }

    .intro-img img {
        width: 75%;
    }
}

@media (min-width: 1024px) {
    .intro-block {
        flex-direction: unset;
        align-items: center;
    }

    .intro-lead {
        width: 60%;
    }

    .intro-img {
        width: 35%;
        text-align: right;
    }

    .intro-img img {
        width: 100%;
    }
}

@media (min-width: 1280px) {
    .intro-section {
        padding-bottom: 8rem;
    }

    .intro-lead {
        width: 45%;
    }

    .intro-img {
        width: 50%;
    }
}

/* ---------------------
事業一覧
--------------------- */
.business-detail {
    gap: 1rem 3%;
    align-items: end;
    margin-top: 4rem;
    margin-bottom: 6rem;
}

.business-detail .detail-image {
    width: 67%;
    order: 1;
    position: relative;
}

.business-detail .detail-image .image-label {
    height: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    writing-mode: vertical-rl;
    text-align: center;
    letter-spacing: 0.2em;
    font-size: 0.625rem;
    color: #fff;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

.business-detail .detail-content {
    width: 100%;
    order: 3;
    padding: 0 8vw;
    text-align: center;
}

.business-detail .detail-title {
    font-size: 6vw;
    font-weight: 500;
    margin: 0;
}

.business-detail .detail-description {
    font-size: 1rem;
    display: block;
    margin: 1rem 0 2rem;
}

.business-detail .detail-subimg {
    width: 30%;
    order: 2;
}

.business-detail:nth-child(odd) .detail-image {
    order: 2;
}

.business-detail:nth-child(odd) .detail-subimg {
    order: 1;
}

.business-detail:nth-child(odd) .detail-image .image-label {
    left: auto;
    right: 0;
}

@media (min-width: 768px) {
    .business-detail .detail-title {
        font-size: 5vw;
    }
}

@media (min-width: 1024px) {
    .business-detail {
        margin-bottom: 15vw;
    }

    .business-detail .detail-image {
        width: 49%;
    }

    .business-detail .detail-image .image-label {
        font-size: 1.3vw;
    }

    .business-detail .detail-content {
        width: 24%;
        order: 2;
        padding: 0;
        text-align: left;
    }

    .business-detail .detail-title {
        font-size: 2.625rem;
    }

    .business-detail .detail-subimg {
        width: 18%;
        order: 3;
    }

    .business-detail:nth-child(odd) {
        justify-content: flex-end;
    }

    .business-detail:nth-child(odd) .detail-image {
        order: 3;
    }

    .business-detail:nth-child(odd) .detail-content {
        order: 2;
    }

    .business-detail:nth-child(odd) .detail-subimg {
        order: 1;
    }
}