@charset "utf-8";
.sakunishi {
    position: relative;
    font-family: "Zen Kaku Gothic New", sans-serif;
    width: 100%;
    max-width: 552px;
    margin: 0 auto 20px;
    display: block;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    background-color: #284480;
    padding: 25px 25px 25px 120px;
    letter-spacing: 2px;
    transition: .3s;
}
.sakunishi::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 37px;
    transform: translateY(-50%) rotate(45deg);
    width: 9px;
    height: 9px;
    border-top: 2px solid #284480;
    border-right: 2px solid #284480;
    z-index: 1;
    transition: .3s;
}
.sakunishi::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
}
.sakunishi-icon {
    position: absolute;
    width: 65px;
    height: 65px;
    background-color: #fff;
    border-radius: 50%;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}
.sakunishi-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 28px;
    height: 39px;
    background: url(./chair.svg) no-repeat center / cover;
}
.sakunishi span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 24px;
}
.sakunishi:hover {
    transition: .3s;
    background-color: #0688C7;
}
.sakunishi:hover::before {
    border-top: 2px solid #0688C7;
    border-right: 2px solid #0688C7;
    transition: .3s;
}
