@charset "utf-8";
/* CSS Document */
.voice-section {
    max-width: 1100px;
    margin: 0 auto;
    color: #333333;
}
.voice-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 50px 0;
}
.voice-header {
    font-size: 42px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.voice-header img{
    margin-right: 20px;
}
.voice-box {
    border-bottom: 3px dotted #ccc;
    padding-bottom: 20px;
    margin-top: 20px;
}

.voice-box:last-child{
    border-bottom: none;
}
.voice-meta {
    font-size: 16px;
    margin-bottom: 10px;
}

.voice-meta span {
    margin-right: 20px;
}
.voice-meta .bold{
    font-weight: bold;
}
.voice-comment {
    background-color: #fff5e5;
    padding: 15px;
    border-radius: 10px;
    line-height: 1.6;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-family: sans-serif;
    margin-top: 40px;
    margin-bottom: 40px;
}
.pagination a,
.pagination span {
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
}
.pagination a:hover {
    background-color: #f0f0f0;
}
.pagination .active {
    background-color: #a00000;
    color: #fff;
    font-weight: bold;
}
.pagination .before,.pagination .next {
    position: relative;
}
.pagination .before{
    padding-left: 20px;
}
.pagination .next{
    padding-right: 20px;
}
.pagination .next::after {
    content: '';
    position: absolute;
    top: 46%;
    right: 12%;
    transform: rotate(45deg) translateY(-50%);
    width: 7px;
    height: 7px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    border-color: #333;
}
.pagination .before::after {
    content: '';
    position: absolute;
    top: 32%;
    left: 12%;
    transform: rotate(-135deg) translateY(-50%);
    width: 7px;
    height: 7px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    border-color: #333;
}
.pagination .dots {
    pointer-events: none;
}

/* PCレイアウト */
@media (min-width: 768px) {
.pc-none{
    display: none;
}
    .voice-header::before,
.voice-header::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: #c00;
}
.voice-header::before{
    margin: 0 70px 0 0;
}
.voice-header::after{
    margin: 0 0 0 70px;
}
}
/* スマホレイアウト */
@media (max-width: 767px) {
    .voice-header{
        margin: 30px 0 20px;
        font-size: 6.5vw;
        border-bottom: 2px solid #ca1510;
        padding-bottom: 20px;
    }
    .voice-header img{
        width: 35px;
        margin-right: 10px;
    }
    .voice-box{
        margin: 20px;
    }
    .voice-meta{
        font-size: 3.5vw;
    }
    .voice-comment{
        font-size: 3.2vw;
        line-height: 1.4;
    }
    .voice-box:last-child{
        margin-bottom: 10px;
    }
    .pagination{
        margin-top: 0;
        margin-bottom: 30px;
    }
    .pagination{
        gap: 10px;
    }
    .pagination a,.pagination span{
        font-size: 3.5vw;
    }
}