@charset "utf-8";

h2 {
    color: #fff;
    font-weight: bold;
    font-size: 1.3em;
    margin: 20px 0 2em;
    clear: both;
    background-color: #009acc;
    padding: 5px 1em;
}

.point {}

.point ul {
    width: calc(100% - 4em);
    margin: 0 auto;
}

.point li {
    background-color: aliceblue;
    padding: 3em 2em;
    margin: 0 0 2em;
    position: relative;
}

.block {
    margin: 0 0 5em;
}

.point dt {
    border-bottom: dotted 2px #0075a9;
    padding: 1em 0 0;
}

.point .number {
    position: absolute;
    display: inline-block;
    margin: 1rem 0 1rem 0;
    padding: 1px 1em;
    color: #fff;
    border-radius: 0 100vh 100vh 0;
    background: #0075a9;
    -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
    top: -9px;
    left: -9px;
}

.point .number:before {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 0;
    content: '';
    border-top: 10px solid #005276;
    border-left: 10px solid transparent;
}

.point dt p {
    font-size: 1.2em;
    padding: 0 0 0.4em;
    font-weight: bold;
    margin: 0;
}

.point dd {
    padding: 1.7em 0 0;
}

@media (max-width: 699px) {
    .point ul {}


}

.features {}

.features ul {
    width: 90%;
    margin: 0 auto 2em;
}

.features li {
    padding-left: 1em;
    text-indent: -1em;
}

.features li:before {
    content: "●";
}



.work {}

.work ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 0 auto 1em;
    flex-wrap: wrap;
}

.work ul li {
    padding: 0.6em 1.4em;
    font-weight: bold;
    background-color: #fed5d5;
    margin: 0 0.5em 1em;
    border-radius: 5px;
    font-size: 1.1em;
    line-height: 1;
    color: #666;
}

.work .img_area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.work .img_area img {
    width: calc(100% / 3 - 2%);
    margin: 0 1%;
}

@media (max-width: 599px) {
    .work ul {
        width: 100%;
    }
}

.flow {}

.flow ul {
    width: 90%;
    margin: 0 auto;
}

.flow li {
    width: 100%;
    text-align: center;
    margin: 1em 1% 3em;
    position: relative;
    color: #fff;
    background-color: #3c9fa9;
    padding: 9px 0;
    border-radius: 5px;
    font-weight: bold;
}

.flow li:not(:last-child):after {
    content: "▼";
    position: absolute;
    bottom: -2em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    color: #bababa;
    font-size: 20px;
}

.flow li:last-child {
    background-color: #ff433a;
}