

/** DL style*/
.c-profile-block dl {
    display: flex;
    letter-spacing: 0;
    gap: 20px;
}
.c-profile-block dt {
    font-size: 15px;
    font-weight: bold;
    border-bottom: 1px solid #0076C2;
    width: 240px;
    padding: 22px 20px 23px;
    text-align: center;
}

.c-profile-block dd {
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #111;
    padding: 22px 20px 23px;
    flex: 1;
}
.p-profile__info {
    gap: 40px;
}

.c-profile-block{
    padding: 0 20px;
}
.c-map{
    height: 440px;
    width: 100%;
    border-radius: 50px;
}

.p-profile__imgs{
    gap: 20px;
}
.p-profile__img{
    width: 440px;
    aspect-ratio: 440 / 294;
}
.p-profile__img img{
    width: 100%;
    display: block;
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.p-profile__txt{
    font-size: 17px;
    line-height: 2;
}

.p-profile__imgsInner{
    position: relative;
}
 .p-profile__imgsInner .swiper-button-next, .p-profile__imgsInner .swiper-button-prev{
    display: none !important;
}
@media screen and (max-width: 1024px) {
    .c-profile-block dt {
        width: 180px;
    }
    .c-profile-block{
        padding: 0;
    }
    .c-map{
        height: 340px;
        border-radius: 20px;
    }
    .p-profile__txt{
        font-size: 15px;
    }
}
@media screen and (max-width: 800px) {
    .p-profile__imgsInner .swiper-button-next, .p-profile__imgsInner .swiper-button-prev{
        display: flex !important;
        transform: translateY(-50%);
    }
}
@media screen and (max-width: 768px) {
    .c-profile-block dt{
        width: 100px !important;
        font-size: 12px !important;
        padding: 10px 5px 15px !important;
    }
    .c-profile-block dd{
        font-size: 12px !important;
        padding: 10px 5px 15px !important;
    }
    .c-profile-block dl {
        gap: 0 !important;
    }
    .c-map{
        height: 200px;
    }
    .p-profile__info{
        flex-wrap: wrap;
        gap: 20px;
    }
    .p-profile__img{
        max-width: 150px;
        margin: auto;
    }
    .p-profile__content{
        width: 100%;
    }
    .p-profile__txt{
        font-size: 14px;
    }
    .p-profile__signature{
        max-width: 220px;
    }
    .p-profile__imgs{
        gap: 10px;
        width: 70%;
        max-width: 500px;
        margin: auto;
    }
    .p-profile__imgs .p-profile__img{
        max-width: unset;
    }
}
/** End DL style*/

/** Table style*/
.c-profile-block--table dt{
    /* background-color: rgba(215, 0, 0, 0.1); */
    border: 0;
    border-right: 0;
    border-bottom: 0;
    text-align: center;
    font-size: 16px;
    padding: 28px 20px;
    width: 220px;
}
.c-profile-block--table dd{
    border: 0;
    border-left: 0;
    border-bottom: 0;
    padding: 28px 23px 28px 0;
    font-size: 16px;
    font-weight: bold;
}
.c-profile-block--table dl {
    gap: 10px;
    background-color: #F1F7FA;
    /* border-radius: 20px; */
    border-radius: 20px;
}
.c-profile-block--table dl:nth-child(even){
}
.c-profile-block--table dl ~ dl{
    margin-top: 20px;
    /* border-top: 1px solid #ccc; */
}
.c-profile-block--table dl:last-child dt,
.c-profile-block--table dl:last-child dd{
    /* border-bottom: 1px solid #CCCCCC; */
}
@media(max-width: 768px){
    .c-profile-block--table dl{
        /* border-radius: 10px; */
    }
}
/** End Table style*/