@charset "utf-8";
@charset "utf-8";

/**voice*********************************/
.voice {}

.voice_list {
    padding: 2rem 0;
}

.voice_list>li {
    margin: 0 0 4rem;
    background-color: #ffeaef;
    padding: 2rem 1rem;
}

.voice_list>li .img {
    margin: 0 0 1rem;
}

.voice_list>li .img img {
    object-fit: contain;
}

.voice_list .comment {
    margin: 0 0 1rem;
    padding: 1rem;
    font-size: clamp(0.875rem, 0.827rem + 0.24vw, 1.125rem);
}

.voice_list .name {
    color: #f8458d;
    margin: 0 0 0.7em;
    font-size: clamp(1.25rem, 1.19rem + 0.3vw, 1.563rem);
    font-family: "M PLUS Rounded 1c", sans-serif;
    transform: rotate(0.05deg);
    font-weight: bold;
}

.voice_list .name .year {
    background-color: #f8458d;
    color: #fff;
    font-size: 0.8em;
    padding: 0.2em 1em;
    border-radius: 2em;
    margin: 0 0.5em 0 0;
}

.voice_list p a {
    text-decoration: underline;
}

.interview_area {
    width: 90%;
  margin: 0 auto;
  padding: 20px 0;
  padding: clamp(1.25rem, 0.768rem + 2.41vw, 3.75rem) 0 0;
}

.interview_area h2 {
    color: #f8458d;
    margin: 0 0 0.7em;
    font-size: clamp(1.25rem, 1.19rem + 0.3vw, 1.563rem);
    font-family: "M PLUS Rounded 1c", sans-serif;
    transform: rotate(0.05deg);
    font-weight: bold;
    border-bottom: solid 3px;
    position: relative;
    padding: 0 0 0 1em;
}

.interview_area h2:before {
    /*画像を絶対配置*/
    position: absolute;
    content: '';
    display: block;
    width: 1em;
    /*幅*/
    height: 1em;
    /*どれだけデカくなってもはみ出ないであろう高さを指定*/
    background-image: url(../images/voice/icon_microphone.svg);
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.interview_area ul {}

.interview_area li {
    margin: 0 0 1rem;
    background-color: #fff;
    padding: 1rem;
    border-radius: 5px;
}

.interview_area dl {}

.interview_area dt {
    color: #f8458d;
    font-weight: bold;
    padding: 0 0 0.6em;
    padding-left: 0px;
    padding-left: 1.1em;
    text-indent: -1.5em;
}

.interview_area dt:before {
    content: "Q.";
    padding: 0 0.4em 0 0;
}

.interview_area dd {}

/*460px以上*/
@media (min-width: 460px) {
    .voice_list>li {
        display: flex;
        flex-wrap: wrap;
    }

    .voice_list>li .img {
        margin: 0;
        width: 35%;
    }

    .voice_list .comment {
        margin: 0 0 1rem;
        width: 65%;
        padding: 0 0 0 1em;
    }
}

/*800px以上*/
@media (min-width: 800px) {
    .voice_list>li {
        padding: 2rem 0rem;
    }

    .voice_list>li .img {
        margin: 0;
        width: 85%;
    }

    .voice_list>li:nth-child(even) .img {
        margin: 0 0 0 15%;
    }

    .voice_list .comment {
        margin: 0;
        width: 100%;
        padding: 1em;
    }
}

/*1200px以上*/
@media (min-width: 1200px) {
    .voice_list>li {
        align-items: center;
        background-color: unset;
    }

    .voice_list>li .img,
    .voice_list>li:nth-child(even) .img {
        margin: 0;
        width: 40%;
    }

    .voice_list .comment {
        margin: 0;
        width: 59%;
        padding: 0 2em;
    }

    .voice_list>li:nth-child(even) {
        flex-direction: row-reverse;
    }
}