@charset "utf-8";

.message_area{
	display: none;
	background-color: #ffdddd;
	color: #ff3333;
	padding: 15px;
}

.common-button input{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #10218B;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: 1.5em;
    border: 1px solid #10218B;
    border-radius: 5px;
    text-align: center;
    position: relative;
    width: 100%;
}
.common-button:after{
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #10218B;
    border-bottom: 1.5px solid #10218B;
    transform-origin: center;
    transform: rotate(-45deg);
    position: absolute;
    right: 1.7em;
    top: calc(50% - 4px);
}

@media only screen and (max-width:768px) {
    .common-button:after{
        right: 2em;
        top: calc(78% - 4px);
    }
}
.common-button input:hover{
    border: 1px solid #fff;
    color: #fff;
    background: #10218B;
    cursor:pointer;
    transition: .3s;
    opacity: 0.8;
}

.common-button:hover:after{
    border-color: #fff;
    cursor:pointer;
}

