@charset "UTF-8";


/* page_voice *
---------------------------------------- */
#page_voice {}

#page_voice #main {
    padding: 0 0 5em;
    /* background: #fff; */
}
@media only screen and (max-width: 767px) {
    
}



.voice_content {
    display: flex;
    flex-wrap: wrap;
    gap: 3.5em 3.5em;
}
.voice_content .item {
    width: calc((100% - 3.5em) / 2);
    margin: 0 0 0;
    padding: 2px;
    background: linear-gradient(to right, #17b004, #82cffe);
    border-radius: 16px;
    box-sizing: border-box;
    position: relative;
}
.voice_content .item .outer {
    height: 100%;
    padding: 2em 2em;
    background: #fff;
    border-radius: 14px;
    position: relative;
    box-sizing: border-box;
}

.voice_content .title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5em;
    margin-bottom: 5px;
    height: 3.0em;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.voice_content p {
    line-height: 1.8em;
    font-size: 15px;
    color: #000;
    font-feature-settings: "palt";
    letter-spacing: 0.075em;
}

.voice_content .profile {
    margin-bottom: 15px;
    display: flex;
    gap: 0 1em;
}
.voice_content .profile figure {
    width: 80px;
}
.voice_content .profile img { width: 100%; }
.voice_content .profile .inner {
    width: calc(100% - (80px + 1em));
}


@media only screen and (max-width: 767px) {
    .voice_content {
        flex-direction: column;
        gap: 2.0em 0;
    }

    .voice_content .item {
        width: 100%;
    }
    .voice_content .item .outer {
        padding: 1.0em 0.75em;
    }
    
    .voice_content .title {
        font-size: 4.25vw;
        height: auto;
    }

    .voice_content .profile figure {
        width: 50px;
    }
    .voice_content .profile .inner {
        width: calc(100% - (50px + 1em));
    }
    .voice_content .profile p {
        font-size: 13px;
        line-height: 1.3em;
    }
    
}



