@charset "utf-8";
/* CSS Document */
span.pink{
font-weight: 700;
}
/* カスタム追加 CSS: 「16タイプ・カラーキャラクター診断®で できること」用 */
.featuresList-dim-title {
    font-weight: normal;
    font-size: 0.875rem;
    color: #666666;
    text-align: left;
    /*width: 7.5rem;*/
    background-color: #EFEFEE;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}
.content_lead ol.featuresList{
text-align: left;
}
/* カスタム追加 CSS: 「スキルと資格の活かし方」用 フラットレイアウト */
.skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}
.skills-block {
    flex: 1 1 calc(50% - 1rem);
}
.skills-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    text-align: center;
    font-weight: bold;
    border-bottom: none !important;
}
.skills-title.self { color: #ff99cc; }
.skills-title.work { color: #5d58a9; }
.skills-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.skills-card {
    background: #f5f5f5;
    padding: 1.25rem;
    border-radius: 4px;
}
.skills-badge {
    display: inline-block;
    background: #ff99cc;
    color: #fff;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    font-weight: bold;
}
.skills-block.work .skills-badge {
    background: #5d58a9;
}
.skills-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}
@media (max-width: 768px) {
    .skills-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
}