@charset "UTF-8";


.voice-flex {
    display: flex;
    gap: 80px 20px;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    justify-content: center;
}

.voice-flex .card {
    display: flex;
    flex: 0 0 calc((100% - 60px) / 4);
    flex-direction: column;
    color: #666;
    position: relative;
}

.voice-flex .card.new::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 50px;
    background-color: #E8380F;
    clip-path: polygon(0 0, 80px 0, 0 50px);
    z-index: 1;
}

.voice-flex .card.new::after {
    content: 'NEW';
    position: absolute;
    left: 9px;
    top: 5px;
    color: #fff;
    font-size: 13px;
    z-index: 2;
    font-weight: 600;
    font-family: 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', 'Hiragino Sans', 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic';
}
.voice-flex .card .img-container {
    overflow: hidden;
}
.voice-flex .card .img-container img {
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
    transition: all .3s ease-in-out;
}
.voice-flex .card:hover .img-container img {
    transform: scale(1.1);
}

.voice-flex .card .text-container {
    padding-top: 20px;
}

.voice-flex .card .text-container .title{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 7px;
}

.voice-flex.small .card .text-container .title{
    font-size: 18px;
}

.voice-flex .card p {
    font-size: 16px;
    line-height: 1.6;
}

.voice-flex .card .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 17px;
}

.voice-flex .card .tag-list li {
    flex: 0 1 auto;
    font-size: 13px;
    line-height: 1;
    color: #fff;
    padding: 4px 7px;
    font-weight: 500;
}

.voice-flex .card .tag-list li.tag-1 {
    background: #7DCC79;
}
.voice-flex .card .tag-list li.tag-2 {
    background: #6CCCCA;
}
.voice-flex .card .tag-list li.tag-3 {
    background: #67D4FF;
}
.voice-flex .card .tag-list li.tag-4 {
    background: #6FAED9;
}
.voice-flex .card .tag-list li.tag-5 {
    background: #68C2DA;
}
.voice-flex .card .tag-list li.tag-6 {
    background: #B4C1D4;
}
.voice-flex .card .tag-list li.tag-7 {
    background: #D8B84B;
}
.voice-flex .card .tag-list li.tag-8 {
    background: #FEB661;
}
.voice-flex .card .tag-list li.tag-9 {
    background: #6FAEDB;
}

@media screen and (max-width: 982px) {
    .voice-flex .card{
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

@media screen and (max-width: 460px) {
    .voice-flex .card{
        flex: 0 0 100%;
    }
}