body {
    font-family: 'Fenix', "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    margin-top: 0 !important;
    padding-bottom: 0;
    background: transparent;
}

.container {
    background-color: transparent;
    padding-top: 0;
}

.form-page-1 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    color: #333;
}

.form-column {
    margin: 1em 0;
    padding: 0 10px 0 0;
    display: grid;
    gap: 0 10px;
    grid-template-columns: 115px 1fr;
    grid-template-rows: auto auto;
    justify-content: center;
    width: 50%;
    flex-direction: row;
    box-sizing: border-box;
    flex-wrap: wrap;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="date"] {
    background-color: #e6faff;
    border: 1px solid #fff;
}

textarea {
    background-color: #e6faff;
    border: 1px solid #fff; 
}

.label {
    width: 100%;
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    grid-row: 1 / 3;
    flex-direction: column;
}

.badge-required, legend .badge-required {
    background-color: #ff543d;
    margin-left: 0;
}

.form-column-e6de12e3-4046-4d93-9e9d-f34a535121c6 {
    width: 100%;
    max-width: 100%;
}

.button-group {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.button {
    background-color: #ff543d;
    border: 2px solid #ff543d;
    box-sizing: border-box;
    width: 256px;
}

.button:hover,
.button:active,
.button:focus {
    color: #ff543d;
    background: #fff;
    border: 2px solid #ff543d;
    box-sizing: border-box;
}
   
button.button-submit {
    background-color: #ff543d;
}

@media screen and (max-width: 1020px) {
    .form-column {
        grid-template-columns: 65px 1fr;
    }

    .button-group {
        width: 256px;
    }
}

@media screen and (max-width: 500px) {
    .form-page-1 {
        flex-direction: column;
    }

    .form-column {
        width: 100%;
        max-width: 500px;
    }
}