@charset "utf-8";
/* ------------------------------
 患者さんの紹介について（PC）
------------------------------ */
.arrowBox {
    position: relative;
}
.arrowBox::after {
    content: "";
    width: 16px;
    height: 32px;
    background-color: #007A46;
    clip-path: polygon(16px 50%, 0% 0%, 0% 32px);
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% + 8px);
    margin: auto;
}

/* ------------------------------
 患者さんの紹介について（SP）
------------------------------ */
@media screen and (max-width: 767px) {
    .arrowBox::after {
        transform: rotate(90deg);
        top: 100%;
        bottom: auto;
        left: 0;
        right: 0;
    }
}
