.snow-monkey-form {
    max-width: 800px;
    margin: auto;
}

.smf-form .smf-text-control__control,
.smf-form .smf-textarea-control__control {
    border-radius: 0;
}

.snow-monkey-form .smf-action button.smf-button-control__control {
    background: #ff8921;
    color: #fff;
    border: 1px solid #ff8921;
    border-radius: 0;
    padding: 12.5px 100px 12.5px 75px;
    font-size: 1.1em;
    font-family: Lato, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.snow-monkey-form .smf-action button.smf-button-control__control::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #fff;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1);
    transform: scale(0, 1);
    transform-origin: right top;
}

.snow-monkey-form .smf-action button.smf-button-control__control::after {
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.snow-monkey-form .smf-action button.smf-button-control__control:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

.snow-monkey-form .smf-action button.smf-button-control__control:hover {
    color: #ff8921;
}

.smf-form>div {
    margin-bottom: 15px;
}

.smf-form>div>div:first-child {
    margin-bottom: 5px;
}

.smf-form em {
    font-style: normal;
    background: #ff5e6d;
    color: #fff;
    padding: .15em .5em;
    display: inline-block;
    margin-left: .5em;
}

.smf-action {
    text-align: center;
    margin-top: 50px;
}

textarea {
    font-family: arial;
}