.new-wrap {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.content-item h2 {
  font-size: 32px;
  color: #1d2129;
  text-align: center;
  padding-top:60px;
}

.content-item>.all-case {
    font-size: 22px;
    color: #165dff;
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.case-list {
    width: 100%;
    padding: 50px 0 96px;
    position: relative;
	z-index:1000000000
}

.case-list::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 200px;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #f2f2f2, transparent);
}

.case-list::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 200px;
    top: 0;
    right: 0;
    background: linear-gradient(to right, transparent, #f2f2f2);
}

.case-list-item {
    width: 100%;
    display: flex;
    overflow: hidden;
    margin-bottom: 26px;
}

.case-list>.case-list-item:nth-child(even) {
    flex-direction: row-reverse;
    white-space: nowrap;
    width: 100%;
}

.case-list-item-img {
    display: flex;
    height: 52px;
}

.case-list>.case-list-item:nth-child(odd) .case-list-item-img-second {
    padding-left: 20px;
}

.case-list>.case-list-item:nth-child(even) .case-list-item-img-second {
    padding-right: 20px;
}

@media screen and (max-width: 767px) {
	
	.content-item h2 {
  padding-top:0;
}

    .new-wrap {
        width: 100%;
        padding: 1rem;
    }


    .content-item {
        padding-top: 3rem;
    }

    .about-testone>p {
        padding: 1rem 0;
        font-size: 1rem;
        line-height: 24px;
        text-align: left;
    }

    .content-item h2 {
        font-size: 1.8rem;
    }

    .content-item>.all-case {
        font-size: 1rem;
    }

    .case-list {
        padding: 2rem 0;
    }

}