@charset "UTF-8";
.ust{
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
}

.ust details{
    background-color: #fff;
    border-radius: 16px;
    border: solid 2px #000;
    width: 100%;
    margin-bottom: 16px;
    transition: .2s;
}
.ust details:last-child{
    margin-bottom: 0;
}
.ust summary{
    padding: 24px;
}
.ust summary:hover{
    cursor: pointer;
}

.content{
    padding: 24px;
    display: flex;
}

.content img{
    width: 50%;
    border-radius: 8px;
}

.text{
    position: relative;
    width: 48%;
    margin-left: 2%;
}

.text p{
    font-size: 20px;
}

.text ul{
    position: absolute;
    bottom: 0;
}

.text ul li{
    display: block;
    background-color: #000;
    color: #fff;
    padding: 12px 0;
    width: fit-content;
    border-radius: 8px;
    margin-bottom: 8px;
}
.text ul li:last-child{
    margin-bottom: 0;
}

.text ul li a{
    padding: 12px 24px;
    border-radius: 8px;
    transition: .2s;
}
.text ul li a:hover{
    opacity: .5;
}