.wrap {
    max-width: 1350px;
    width: 90%;
    padding-top: 7.5em;
    padding-bottom: 3em;
    margin: 0 auto;
}
.wrap h1 {
    line-height: 1.25em;
}
.wrap h1 small {
    font-size: 50%;
    line-height: 1em;
    font-weight: 400;
}

/*--------------------------------------------

text-wrap

--------------------------------------------*/
.text-wrap {
    max-width: 810px;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2em;
    margin: 0 auto;
}
.text-wrap dl {
    width: 100%;
    border-top: solid 1px rgb(200, 200, 200);
    padding-top: 2em;
}
.text-wrap dt {
    font-size: 120%;
    font-weight: 600;
    padding-left: 1em;
    margin-bottom: 1em;
    position: relative;
}
.text-wrap dt::before {
    content: "";
    width: 0.5em;
    height: 1.5em;
    background: rgb(50, 50, 50);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.text-wrap ul {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding-top: 1em;
}
.text-wrap ul li {
    padding-left: 1em;
    position: relative;
}
.text-wrap ul li::before {
    content: "";
    width: 0.75em;
    height: 0.75em;
    border-radius: 50%;
    background: rgb(50, 50, 50);
    position: absolute;
    left: 0;
    top: 0.5em;
}

/*--------------------------------------------
min-width 810
--------------------------------------------*/
@media (min-width: 810px) {

}
/*--------------------------------------------
min-width 1080
--------------------------------------------*/
@media (min-width: 1080px) {

}