.main-visual {
    background: url(/-/media/ind/cs/top/image/main_visual_bg.png) no-repeat center center;
    background-size: cover;
}
.main-visual .wrapper h1 {
    color: #fff;
    text-align: center;
}
.main-visual .wrapper .description {
    margin-top: 50px;
    color: #fff;
    text-align: center;
}
.main-visual .wrapper .cta-block {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.main-visual .wrapper .cta-block a {
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .main-visual .wrapper .cta-block {
        flex-direction: column;
    }
}

/* お悩み */
.problem .content-block ul {
    padding: 0;
    max-width: 631px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.problem .content-block ul li {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    gap: 30px;
}

.problem .content-block .text-box {
    max-width: 670px;
    margin: 0 auto;
    margin-top: calc(50px + 102px + 50px);
    text-align: center;
    position: relative;
}

.problem .content-block .text-box::before {
    content: "";
    position: absolute;
    display: block;
    top: calc((50px + 50px + (102px / 2)) * -1);
    left: 50%;
    translate: -50% 0;
    width: 112px;
    height: 102px;
    background: url(/-/media/ind/cs/top/image/problem_arrow.svg) no-repeat center center;
    background-size: contain;
}

.problem .content-block .text-box h3 {
    color: #c02;
}

.problem .content-block .text-box .solution {
    margin-top: 30px;
}

.problem .content-block .text-box .description {
    margin-top: 50px;
}

.problem .content-block .cta-block {
    margin-top: 50px;
    text-align: center;
}

/* おすすめ */

.recommend {
    background: var(--bg-color1);
}

.recommend .content-block ul {
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.recommend .content-block ul li img {
    max-width: 240px;
}

.recommend .content-block ul li p {
    margin-top: 30px;
    max-width: 240px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .recommend .content-block ul {
        flex-direction: column;
        gap: 6rem;
    }

    .recommend .content-block ul li {
        text-align: center;
    }

    .recommend .content-block ul li img {
        width: 80%;
    }
    
    .recommend .content-block ul li p {
        margin-top: 1rem;
        max-width: unset;
    }    
}

/* 製品 */

.product .content-block ul {
    padding: 54px 0 0 63px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.product .content-block ul li {
    margin-top: 54px;
    display: flex;
    gap: 50px;
    position: relative;
}

.product .content-block ul li .label {
    padding: 20px 23px;
    position: absolute;
    top: -54px;
    left: -63px;
    color: #fff;
    text-align: center;
    border-radius: 10px;
}

.product .content-block ul li .label::after {
    content: "";
    position: absolute;
    bottom: calc(-32px + 11px); /* 11px上に上げてる */
    left: 50%;
    translate: -50% 0;
    width: 22px;
    height: 22px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.product .content-block ul li .label.green {
    background: #85bb45;
}

.product .content-block ul li .label.green::after {
    background: #85bb45;
}

.product .content-block ul li .label.yellow {
    background: #f9d71d;
    color: #333;
}

.product .content-block ul li .label.yellow::after {
    background: #f9d71d;
}

.product .content-block ul li .label.orange {
    background: #e5932d;
}

.product .content-block ul li .label.orange::after {
    background: #e5932d;
}

.product .content-block ul li .image-box img {
    max-width: 547px;
}


.product .content-block ul li .text-box h3 {
    margin-top: 5px;
}

.product .content-block ul li .text-box .description {
    margin-top: 20px;
}

.product .content-block ul li .text-box .cta-block {
    margin-top: 27px;
}

.product .content-block ul li .text-box .cta-block a.button-white {
    max-width: 224px;
    padding: 13px;
}

@media screen and (max-width: 767px) {
    .product .content-block ul {
        padding: 0;
        gap: 6rem;
    }

    .product .content-block ul li {
        margin-top: 95px;
        flex-direction: column;
        gap: 1rem;
    }

    .product .content-block ul li:last-child {
        margin-top: 117px;
    }

    .product .content-block ul li .label {
        top: -10px;
        left: -10px;
        translate: 0 -100%;
    }

    .product .content-block ul li .text-box .service {
        font-size: .8rem;
    }

    .product .content-block ul li .cta-block {
        text-align: center;
    }
}