@charset "utf-8"; 

/* =================
main
==================== */
.main {
    padding: var(--contentPadding);
}

/* pc769px */
@media screen and (min-width: 769px) {
.main {
    padding: var(--contentPaddingPC);
    margin-bottom: 100px;
}
}

/* =================
main article
==================== */
.topic {
    margin-top: 120px;
}

.voice {
    margin-top: 50px;
    padding: 20px;
    border: 1px solid var(--secondary-brown);
}

.voice__name {
    padding: 5px;
    background-color: var(--primary-beige);
    margin-top: 20px;
    font-weight: 500;
}

.voice__title {
    margin-top: 20px;
    font-weight: 500;
}

.voice__txt {
    margin-top: 20px;
}

/* pc main article */
@media screen and (min-width: 769px) {
.topic {
    margin-top: 210px;
}

.voice {
    display: flex;
    padding: 30px;
    align-items: center;
    justify-content: space-between;
}

.voice__img {
    width: 26.6%;
    object-fit: contain;
}

.voice__detail {
    margin-left: 30px;
}
    
}