.class_tabCharacter img,
.graph_mainClass img,
.graph_subClass img,
.emblem_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* class  */
.content_classMainLayout {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    padding: 20px 0px;
    margin-bottom: 80px;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

/* title  */
.class_titleLayout {
    position: relative;

    width: 400px;
    height: 95px;
    padding: 5px;
    margin-bottom: 20px;

    background: url("../../img/class/title_class.png");
    background-position: center;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 80px;
    font-weight: 800;
    color: #9e1847;
}

.class_titleLayout span {
    padding-top: 10px;
}

/* End-title  */

/* tab layout  */
.class_tabMainLayout {
    width: 650px;
    overflow: auto;
    display: flex;
    align-items: center;
    gap: 0px;
    margin-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: #6d564b #a8a8a8;
}

.class_tabCharacter {
    width: 100px;
    min-width: 100px;
    cursor: pointer;
    transition: all .5s;
}

.class_tabCharacter:hover {
    filter: drop-shadow(1px 1px 8px #ffb4448f);
}

.class_tabCharacter.active:hover {
    filter: drop-shadow(1px 1px 5px transparent);
}

/* End-tab layout  */

.class_contentMainLayout {
    width: 700px;
    height: 100%;
    border-radius: 20px;
    padding: 20px 80px;

    background: linear-gradient(90deg, rgba(3, 160, 223, 1) 0%, rgba(255, 255, 255, 1) 100%, rgba(129, 208, 242, 1) 58%);

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 10px;
}

.class_detailLayout {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    padding: 20px;

    background: #fff;
    overflow: auto;

    scrollbar-width: thin;
    scrollbar-color: #6d564b #a8a8a8;

    font-size: 22px;
    line-height: 22px;
    text-align: center;
}

.class_characterMainLayout {
    position: absolute;
    top: 60%;
    right: -8%;
    transform: translate(0%, -50%);

    width: 650px;
}

/* Graph  */
.class_grapgMainLayout {
    position: relative;
    width: 100%;
    height: 230px;

    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
}

.class_grapgMainLayout.high {
    height: 300px;
}

.graph_mainLayoutClass {
    position: relative;
    width: 100px;
    min-width: 100px;
    min-height: 100px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: transparent;
    cursor: pointer;
}

.graph_mainClass {
    position: relative;
    z-index: 3;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 2px;
    margin-bottom: 10px;

    background: linear-gradient(180deg, #d5d5d5 0%, #848484 62%);
    border: 1px solid #fff;

    transition: all .5s;
}

.graph_mainLayoutClass span {
    font-size: 28px;
    font-weight: 800;
    line-height: 20px;
    color: #646464;
    transition: all .5s;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 80px;
    text-align: center;
}

.graph_mainLayoutClass:hover .graph_mainClass {
    background: linear-gradient(180deg, #80f8ff 0%, #11abe3 62%);
}

.graph_mainLayoutClass:hover span {
    color: #2c72b2;
}

.graph_mainLayoutsub {
    position: relative;
    width: 100%;
    height: 200px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.graph_mainLayoutsub.high {
    height: 250px;
}

.graph_layoutsub {
    position: relative;
    z-index: 2;
    width: 100%;

    display: flex;
    align-items: center;
    gap: 5px;
}

.graph_subLayoutClass {
    position: relative;
    z-index: 3;

    width: 80px;
    min-width: 80px;
    height: 80px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;

    background: transparent;
    cursor: pointer;
}

.graph_subClass {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    padding: 2px;
    margin-bottom: 8px;

    background: linear-gradient(180deg, #d5d5d5 0%, #848484 62%);
    border: 1px solid #fff;

    transition: all .5s;
}

.graph_subLayoutClass span {
    font-size: 22px;
    font-weight: 800;
    line-height: 15px;

    color: #646464;
    transition: all .5s;
    text-align: center;
}

.graph_subLayoutClass:hover .graph_subClass,
.graph_subClass.active,
.graph_mainClass.active {
    background: linear-gradient(180deg, #80f8ff 0%, #11abe3 62%);
}

.graph_subLayoutClass:hover span,
.graph_subClass.active+span,
.graph_mainClass.active+span {
    color: #2c72b2;
}

.graph_subClassLock {
    width: 82px;
    height: 82px;
    object-fit: contain;
}

/* line  */
.graph_line01 {
    position: absolute;
    z-index: 1;
    top: 35%;
    right: 50%;
    transform: translate(50%, -50%);

    width: 120px;
    height: 4px;
    background: #fff;

    flex-shrink: 0;
}

.graph_line02 {
    position: absolute;
    z-index: 1;
    top: 40%;
    right: -12px;
    transform: translate(0%, -50%);

    width: 3px;
    min-width: 4px;
    height: 122px;

    background: #fff;
    flex-shrink: 0;
}

.graph_line02.high {
    top: 39%;
    right: -12px;
    height: 173px;
}

.graph_line03 {
    position: absolute;
    z-index: 1;
    top: 27px;
    left: 0%;
    transform: translate(-10%, 0%);

    width: 100%;
    height: 4px;
    background: #fff;

    flex-shrink: 0;
}

.graph_line04 {
    position: absolute;
    z-index: 1;
    bottom: 50px;
    left: 0%;
    transform: translate(-10%, 0%);

    width: 100%;
    height: 4px;
    background: #fff;

    flex-shrink: 0;
}

.graph_line05 {
    position: absolute;
    z-index: 1;
    bottom: 55%;
    left: 0%;
    transform: translate(-10%, 5%);

    width: 100%;
    height: 4px;

    background: #fff;
    flex-shrink: 0;
}

/* line  */
/* End-Grapg  */

/* emblem Title Class  */
.class_emblemMainLayout {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emblem_img {
    width: 130px;
    min-width: 130px;
}

.emblem_title {
    font-size: 75px;
    line-height: 40px;
    font-weight: 800;
    color: #fff;
}

.emblem_detailLv {
    font-size: 40px;
    line-height: 30px;
    font-weight: 800;
    color: #fff;
}