@charset "UTF-8";

:root {
    --main-color: #006E42;
    --white-color: #FFFFFF;

    /* テキストフォント */
    /* 日本語ベース */
    --font-base-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    /* 英語見出し */
    --font-base-family-en: 'Josefin Sans', 'Noto Sans JP', sans-serif;
    --font-base-size: 1rem; /* 16px */
    --font-base-weight-medium: 500;
    --font-base-weight-regular: 400;
    --font-base-weight-semibold: 600;
    --font-base-weight-bold: 700;
    --font-base-weight-black: 900;
    --font-base-line-height: 1.8;

    /* テキストカラー */
    --base-text-color: #000000;
    --white-text: #FFFFFF;
}

/*===========================================================================
*   見出し
===========================================================================*/

h4 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;

    font-size: 1rem;
    font-weight: var(--font-base-weight-medium);
    line-height: 1;
}

.h4-en {
    font-size: 3.75rem;
    font-family: var(--font-base-family-en);
    font-weight: var(--font-base-weight-semibold);
    line-height: 1.114;
    color: var(--main-color);

    white-space: nowrap;
}

h5 {
    font-size: 1.6429rem;
    font-family: var(--font-base-family);
    font-weight: var(--font-base-weight-bold);
    color: var(--main-color);
    line-height: 1;
}

/* ===========================================================================
*  メッセージ エリア
=========================================================================== */

.main-content-1 {
    padding: 5.625rem 6.25rem 8.75rem 6.25rem;
    text-align: center;
    background-color: #F5F5F5;
    max-width: none;
}

.main-content-1 .message h4 {
    font-size: 2.8125rem;
    font-weight: var(--font-base-weight-bold);
    line-height: 1.6888;
    color: var(--main-color);
}

.main-content-1 .message {
    display: flex;
    flex-direction: column;
    gap: 1.2333em;

    font-size: 1.875rem;
    font-weight: var(--font-base-weight-bold);
    line-height: 1.833;
}

/* ===========================================================================
*  私たちが選ばれる エリア
=========================================================================== */

.main-content-2 {
    padding-top: 8.625rem;
    padding-bottom: 10.5rem;
}

.main-content-2 .values {
    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 1.25rem;

    padding-top: 2.25rem;

    counter-reset: value-number;
}

.main-content-2 .values .value {
    display: grid;
    grid-template-columns: 35px clamp(9.375rem, -8.625rem + 24vw, 16.875rem) 1fr; /* 150px~270px */
    align-items: center;
    column-gap: clamp(1.875rem, -3.804rem + 11.82vw, 8.75rem); /* 30px~140px */

    padding: 3.444em 4.666em 2.555em 7.777em;

    background: #F5F5F5;

    font-size: 1.125rem;
    font-weight: var(--font-base-weight-regular);
    line-height: 2;
}

/* カウンター */
.main-content-2 .values .number {
    counter-increment: value-number;
}

.main-content-2 .values .number::after {
    content: counter(value-number, decimal-leading-zero);
    white-space: nowrap;

    font-size: 1.875rem;
    font-weight: var(--font-base-weight-semibold);
    font-family: var(--font-base-family-en);
    line-height: 1;
    color: var(--main-color);
}

.main-content-2 .values .value .pc-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.main-content-2 .values .value .value-icon {
    display: flex;
    justify-content: center;
}

/* 1つ目のアイコン */
.main-content-2 .values .value:nth-child(1) img {
    max-width: 188px;
    height: auto;
}
/* 2つ目のアイコン */
.main-content-2 .values .value:nth-child(2) img {
    max-width: 189px;
    height: auto;
}
/* 3つ目のアイコン */
.main-content-2 .values .value:nth-child(3) img {
    max-width: 271px;
    height: auto;
}
/* 4つ目のアイコン */
.main-content-2 .values .value:nth-child(4) img {
    max-width: 271px;
    height: auto;
}
/* 5つ目のアイコン */
.main-content-2 .values .value:nth-child(5) img {
    max-width: 183px;
    height: auto;
}
/* 6つ目のアイコン */
.main-content-2 .values .value:nth-child(6) img {
    max-width: 207px;
    height: auto;
}
/* 7つ目のアイコン */
.main-content-2 .values .value:nth-child(7) img {
    max-width: 246px;
    height: auto;
}

.main-content-2 .value h5 {
    font-size: 1.75rem;
    font-weight: var(--font-base-weight-bold);
    line-height: 1.428;
    color: #020202;
}

.main-content-2 .value span {
    font-size: 1.125rem;
    font-weight: var(--font-base-weight-bold);
    color: #020202;
    background: #F6FF00;
    background: linear-gradient(transparent 60%, #F6FF00 40%);
}

.main-content-2 .value .r-mark {
    font-size: 1.125rem; /* 18px */
    vertical-align: top;
    font-weight: var(--font-base-weight-bold);
    color: #020202;
    background: transparent;
}

/* ===========================================================================
*  私たちのビジネスモデル エリア
=========================================================================== */

.main-content-3 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 9.75rem;
    padding-bottom: 7.1875rem;

    gap: clamp(3.125rem, -70.791rem + 84.41vw, 18.9rem); /* 50px~303px */
}

.business-model {
    max-width: 768px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    font-size: 1.25rem;
    font-weight: var(--font-base-weight-bold);
    line-height: 1;

    flex: 1;
}

.business-model .row1 {
    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 2em;
}

.business-model .row1 .content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: -webkit-fill-available;
    height: 96px;
    padding-left: 85px;
    border: 1px solid #444444;
    border-radius: 20px;
}

.business-model .row1 .content::before {
    content: "";

    position: absolute;
    left: 0;
    transform: translateX(77px);

    width: 50px;
    height: 69px;

    background-image: url("../../image/gyoumu/men.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.business-model .row1 .content::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 170%);

    width: 31px;
    height: 31px;

    background-image: url("../../image/gyoumu/yajirushi-black-short.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.business-model .row1 .content span {
    font-size: 1.125rem;
    font-weight: var(--font-base-weight-regular);
}

.business-model .flex {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: stretch;
    height: 100px;
    padding-left: 93px;
    margin-top: 2.5rem;
    border: 1px solid #444444;
    border-radius: 20px;
}

.business-model .flex::before {
    content: "";

    position: absolute;
    left: 0;
    transform: translateX(258px);

    width: 58px;
    height: 58px;

    background-image: url("../../image/gyoumu/building.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.business-model .row2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4.9em;
    margin: 1.25em;
}

.business-model .row2 .content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 310px;
    height: 71px;
    background: #FFFBE3;
    border: 1px solid #FFB700;
    border-radius: 20px;
    color: #C55F00;
}

.business-model .row2 .content::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);

    width: 131px;
    height: 131px;

    background-image: url("../../image/gyoumu/yajirushi-yellow.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
}

.business-model .row2 .content.row::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scaleY(-1);

    width: 131px;
    height: 131px;

    background-image: url("../../image/gyoumu/yajirushi-yellow.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
}

.business-model .row2 .content.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.54em;
}

.business-model .row2 .content.row .background-color-orange {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #C55F00;
    font-size: 1.125rem;
    color: var(--white-text);
    font-weight: var(--font-base-weight-medium);
    width: 128px;
    height: 30px;
    border-radius: 10px;
}

.business-model .renice {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F5F5F5;
    border: 1px solid #006E42;
    border-radius: 20px;
    width: stretch;
    height: 222px;
    padding-top: 1.3em;
    z-index: -2;
}

.business-model .renice .row3 {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 4.9em;
}

.business-model .renice .row3::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 72px;
    height: 72px;

    background-image: url("../../image/gyoumu/yajirushi-black.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.business-model .row3 .content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 310px;
    height: 71px;
    background: var(--white-color);
    border: 1px solid #006E42;
    border-radius: 20px;
    font-weight: var(--font-base-weight-medium);
}

.business-model .renice .row4 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 1.7em;
}

.business-model .renice .row4 .text-renice {
    font-size: 4.375rem;
    font-weight: var(--font-base-weight-semibold);
    font-family: var(--font-base-family-en);
    color: var(--main-color);
    margin-top: -10px;
}

.business-model .renice .row4 .text-enovation {
    font-size: 1.5625rem;
    font-weight: var(--font-base-weight-black);
    padding-left: 1.44em;
    padding-right: 0.88em;
}

.business-model .renice .row4 .text {
    font-size: 1.125rem;
    font-weight: var(--font-base-weight-semibold);
    padding-top: 0;
}

.business-model .text {
    font-size: 1.125rem;
    font-weight: var(--font-base-weight-medium);
    padding-top: 0.83333em;
}

/* ===========================================================================
*  パートナーシップ エリア
=========================================================================== */

.main-content-4 {
    display: flex;
    flex-direction: column;
    padding-top: 6.5625rem;
}

.main-content-4 .img-text-wrap {
    display: flex;
    flex-direction: row;
    padding-top: 2.25rem;
}

.main-content-4 .img-wrap {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.main-content-4 .img-wrap img {
    max-width: 726px;
}

.main-content-4 .partnership-wrap {
    width: 50%;
    padding-left: clamp(1.875rem, -7.28rem + 19.05vw, 4.625rem); /* 30px~74px */
}

.main-content-4 .partnership {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-content-4 .partnership .text {
    font-size: 2.5rem;
    font-weight: var(--font-base-weight-bold);
    color: var(--main-color);
    line-height: 1.425;
}

.main-content-4 .partnership .for-customer {
    display: flex;
    flex-direction: row;
    gap: 22px;
    justify-content: center;align-items: center;
    border: 1px solid #444444;
    border-radius: 10px;

    width: 562px;
    height: 64px;
}

.main-content-4 .partnership img {
    padding-top: 50px;
    padding-bottom: 10px;
    width: 619px;
    height: auto;
}

.main-content-4 .partnership .for-customer .text {
    position: relative;
    font-size: 1.25rem;
    font-weight: var(--font-base-weight-bold);
    color: #020202;
    padding-left: 115px;
}

.main-content-4 .partnership .for-customer .text::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(130%, -50%);

    width: 41px;
    height: 41px;

    background-image: url("../../image/gyoumu/building.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.main-content-4 .partnership .for-customer .orange-text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    color: var(--white-text);
    background-color: #C55F00;
    border-radius: 10px;
    width: 132px;
    height: 34px;
}

/* ===========================================================================
*  リノベーション エリア
=========================================================================== */

.main-content-5 {
    padding-top: 9.75rem;
    padding-bottom: 8.75rem;
}

.main-content-5 h5 {
    padding: 4.75rem 0 3.0525rem;

}

.main-content-5 .text-img-wrap {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.main-content-5 .values {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 1.56em;

    counter-reset: value-number;
}

.main-content-5 .values .value {
    position: relative;
    
    display: grid;
    grid-template-rows:
        auto   /* icon */
        auto   /* h4 */
        /* auto */   /* h4 */
        1fr;   /* text */

    justify-items: center;
    text-align: left;

    min-width: 356px;
    flex: 1 1 calc(50% - 1.56em); /* gap分の1.56em */
    padding: 3.6em 2.5em 2.3em 2.5em;

    background: #F5F5F5;

    font-size: var(--font-base-size);
    font-weight: var(--font-base-weight-regular);
    line-height: 1.875;
}

.main-content-5 .value h4 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    font-size: 1.3125rem;
    font-weight: var(--font-base-weight-bold);

    margin-top: 1.6em;
    margin-bottom: 0.85em;

    line-height: 1.4285;
}

.main-content-5 .value-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 129px; /* アイコンエリア固定 */
}

.main-content-5 .values .value img {
    display: block;
}

/* 1つ目のアイコン */
.main-content-5 .values .value:nth-child(1) img {
    width: 181px;
    height: auto;
}
/* 2つ目のアイコン */
.main-content-5 .values .value:nth-child(2) img {
    width: 130px;
    height: auto;
}
/* 3つ目のアイコン */
.main-content-5 .values .value:nth-child(3) img {
    width: 145px;
    height: auto;
}
/* 4つ目のアイコン */
.main-content-5 .values .value:nth-child(4) img {
    width: 143px;
    height: auto;
}

.main-content-5 .text-img-wrap .img-wrap {
    width: 50%;
}

.main-content-5 .text-img-wrap .img-wrap img {
    max-width: 737px;
}

@media screen and (max-width: 1400px) {

    /* ===========================================================================
    *  私たちのビジネスモデル エリア
    =========================================================================== */
    .main-content-3 {
        flex-direction: column;
        gap: 0;
    }

    .business-model {
        padding-top: 2.5714rem;
    }
}

@media screen and (max-width: 1200px) {

    /* ===========================================================================
    *  パートナーシップ エリア
    =========================================================================== */

    .main-content-4 .img-text-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .main-content-4 .img-wrap {
        width: 100%;
        justify-content: center;
    }

    .main-content-4 .partnership-wrap {
        width: 100%;
        padding-left: 0;
        padding-top: 3.125rem;
    }

    /* ===========================================================================
    *  リノベーション エリア
    =========================================================================== */

    .main-content-5 .text-img-wrap .img-wrap {
        order: 1;
        width: 100%;
    }

    .main-content-5 .h5-sp {
        order: 2;
    }

    .main-content-5 .values {
        order: 3;
        width: 100%;
    }

    .main-content-5 .text-img-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

}

@media screen and (max-width: 1000px) {

    /* ===========================================================================
    *  私たちが選ばれる エリア
    =========================================================================== */

    .main-content-2 h4 {
        text-align: center;
    }

    .main-content-2 .values {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;

        gap: 2em;

        counter-reset: value-number;
    }

    .main-content-2 .values .value {
        position: relative;
        
        grid-template-columns: none;
        display: grid;
        grid-template-rows:
            auto   /* icon */
            auto   /* h5 */
            auto;   /* text */
        width: 450px;

        padding: 4.9375em 2.428em 3.4375em 2.428em;
        font-size: var(--font-base-size);
        font-weight: var(--font-base-weight-regular);
        line-height: 1.875;

        background: #F5F5F5;
    }

    /* カウンター */
    .main-content-2 .values .value .number.pc {
        display: none;
    }
    .main-content-2 .values .value {
        counter-increment: value-number;
    }

    .main-content-2 .value h5 {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        
        font-size: 1.3571rem;
        line-height: 1.5789;
    }

    .main-content-2 .values .value::after {
        content: counter(value-number, decimal-leading-zero);
        position: absolute;
        top: 18px;
        left: 19px;

        font-size: 1.875rem;
        font-weight: var(--font-base-weight-semibold);
        font-family: var(--font-base-family-en);
        line-height: 1;
        color: var(--main-color);
    }

    .main-content-2 .values .value .pc-wrap {
        gap: 0;
    }

    .main-content-2 .value-icon {
        display: flex;
        justify-content: center;
        align-items: center;

        width: 100%;
         /* アイコンエリア固定 */
        /* height: 139px; */
    }

    .main-content-2 .values .value img {
        display: block;
    }

    /* 1つ目のアイコン */
    .main-content-2 .values .value:nth-child(1) img {
        width: 120px;
        height: auto;
    }
    /* 2つ目のアイコン */
    .main-content-2 .values .value:nth-child(2) img {
        width: 121px;
        height: auto;
    }
    /* 3つ目のアイコン */
    .main-content-2 .values .value:nth-child(3) img {
        width: 193px;
        height: auto;
    }
    /* 4つ目のアイコン */
    .main-content-2 .values .value:nth-child(4) img {
        width: 209px;
        height: auto;
    }
    /* 5つ目のアイコン */
    .main-content-2 .values .value:nth-child(5) img {
        width: 129px;
        height: auto;
    }
    /* 6つ目のアイコン */
    .main-content-2 .values .value:nth-child(6) img {
        width: 153px;
        height: auto;
    }
    /* 7つ目のアイコン */
    .main-content-2 .values .value:nth-child(7) img {
        width: 170px;
        height: auto;
    }

    /* ↓↓ 個別余白対応の為 ↓↓ */
    /* 1つ目 */
    .main-content-2 .value:nth-child(1) {
        padding: 3.92em 2.35em 3.35em 2.42em;
    }
    .main-content-2 .value:nth-child(1) h5 {
        margin-top: 2.21em;
        margin-bottom: 1.47em;
    }
  
    /* 2つ目 */
    .main-content-2 .value:nth-child(2) {
        padding: 2.64em 2.35em 3.21em 2.42em;
    }
    .main-content-2 .value:nth-child(2) h5 {
        margin-top: 2.15em;
        margin-bottom: 1.47em;
    }
    .main-content-2 .values .value:nth-child(2) .value-icon {
        padding-left: 50px;
    }
  
    /* 3つ目 */
    .main-content-2 .value:nth-child(3) {
        padding: 5.28em 2.35em 3.07em 2.42em;
    }
    .main-content-2 .value:nth-child(3) h5 {
        margin-top: 1.78em;
        margin-bottom: 1.47em;
    }
  
    /* 4つ目 */
    .main-content-2 .value:nth-child(4) {
        padding: 4.21em 2.35em 3.21em 2.42em;
    }
    .main-content-2 .value:nth-child(4) h5 {
        margin-top: 2em;
        margin-bottom: 1.10em;
    }
  
    /* 5つ目 */
    .main-content-2 .value:nth-child(5) {
        padding: 4.35em 2.35em 3.71em 2.42em;
    }
    .main-content-2 .value:nth-child(5) h5 {
        margin-top: 2.26em;
        margin-bottom: 1.47em;
    }
    .main-content-2 .values .value:nth-child(5) .value-icon {
        padding-left: 50px;
    }
  
    /* 6つ目 */
    .main-content-2 .value:nth-child(6) {
        padding: 5.78em 2.35em 2.57em 2.42em;
    }
    .main-content-2 .value:nth-child(6) h5 {
        margin-top: 1.73em;
        margin-bottom: 1.47em;
    }
  
    /* 7つ目 */
    .main-content-2 .value:nth-child(7) {
        padding: 5.35em 2.35em 2.85em 2.42em;
    }
    .main-content-2 .value:nth-child(7) h5 {
        margin-top: 2.40em;
        margin-bottom: 1.47em;
    }

    /* ===========================================================================
    *  私たちのビジネスモデル エリア
    =========================================================================== */

    .business-model .row1 .content::before {
        transform: translateX(50px);
    }

    .business-model .flex::before {
        transform: translateX(150px);
    }

    .business-model .row3 .content {
        width: clamp(13.75rem, -4.976rem + 38.96vw, 19.375rem); /* 220px~310px */
    }

    .business-model .renice .row4 .text-renice {
        font-size: clamp(2.5rem, -3.742rem + 12.99vw, 4.375rem); /* 40px~70px */
    }

    .business-model .renice .row4 .text-enovation {
        padding-left: clamp(0.5rem, -2.629rem + 6.51vw, 1.44rem); /* 8px~23px */
        padding-right: clamp(0.4rem, -1.198rem + 3.32vw, 0.88rem); /* 6px~14px */
    }

}

/* ▼ ～768px：スマホ～タブレット */
@media screen and (max-width: 768px) {

    /* ==========================================================================
    *  見出し、アルファベットテキスト
    ===========================================================================*/

    h4 {
        gap: 1.3076em;
        font-size: 0.9286rem;
        text-align: center;
    }

    .h4-en.sp {
        display: block;
        text-align: center;
    }

    .h4-en {
        font-size: 2.5rem;
        line-height: 1.1;
        white-space: normal;
    }

    /* ===========================================================================
    *  メッセージ エリア
    =========================================================================== */

    .main-content-1 {
        padding: 2.4286rem 1.4286rem;
        background-color: var(--white-color);
    }
    
    .main-content-1 .message h4 {
        font-size: 2.5rem;
        font-weight: var(--font-base-weight-black);
        line-height: 1.2285;
        text-align: center;
    }

    .main-content-1 .message {
        gap: 0.75em;
        font-size: 1.4286rem;
        line-height: 1.8;
    }

    /* ===========================================================================
    *  私たちが選ばれる エリア
    =========================================================================== */

    .main-content-2 {
        padding-top: 3.2857rem;
        padding-bottom: 4.2857rem;
    }

    .main-content-2 .values .value {
        width: clamp(330px, calc(330px + 32 * (100vw - 375px) / 27), 362px);;
    }


    /* ===========================================================================
    *  私たちのビジネスモデル エリア
    =========================================================================== */

    .main-content-3 {
        flex-direction: column;
        padding-top: 3.2857rem;
        padding-bottom: 4.2857rem;
        gap: 0;
    }

    .business-model {
        font-size: 1.2857rem;
        padding-top: 2.5714rem;
    }

    .business-model .row1 {
        gap: 1.1666em;
    }

    .business-model .row1 .content span {
        font-size: 1.1429rem;
    }

    .business-model .row1 .content {
        flex-direction: column;
        gap: 7px;
        height: 105px;
        padding-left: 67px;
    }

    .business-model .row1 .content::before {
        transform: translateX(30px);
        width: 43px;
        height: 59px;
    }

    .business-model .row1 .content::after {
        transform: translate(-50%, 290%);
        width: 20px;
        height: 20px;
    }

    .business-model .flex {
        height: 105px;
        padding-left: 82px;
        margin-top: 2.4286rem;
        /* margin-bottom: 2.2143rem; */
    }

    .business-model .flex::before {
        transform: translateX(50px);
        width: 43px;
        height: 43px;
    }

    .business-model .row2 {
        gap: 1.833em;
        margin: 1.7222em 0.388em 1.055em;
    }

    .business-model .row2 .content::before {
        width: 141px;
        height: 141px;
    }

    .business-model .row2 .content.row {
        flex-direction: column;
        gap: 0.2777em;
    }

    .business-model .row2 .content.row .background-color-orange {
        font-size: 1.1429rem;
        width: 108px;
        height: 24px;
        border-radius: 5px;
    }

    .business-model .renice {
        height: 246px;
        padding-top: 1.7em;
    }

    .business-model .renice .row3 {
        gap: 1.8em;
    }

    .business-model .renice .row3::before {
        width: 20px;
        height: 20px;
    }

    .business-model .row3 .content {
        width: 133px;
        height: 45px;
        border-radius: 10px;
    }

    .business-model .renice .row4 {
        flex-direction: column;
    }

    .business-model .renice .row4 .text-renice {
        font-size: 3.2143rem;
    }

    .business-model .renice .row4 .text-enovation {
        font-size: 1.2857rem;
        padding: 1.33em 0 1.16em 0;
    }

    .business-model .renice .row4 .text {
        font-size: 1.1429rem;
    }

    /* ===========================================================================
    *  パートナーシップ エリア
    =========================================================================== */

    .main-content-4 {
        padding-top: 4.2857rem;
    }

    .main-content-4 .img-text-wrap {
        flex-direction: column;
        padding-top: 2.4286rem;
    }

    .main-content-4 .img-wrap {
        width: 100%;
    }

    .main-content-4 .partnership-wrap {
        width: 100%;
        padding-left: 0;
    }

    .main-content-4 .partnership .text {
        font-size: 1.6429rem;
        line-height: 1.6;
    }

    .main-content-4 .partnership img {
        padding-top: 19px;
        padding-bottom: 6px;
        width: 619px;
        height: auto;
    }

    .main-content-4 .partnership .for-customer {
        width: clamp(24.2rem, 22.619rem + 6.75vw, 25.857rem); /* 340px~362px */
        gap: 14px;
    }

    .main-content-4 .partnership .for-customer .text::before {
        transform: translate(40%, -50%);
        width: 33px;
        height: 33px;
    }

    .main-content-4 .partnership .for-customer .text {
        font-size: 1.2857rem;
        padding-left: 60px;
    }

    .main-content-4 .partnership .for-customer .orange-text {
        font-size: 1.1429rem;
        border-radius: 5px;
        width: 108px;
        height: 27px;
    }

    /* ===========================================================================
    *  リノベーション エリア
    =========================================================================== */

    .main-content-5 {
        padding-top: 6.8571rem;
        padding-bottom: 5.7857rem;
    }

    .main-content-5 h5 {
        padding: 1.7857rem 0 2.6429rem;
    }

    .main-content-5 .text-img-wrap {
        gap: 0;
        padding-top: 25px;
    }

    .main-content-5 .values .value {
        position: relative;
        display: grid;
        grid-template-rows: auto /* icon */ auto /* h4 */ /* auto */ /* h4 */ 1fr;
        justify-items: center;
        width: 362px;
        padding: 2.8em 2.35em 2.35em 2.35em;
        background: #F5F5F5;
        font-size: 1rem;
        line-height: 1.928;
    }

    .main-content-5 .value-icon {
        height: 109px; /* アイコンエリア固定 */
    }

    /* 1つ目のアイコン */
    .main-content-5 .values .value:nth-child(1) img {
        width: 145px;
        height: auto;
    }
    /* 2つ目のアイコン */
    .main-content-5 .values .value:nth-child(2) img {
        width: 110px;
        height: auto;
    }
    /* 3つ目のアイコン */
    .main-content-5 .values .value:nth-child(3) img {
        width: 121px;
        height: auto;
    }
    /* 4つ目のアイコン */
    .main-content-5 .values .value:nth-child(4) img {
        width: 127px;
        height: auto;
    }

    .main-content-5 .value h4 {
        font-size: 1.3571rem;
        margin-top: 2.26em;
        margin-bottom: 1.3em;
        line-height: 1;
        height: auto;
    }

}
