@charset "UTF-8";
/*------------------------------------------------------section*/
.page_index ul {
    margin-bottom: 30px;
}
.page_index ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.page_index ul li {
    margin: 1px;
}
.page_index ul li a {
    position: relative;
    display: block;
    padding: 10px 9px 20px;
    line-height: 1.1;
    text-decoration: none;
    color: #fff;
    background: #009e52;
}
.page_index ul li a::after {
    position: absolute;
    left: 50%;
    bottom: 5px;
    display: block;
    text-align: center;
    width: 0;
    height: 0;
    margin-left: -4px;
    border: solid 4px transparent;
    border-top: solid 4px #fff;
    content:"";
}
@media print, screen and (min-width:768px) {
.page_index ul li a:hover {
    transition: all 0.5s;
    opacity: 0.6;
}
}

.flow {
    counter-reset: number;
    list-style: none;
}
.flow li {
    margin-bottom: 20px;
    padding: 15px;
    background: #eee;
}
.flow li h4 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size:16px;
    font-weight: bold;
}
.flow li h4::before {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    counter-increment: number;
    content: counter(number);
    color: #fff;
    background: #009e52;
    margin-right: 8px;
}
.flow li p {
    margin-bottom: 20px;
}
.flow li p:last-child {
    margin-bottom: 0;
}

.sheet_basic.price {
    width: auto;
    margin: 0 auto;
}
.sheet_basic.price tr td:last-child {
    text-align: right;
}

