@charset "UTF-8";
/*-----------------------------共通設定-----------------------------*/
.profile-list {
    padding: 20px;
}
.profile-item {
    display: flex;
}
.profile-item dt {
    padding: 20px;
    width: 20%;
    border-bottom: 1px dashed #AB954F;
}
.profile-item dd {
    padding: 20px;
    width: 80%;
    border-bottom: 1px dashed #AB954F;
}
.profile-item:last-child dt,
.profile-item:last-child dd {
    border-bottom: none;
}
/*-------------------------------------------------------------------*/
/*---------------------------タブレット用------------------------------*/
/*-------------------------------------------------------------------*/
@media screen and (max-width:1024px) {

}
/*-------------------------------------------------------------------*/
/*-----------------------------スマホ用------------------------------*/
/*-------------------------------------------------------------------*/

@media screen and (max-width:767px) {
.profile-item {
    flex-direction: column;
}
.profile-item dt {
    padding-bottom: 0;
    width: 100%;
    border-bottom: none;
}
.profile-item dd {
    width: 100%;
    border-bottom: 1px dashed #AB954F;
}

}