@charset "UTF-8";
/* shiftkey **
/* base
===============================================================*/
.business-flex {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.business-flex div{
    min-width: 180px;
    margin-right: 50px;
    width: 60%;
}
.business-flex a {
    padding: 3rem 3rem 3rem 1rem;
    border: 1px solid #ccc;
    display: block;
    position: relative;
    border-radius: 1rem;
    box-shadow: 0px 1px 3px rgba(255,255,255,1);
    transition: .5s all;
    color: #323232;
}
.business-flex a::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #666;
    border-left: 2px solid #666;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    right: 15px;
    top: 50%;
    margin-top: -6.5px;
    transition: .5s all;
}
.business-flex a:hover{
	color:#52ae96;
	border-color: #52ae96;
	box-shadow: 0px 1px 3px rgba(0,0,0,.2);
}
.business-flex a:hover::after{
	border-color: #52ae96;
}
.management > ul, .management > ol, .management > ol > li{
    list-style:decimal !important;
    margin-left: 10px;
}
.soezi{
    text-align: right;
}
.tokubetu-midashi{
    border-left: 1rem solid #7ccb58 !important;
}
@media (max-width: 600px) {
    .business-flex {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
    }
    .business-flex div{
        width: 80%;
        min-width: 180px;
        margin-right: 0px;
    }
}
@media (max-width: 400px) {
    .business-flex div{
        width: 100%;
        min-width: 180px;
        margin-right: 0px;
    }
}