@charset "utf-8";
/*  style　[  top ]
=================================================================== */

.box-contact {
    position: relative;
    max-width: 400px;
    margin: 1em auto;
    padding: 1em 2.5em 1em 1.5em;
    border-radius: 3px;
    box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
    background-color: #f5faff;
    color: #000;
    font-size: 1.2rem;
    font-weight: 500;
}

.box-contact::before,
.box-contact::after {
    position: absolute;
    content: '';
}

.box-contact::before {
    top: -15px;
    right: 10px;
    height: 50px;
    width: 15px;
    border: 3px solid #999;
    border-radius: 10px;
    box-shadow: 1px 1px 2px rgb(0 0 0 / 30%);
    transform: rotate(10deg);
}

.box-contact::after {
    top: 0;
    width: 10px;
    right: 20px;
    border: solid 5px #f5faff;
}