@charset "UTF-8";
main div {
    display: flex;
    justify-content: space-between;
}
main div p {
    width: 50%;
    text-align: center;
}
main div dl {
    width: 40%;
    margin: 0 auto;
}
main div dl dt {
    position: relative;
    display: inline-block;
    font-weight: bold;
    margin: 30px 0 20px;
    font-size: 118%;
}
main div dl dt::before {
    display: inline-block;
    position: absolute;
    content: "";
    bottom: -8px;
    left: 40%;
    width: 10px;
    height: 10px;
    transform: translate(-50%);
    background-color: #bc8f8f;
    border-radius: 10px;
}


main div dl dd{
    letter-spacing: 2px;
    line-height: 2;
}
main div dl dd span {
    color: #bc8f8f;
    font-weight: bold;
}
@media screen and (max-width: 680px) {
    main div {
        flex-flow: column;
    }
    main div p {
        margin: auto;
    }
    main div dl {
        width: 80%;
    }
}

section h3 {
    font-weight: bold;
    margin: 100px 0 20px;
    font-size: 180%;
    text-align: center;
}
section ul {
    column-count: 3;
    width: 90%;
    margin: auto;
}
section ul li {
    width: 98%;
    text-align: center;
    margin: auto;
    padding-bottom: 20px;
}