#selected {
    background-color: #fcfcfc;
}
/* タイトル */
.pageValuesText {
    text-align: center;
}
/* フレックス */
.pageValuesItem {
    justify-content: space-around;
    align-items: center;
}
/* 幅 */
.pageValuesItem > div {
    width: 40%;
    max-width: 600px;
    padding: 2em 0;
}
/* ナンバーサイズ */
.no-img img {
    width: 40px;
    height: 27px;

}

.item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /* text-align: center; */
    border: 3px solid rgb(255, 184, 98);
    border-radius: 30px;
    box-shadow: 1em 1em 0 rgba(255, 184, 98, 0.6);
    
}

.item p {
    padding: 20px;
    margin: 0;
}
.item h3 {
    margin-top: 10px;
}
/* 右カラム */
.item-r {
    margin: 100px 0 0 0;
}
/* =====
お取引企業様の声
===== */
/* タイトル */
#voice .title {
    margin: 100px 0 150px 0;
}
/* 背景 */
.background {
    position: relative;
    margin-bottom: 200px;
}
.background::before {
    content: "";
    background-color: #F5DDA7;
    position: absolute;
    top: -50px;
    width: calc(100% - 10%);
    height: calc(100% + 100px);
    z-index: 0;
    opacity: .8;

}
/* 背景左 */
.bg-l::before {
    left: 0;
    border-radius: 0 100px 0 0;
}
/* 背景右 */
.bg-r::before {
    right: 0;
    border-radius: 100px 0 0 0;
}
/* 案１ */
.voice-item > div {
    z-index: 2;
}
.voice-item {
    justify-content: center;
    align-items: center;
}
/* 写真 */
.voice-img {
    width: 30%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-image: url(../img/IMG_7815.jpeg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
}
/* テキスト */
.voice-text {
    max-width: 500px;
    width: 70%;
    margin: 0 100px;
}
/* 案２ */
.voiceItem {
    grid-template-columns: 1fr 1fr 1fr;

}
.voiceItem .voice-img {
    width: 300px;
}
.voice {
    place-content: center;
    place-items: center;
    margin-top: 50px;
}
/* あしらい */
/* #voice .airplane_r::after {
    content: "";
    width: 30%;
    height: 90px;
    max-width: 360px;
    max-height: 91px;
    position: absolute;
    bottom: -35%;
    right: -50px;
    background-image: url(../img/airplane_r.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
} */
/*=====
レスポンシブ
=====  */
@media screen and ( max-width:1024px) {
    .pageValuesItem > div {
        width: 100%;
    }
    /* 右カラム */
    .item-r {
        margin: 50px 0;
    }
    /* お取引企業様の声 */
    #voice .title {
        margin: 100px 0;
    }
    .voice-img {
        width: 100%;
    }
    .background {
        margin-bottom: 150px;
    }
    .background::before {
        width: 100vw;
    }
    /* 案２ */
    .voiceItem {
        grid-template-columns: 1fr;
    }
    /* あしらい */
    /* #voice .airplane_r::after {
        bottom: -18%;
        right: 5px;
    } */
}