.breadcrumbList {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.breadcrumbList li {
    position: relative;
    padding-right: 2rem;
    font-size: 1.3rem;
    line-height: 1.5;
}

.breadcrumbList li a {
    color: #000;
}

.breadcrumbList li a:hover {
    opacity: 0.6;
}

.breadcrumbList li::after {
    position: absolute;
    content: "";
    top: 50%;
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 0.5em;
    height: 0.5em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    right: 1rem;
    transform: translateY(-50%) rotate(45deg);
}

.breadcrumbList li:nth-last-child(1)::after {
    content: none;
}

.reportContent {
    padding-block: 15rem;
    position: relative;
}

.reportContent::before {
            background: url(../img/img-mainvisual_head.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 10rem;
    left: 0;
    position: absolute;
    top: 0;
    width: calc(100% - 10rem);
}

.reportContent__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    line-height: 1.5;
}

.reportContent__text {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.reportContent__img {
    margin-bottom: 2rem;
    max-width: 700px;
    width: 100%;
    margin-inline: auto;
}

.reportContentList__wrap {
    margin-bottom: 2rem;
}

.reportContentList__title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.reportContentList li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: 8rem auto;
    line-height: 1.5;
}

.bgLeft {
    top: 10rem;
}

.bgRight {
    top: 10rem;
}

@media screen and (max-width: 768px) {
    .breadcrumbList li {
        font-size: 1rem;
    }

    .reportContent {
        padding-block: 10rem;
    }
    
    .reportContent::before {
        display: none;
    }

    .reportContent__title {
        font-size: 1.5rem;
    }
 
    .reportContent__text {
        font-size: 1.2rem;
    }

    .reportContentList__title {
        font-size: 1.3rem;
    }

    .reportContentList li {
        font-size: 1rem;
        grid-template-columns: 1fr;
    }
}