.profile-radar-box {
    margin: 22px 0 26px;
    padding: 18px 16px 16px;
    border: 1px solid #ead7dc;
    border-radius: 14px;
    background:
        linear-gradient(180deg, #fffafa 0%, #fff 58%, #fff7f9 100%);
    box-shadow: 0 4px 14px rgba(150, 90, 105, 0.08);
}

.profile-radar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e5c7cf;
}

.profile-radar-sub {
    margin: 0 0 3px;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.08em;
    color: #b88693;
    font-family: Georgia, "Times New Roman", serif;
}

.profile-radar-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    color: #7a3f4d;
    font-weight: 700;
}

.profile-radar-genre {
    flex: 0 0 auto;
    padding: 6px 12px;
    border-radius: 999px;
    background: #8c3f55;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.profile-radar-body {
    display: flex;
    align-items: center;
    gap: 18px;
}

.profile-radar-chart {
    position: relative;
    width: 200px;
    height: 200px;
    flex: 0 0 250px;
}

.profile-radar-list {
    flex: 1;
    margin: 0;
    padding: 0;
    list-style: none;
}

.profile-radar-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dotted #ead4db;
    font-size: 14px;
}

.profile-radar-list li:last-child {
    border-bottom: none;
}

.profile-radar-list span {
    color: #5f4a4f;
}

.profile-radar-list strong {
    color: #b23b5b;
    font-size: 13px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
    .profile-radar-box {
        margin: 18px 0 22px;
        padding: 15px 12px;
        border-radius: 12px;
    }

    .profile-radar-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .profile-radar-title {
        font-size: 17px;
    }

    .profile-radar-body {
        flex-direction: column;
        gap: 12px;
    }

    .profile-radar-chart {
        width: 100%;
        max-width: 260px;
        height: 240px;
        flex-basis: auto;
    }

    .profile-radar-list {
        width: 100%;
    }

    .profile-radar-list li {
        font-size: 13px;
    }
}
