/* ページ全体で利用するスタイル */

.issue-list {
    padding: 55px;
    background: #f2f2f2;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(32px + 50px + 32px);
}

.issue-list .issue,
.issue-list .solution {
    padding-left: calc(84px + 10px);
    position: relative;
}

.issue-list .issue::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    width: 66px;
    height: 66px;
    background: url(/-/media/ind/fs/industry/image/icon_issue.svg) no-repeat center / contain;
}

.issue-list .issue::after {
    content: "";
    position: absolute;
    bottom: calc((32px + (50px / 2)) * -1);
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 30px;
    background: url(/-/media/ind/fs/industry/image/arrow.png) no-repeat center / contain;
}

.issue-list .solution::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 80px;
    height: 61px;
    background: url(/-/media/ind/fs/industry/image/icon_solution.svg) no-repeat center / contain;
}

.issue-list ul {
    margin-top: 10px;
    padding-left: 25px;
}

.issue-list ul li {
    list-style: disc;
}

@media screen and (max-width: 767px) {
    .issue-list {
        padding: 1rem 1rem 1rem 0;
    }

    .issue-list .issue::before {
        width: 50px;
        height: 50px;
        left: 5px;
    }

    .issue-list .solution::before {
        width: 60px;
        height: 46px;
        left: 0;
    }

    .issue-list .issue,
    .issue-list .solution {
        padding-left: 60px;
    }

    .issue-list ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: .5rem;
    }
}

.label {
    margin: 20px auto 0;
    width: 525px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #c02;
}

@media screen and (max-width: 767px) {
    .label {
        width: unset;
        padding: 0 1rem;
    }
}

.card-list {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.card-list .card {
    width: 377px;
}

.card-list .card .image-box {
    overflow: hidden;
}

.card-list .card .image-box img {
    width: 100%;
    transition: all 0.3s ease;
}

.card-list .card .text-box {
    padding: 30px 18px;
    text-align: center;
    background: #f2f2f2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.card-list .card .text-box h4 {
    background: none!important;
}

.card-list .card .text-box p {
    color: #333;
}

.card-list .card .text-box .color-red {
    color: #c02;
    text-decoration: underline;
}

.card-list .card a {
    transition: all 0.3s ease;
}

.card-list .card a:hover {
    opacity: .8;
}

.card-list .card a:hover .image-box img {
    transform: scale(1.05);
}

@media screen and (max-width: 994px) {
    .card-list .card {
        width: 300px;
    }
}

@media screen and (max-width: 767px) {
    .card-list {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .card-list .card {
        width: 100%;
    }
}

/* ページ内リンク */

.top-link {
    background: #f2f2f2;
}

/* 製造業〜 */

.manufacturing .wrapper {
    max-width: 1100px;
}

.manufacturing .hedding-block {
    text-align: center;
}

.manufacturing .hedding-block h3 {
    margin-top: 60px;
    color: #c02;
}

.manufacturing .hedding-block h4 {
    margin-top: 15px!important;
}

.manufacturing .content-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.manufacturing .content-block .message {
    text-align: center;
}

/* 卸売業〜 */

.wholesale .wrapper {
    max-width: 1100px;
}

.wholesale .hedding-block {
    text-align: center;
}

.wholesale .hedding-block h3 {
    margin-top: 60px;
    color: #c02;
}

.wholesale .hedding-block h4 {
    margin-top: 15px;
}

.wholesale .content-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.wholesale .content-block .message {
    text-align: center;
}
