.goldChevron {
    background: url(../images/companyPoints/goldChevron.png);
    background-size: cover;
    background-position: center;
}

.listItem__heading {
    width: 100%;
    position: relative;
}

.listItem__number {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--fontRoboto);
    font-size: var(--fontSize24);
    font-weight: 700;
    line-height: 2;
    color: var(--colorBlack);
    display: flex;
    align-items: center;
    justify-content: center;
}

.listItem__text {
    font-family: var(--fontNotoSansJP);
    font-size: var(--fontSize16);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 2;
    color: var(--colorBlack);
}

.listItem__title {
    font-family: var(--fontNotoSansJP);
    font-size: var(--fontSize24);
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.25;
    color: var(--colorBlack);
    padding-left: 72px;
}

.mainSection {
    background-color: var(--colorLightYellow);
    margin-top: 80px;
}

.messageSection {
    background-color: var(--colorLightYellow);
    margin-top: 160px;
}

.message__container {
    display: grid;
    grid-template-columns: auto 200px;
    padding: 40px 50px;
    text-align: center;
    gap: 20px;
}

.message__img img {
    max-width: 193px;
    width: 100%;
    height: auto;
}

.message__text {
    font-family: var(--fontNotoSansJP);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.3em;
    line-height: 1.8;
    color: var(--colorBlack);
}

.negSection {
    background-color: #f0f0f0;
    margin-top: 160px;
}

.negTop__img {
    position: absolute;
    top: -75px;
    right: 50%;
    transform: translateX(50%);
}

.negTop__img img {
    max-width: 52px;
    width: 100%;
    height: auto;
}

.points__heading {
    font-family: var(--fontNotoSansJP);
    font-size: var(--fontSize24);
    font-weight: 500;
    letter-spacing: 0.3em;
    line-height: 1.8;
    color: var(--colorBlack);
    text-align: center;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    padding-top: 18px;
}

.points__heading::after {
    content: "";
    width: 2px;
    height: 50px;
    border-right: 2px dashed #999999;
    right: -60px;
    position: absolute;
    rotate: 20deg;
    bottom: 0;
}

.points__heading::before {
    content: "";
    width: 2px;
    height: 50px;
    border-right: 2px dashed #999999;
    left: -60px;
    position: absolute;
    rotate: -20deg;
    bottom: 0;
}

.points__title {
    font-family: var(--fontNotoSansJP);
    font-size: var(--fontSize32);
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.5;
    color: var(--colorBlack);
    text-align: center;
    margin-top: 64px;
}

.points__subtitle {
    font-family: var(--fontRoboto);
    font-size: var(--fontSize32);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 2;
    color: #e6e6e6;
    text-align: center;
    margin-top: 48px;
}

.pointsList {
    background: #fff;
    width: 100%;
    display: grid;
    grid-template-columns: 100%;
    padding: 62px 40px;
    column-gap: 40px;
    row-gap: 64px;
    position: relative;
    top: 110px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
}

.pointsList__item {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.posTop__img {
    position: absolute;
    top: -75px;
    right: 50%;
    transform: translateX(50%);
}

.posTop__img img {
    max-width: 270px;
    width: 100%;
    height: auto;
}

.silverChevron {
    background: url(../images/companyPoints/silverChevron.png);
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 767px) {
    .message__container {
        display: flex;
        flex-direction: column;
    }

    .points__heading::after {
        right: -55px;
    }

    .points__heading::before {
        left: -55px;
    }

    .pointsList {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 550px) {
    .listItem__number {
        width: 35px;
        height: 40px;
    }

    .listItem__title {
        padding-left: 60px;
    }

    .points__display {
        padding: 0 10px;
    }

    .pointsList {
        padding: 42px 20px;
        row-gap: 35px;
    }

    .pointsList__item {
        gap: 20px;
    }

    .points__subtitle {
        padding: 0 20px;
    }

    .points__title {
        padding: 0 20px;
    }

    .points__heading::after {
        height: 30px;
        right: -15px;
    }

    .points__heading::before {
        height: 30px;
        left: -25px;
    }
    
    .posTop__img {
        top: -50px;
    }
}