/** DL style*/
.c-profile-block__row {
    display: flex;
    gap: 20px 20px;
}
.c-profile-block__title {
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #0A1066;
    width: 240px;
    padding: 20px 20px 24px;
    line-height: 1.6;
    text-align: center;
    color: #0A1066;
}
.c-profile-block__title--color {
    color: #846343;
}
.c-profile-block__txt {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #111;
    padding: 20px 20px 24px;
    flex: 1;
    line-height: 1.6;
}
.p-profile__info {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
}
.p-profile__ck {
    font-size: 24px;
    font-weight: 600;
    text-align: right;
}
.p-profile__ck small {
    font-size: 18px;
    font-weight: 600;
}
.p-profile .c-list{
    gap: 2%;
    padding: 0 20px;
}
.p-profile .c-list.col4 .item {
    width: 23.5%;
}
.p-profile iframe {
    max-width: 100%;
}
.p-profile__sub {
    font-size: 18px;
    font-weight: bold;
}
.c-map{
    height: 440px;
    width: 100%;
}
@media screen and (max-width: 1024px) {
    .c-profile-block__title {
        width: 180px;
    }
    .c-profile-block{
        padding: 0;
    }
    .c-map{
        height: 340px;
    }
}
@media screen and (max-width: 767px) {
    .c-profile-block__title{
        width: 100px;
        min-width: 90px;
        font-size: 13px;
        padding: 10px 10px 15px !important;
    }
    .c-profile-block__txt{
        font-size: 12px;
        padding: 10px 10px 15px !important;
    }
    .c-profile-block__row {
        gap: 0 !important;
    }
    .c-map{
        height: 200px;
    }
}
/** End DL style*/

/** Table style*/
.c-profile-block--table .c-profile-block__title{
    background-color: rgba(215, 0, 0, 0.1);
    border: 1px solid #CCCCCC;
    border-right: 0;
    border-bottom: 0;
    text-align: center;
    padding: 28px 20px;
}
.c-profile-block--table .c-profile-block__txt{
    border: 1px solid #CCCCCC;
    border-left: 0;
    border-bottom: 0;
    padding: 28px 23px 28px 50px;
}
.c-profile-block--table .c-profile-block__row {
    gap: 0;
}
.c-profile-block--table .c-profile-block__row:last-child .c-profile-block__title,
.c-profile-block--table .c-profile-block__row:last-child .c-profile-block__txt{
    border-bottom: 1px solid #CCCCCC;
}
/** End Table style*/

/**Custom*/
.c-profile-block__txt ul{
    gap: 20px;
}
.c-profile-block__txt li{
    /* width: 175px; */
    width: 30%;
}
.c-profile-imgs{
    gap: 20px;
}
.c-profile-img{
    width: 235px;
}
.c-profile-imgs img{
    width: 100%;
}
.c-profile-block--custom .c-profile-block__title,
.c-profile-block--custom .c-profile-block__txt{
    border: 0;
    text-align: left;
}
.c-profile-block--custom .c-profile-block__title{
    padding-left: 30px;
}
.c-profile-block--custom .c-profile-block__row{
    border-bottom: 1px solid #111111;
}
@media screen and (max-width: 767px) {
    .c-profile-imgs{
        flex-wrap: wrap;
        gap: 20px 0;
    }
    .c-profile-img{
        width: 48%;
    }
    .c-profile-block__txt li{
        width: 48%;
    }
    .c-profile-block__txt ul{
        flex-wrap: wrap;
        gap: 20px 0;
    }
}
/**End Custom*/