/*공통*/
.profile-card-area{padding: 1rem}
.profile-card{
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    box-sizing: border-box;
    /*position: relative;*/
    overflow: hidden;
}
.profile-card .inner{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.125rem 1rem;
    position: relative;
    background-color: white;

}
.profile-card .more-button{
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: fit-content;
    opacity: 1;
}
.profile-card .more-button .more-button-list{
    position: absolute;
    flex-direction: column;
    align-items: center;
    right: 0;
    top: 120%;
    background-color: rgba(0,0,0,0.7);
    padding: 0.75rem 0;
    border-radius: 0.75rem;
    display: none;
    backdrop-filter: blur(5px);
}
.profile-card .more-button .more-button-list.on{
    display: flex;
}
.profile-card .more-button .more-button-list button{
    white-space: nowrap;
    text-align: right;
    width: 100%;
    flex-grow: 1;
    color: white;
    padding: 0.75rem 1rem 0.75rem 1.5rem;
    font-size: 0.938rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.profile-card .more-button .more-button-list button.red{
    color: var(--alert-red);
}
.profile-card .more-button .more-button-list button:last-of-type{
    border: none;
}
.profile-card .more-button .trigger{
    font-size: 0.75rem;
    color: var(--dark4);
    background-color: var(--dark1);
    border-radius: 10rem;
    padding: 0.3rem 0.75rem;
}

/*D000*/
.profile-card-D000{}
.profile-card-D000 .inner{
    gap: 1rem;
}
.profile-card-D000 .inner .top-area{
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    justify-content: flex-start;
}
.profile-card-D000 .inner .top-area img{
    display: inline-block;
    width: 5rem;
    height: 5rem;
}
.profile-card-D000 .inner .top-area .title-area{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}
.profile-card-D000 .inner .top-area .title-area strong{
    font-size: 1.25rem;
}
.profile-card-D000 .inner .top-area .title-area p{
    color: var(--dark2);
}
.profile-card-D000 .inner .content{
    color: var(--dark5);
}
.profile-card-D000 .inner .content a{
    color: var(--theme);
    font-size: 0.875rem;
    white-space: nowrap;
}






/*D001*/
.profile-card-D001{}
.profile-card-D001 .inner{
    gap: 1rem;
}
.profile-card-D001 .inner .top-area{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.profile-card-D001 .inner .top-area > img{
    width: 7rem;
    height: 7rem;
}
.profile-card-D001 .inner .top-area .title-area{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.profile-card-D001 .inner .top-area .title-area strong{
    font-size: 1.25rem;
}
.profile-card-D001 .inner .top-area .title-area p{
    font-size: 1.063rem;
    font-weight: bold;
    text-align: center;
}
.profile-card-D001 .inner .score-area{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark5);
    flex-wrap: wrap;
}
.profile-card-D001 .inner .score-area span{
    font-size: 0.633rem;
    display: flex;
    gap: 0.33rem;
    align-items: center;
    white-space: nowrap;
}
.profile-card-D001 .inner .score-area span:before{
    content: '';
    display: inline-block;
    width: 0.33rem;
    height: 0.33rem;
    border-radius: 10rem;
}
.profile-card-D001 .inner .score-area span:nth-of-type(1):before{background-color: var(--D)}
.profile-card-D001 .inner .score-area span:nth-of-type(2):before{background-color: var(--I)}
.profile-card-D001 .inner .score-area span:nth-of-type(3):before{background-color: var(--S)}
.profile-card-D001 .inner .score-area span:nth-of-type(4):before{background-color: var(--C)}
.profile-card-D001 .inner .content{
    margin-bottom: 1.5rem;
    color: var(--dark5);
}
.profile-card-D001 .inner .info-area{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.profile-card-D001 .inner .info-area p{
    font-size: 0.75rem;
    color: var(--dark2);
}


/*D002*/
.profile-card-D002{}
.profile-card-D002 .inner{
    padding: 1.25rem;
    justify-content: space-between;
    gap: 8rem;
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: bottom 0 right -20%;
}
.profile-card-D002 .inner .top-area{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}
.profile-card-D002 .inner .top-area .name{
    font-size: 1rem;
    font-weight: bold;
}
.profile-card-D002 .inner .top-area .content{
    font-size: 1.25rem;
    font-weight: bold;
    word-break: keep-all;
    word-break: auto-phrase;
}
.profile-card-D002 .inner .top-area .score-area{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark5);
    flex-wrap: wrap;
}
.profile-card-D002 .inner .top-area .score-area span{
    font-size: 0.633rem;
    display: flex;
    gap: 0.33rem;
    align-items: center;
    white-space: nowrap;
}
.profile-card-D002 .inner .top-area .score-area span:before{
    content: '';
    display: inline-block;
    width: 0.33rem;
    height: 0.33rem;
    border-radius: 10rem;
}
.profile-card-D002 .inner .top-area .score-area span:nth-of-type(1):before{background-color: var(--D)}
.profile-card-D002 .inner .top-area .score-area span:nth-of-type(2):before{background-color: var(--I)}
.profile-card-D002 .inner .top-area .score-area span:nth-of-type(3):before{background-color: var(--S)}
.profile-card-D002 .inner .top-area .score-area span:nth-of-type(4):before{background-color: var(--C)}
.profile-card-D002 .inner .bottom-area{
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
    width: 100%;
}
.profile-card-D002 .inner .bottom-area p{
    font-size: 0.813rem;
    color: var(--dark3);
}

/*D003*/
.profile-card-D003{}
.profile-card-D003 .inner{
    padding: 1.25rem;
    justify-content: space-between;
    gap: 1rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom 0 right -20%;
}
.profile-card-D003 .inner .top-area{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}
.profile-card-D003 .inner .top-area .name{
    font-size: 1rem;
    font-weight: bold;
}
.profile-card-D003 .inner .top-area .content_1{
    font-size: 1.25rem;
    font-weight: bold;
}
.profile-card-D003 .inner .top-area .content_3{
    font-size: 1rem;
    font-weight: bold;
    word-break: keep-all;
}
.profile-card-D003 .inner .top-area .score-area{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark5);
    flex-wrap: wrap;
}
.profile-card-D003 .inner .top-area .score-area span{
    font-size: 0.633rem;
    display: flex;
    gap: 0.33rem;
    align-items: center;
    white-space: nowrap;
}
.profile-card-D003 .inner .top-area .score-area span:before{
    content: '';
    display: inline-block;
    width: 0.33rem;
    height: 0.33rem;
    border-radius: 10rem;
}
.profile-card-D003 .inner .top-area .score-area span:nth-of-type(1):before{background-color: var(--D)}
.profile-card-D003 .inner .top-area .score-area span:nth-of-type(2):before{background-color: var(--I)}
.profile-card-D003 .inner .top-area .score-area span:nth-of-type(3):before{background-color: var(--S)}
.profile-card-D003 .inner .top-area .score-area span:nth-of-type(4):before{background-color: var(--C)}
.profile-card-D003 .inner .bottom-area{
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
    width: 100%;
}
.profile-card-D003 .inner .middle-area {
    font-size: 0.938rem;
    color: var(--dark5);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.profile-card-D003 .inner .middle-area .content_5 {
    color: var(--dark3);
}
.profile-card-D003 .inner .middle-area .content_6 {
    color: var(--dark3);
}
.profile-card-D003 .inner .bottom-area p{
    font-size: 0.813rem;
    color: var(--dark3);
}


/*D004*/
.profile-card-D004{}
.profile-card-D004 .inner{
    padding: 1.25rem;
    justify-content: space-between;
    gap: 8rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom 0 right -20%;
}
.profile-card-D004 .inner .top-area{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}
.profile-card-D004 .inner .top-area .name{
    font-size: 1rem;
    font-weight: bold;
}
.profile-card-D004 .inner .top-area .content_1{
    font-size: 1.25rem;
    font-weight: bold;
}
.profile-card-D004 .inner .top-area .content_3{
    font-size: 1rem;
    font-weight: bold;
    word-break: keep-all;
}
.profile-card-D004 .inner .top-area .score-area{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark5);
    flex-wrap: wrap;
}
.profile-card-D004 .inner .top-area .score-area span{
    font-size: 0.633rem;
    display: flex;
    gap: 0.33rem;
    align-items: center;
    white-space: nowrap;
}
.profile-card-D004 .inner .top-area .score-area span:before{
    content: '';
    display: inline-block;
    width: 0.33rem;
    height: 0.33rem;
    border-radius: 10rem;
}
.profile-card-D004 .inner .top-area .score-area span:nth-of-type(1):before{background-color: var(--D)}
.profile-card-D004 .inner .top-area .score-area span:nth-of-type(2):before{background-color: var(--I)}
.profile-card-D004 .inner .top-area .score-area span:nth-of-type(3):before{background-color: var(--S)}
.profile-card-D004 .inner .top-area .score-area span:nth-of-type(4):before{background-color: var(--C)}
.profile-card-D004 .inner .bottom-area{
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
    width: 100%;
}
.profile-card-D004 .inner .bottom-area p{
    font-size: 0.813rem;
    color: var(--dark3);
}


/*D999*/

.profile-card-D999{}
.profile-card-D999 .inner{
    gap: 1rem;
}
.profile-card-D999 .inner .top-area{
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    justify-content: flex-start;
}
.profile-card-D999 .inner .top-area img{
    display: inline-block;
    width: 5rem;
    height: 5rem;
}
.profile-card-D999 .inner .top-area .title-area{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}
.profile-card-D999 .inner .top-area .title-area strong{
    font-size: 1.25rem;
}
.profile-card-D999 .inner .top-area .title-area p{
    color: var(--dark2);
}
.profile-card-D999 .inner .content{
    color: var(--dark5);
}
.profile-card-D999 .inner .content a{
    color: var(--theme);
    font-size: 0.875rem;
    white-space: nowrap;
}