@charset "UTF-8";

* {
    box-sizing: border-box;
}

body.hinomaru {
    width: 100%;
    background: #fff;
    color: #000;
    line-height: 1.6;
    font-size: 16px;
    font-family:
        "メイリオ", "Meiryo", verdana, "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic",
        Sans-Serif;
    margin: 0;
    padding: 0;
    animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

ul,
li,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

.head {
    width: 100%;
    height: 80px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.head__inner {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head__logo {
    width: 180px;
}

.head__logo img {
    width: 100%;
    height: auto;
}

.head__cta a {
    display: block;
    min-width: 185px;
    padding: 10px 35px 10px 20px;
    background:
        url("../../img/hinomaru/btn_arr.png") no-repeat center right 10px / 15px,
        linear-gradient(
            to top,
            #df1c24,
            #e49f00 50%,
            #ffa400 75%,
            #eda23b 100%
        );
    border-radius: 30px;
    border-bottom: rgba(159, 56, 58, 1) 2px solid;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    text-shadow: 0 -1px 0 #000;
    transition: all 0.3s ease;
}

.head__cta a:hover {
    background:
        url("../../img/hinomaru/btn_arr.png") no-repeat center right 10px / 15px,
        #e76767;
}

.kv {
    margin-top: 80px;
    width: 100%;
}

.kv img {
    width: 100%;
    height: auto;
}

.kv__sp {
    display: none;
}

@media screen and (max-width: 640px) {
    .kv__pc {
        display: none;
    }
    .kv__sp {
        display: block;
    }
}

.cta-banner {
    width: 100%;
    background-color: #fff;
    text-align: center;
    padding: 30px 20px;
}

.cta-banner__text {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 15px;
}

.cta-banner__btn {
    display: block;
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 50px 20px 30px;
    line-height: 1.5;
    background:
        url("../../img/hinomaru/btn_arr.png") no-repeat center right 20px / 25px,
        linear-gradient(
            to top,
            #df1c24,
            #e49f00 50%,
            #ffa400 75%,
            #eda23b 100%
        );
    border-radius: 50px;
    border-bottom: rgba(159, 56, 58, 1) 3px solid;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 -2px 0 #000;
    transition: all 0.3s ease;
}

.cta-banner__btn:hover {
    background: url("../../img/hinomaru/btn_arr.png") no-repeat center right
        20px / 25px #e76767;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.point-header {
    width: 100%;
    text-align: center;
    padding-top: 20px;
}

.point-header img {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.point-section {
    max-width: 1000px;
    width: 80%;
    margin: 0 auto;
    padding: 105px 0px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.point-section__image {
    width: 100%;
    max-width: 750px;
    position: relative;
}

.point-section__icon {
    width: 24%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transform: translate(-48%, -44%);
}

.point-section__photo {
    width: 100%;
    height: auto;
}

.point-section__body {
    padding: 10px 10px;
    align-self: center;
    width: 100%;
    max-width: 750px;
    border: 2px solid rgb(0, 78, 143);
    border-top: none;
}

.point-section__body p {
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}

details.point-accordion {
    max-width: 750px;
    width: 80%;
    margin: 0 auto 20px;
}

.accordion {
    margin: 20px 0;
    border-radius: 5px;
    background-color: #fee1e1;
}

.accordion__label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 5px;
    background-color: #e66a6a;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
}

.accordion__label::-webkit-details-marker {
    display: none;
}

.accordion__label::after {
    transform: translateY(-25%) rotate(45deg);
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-bottom: 4px solid #fff;
    border-right: 4px solid #fff;
    content: "";
    transition: transform 0.3s;
}

.accordion[open] .accordion__label::after {
    transform: rotate(225deg);
}

.accordion__content {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 20px;
    transition:
        transform 0.5s,
        opacity 0.5s;
    background-color: #fee1e1;
    color: #000000;
}

.accordion[open] .accordion__content {
    transform: none;
    opacity: 1;
}

.accordion__content p {
    margin: 0;
    font-size: 20px;
    line-height: 1.8;
}

.accordion__content ul {
    margin: 0;
    padding: 0;
}

.accordion__content li {
    padding: 5px 0;
    border-bottom: 1px dotted #e66a6a;
    font-size: 20px;
    line-height: 1.6;
}

.accordion__content li:last-child {
    border-bottom: none;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    padding: 40px 0 20px;
    margin: 0;
}

.benefits-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.benefits-section > .accordion > .accordion__label {
    font-size: 24px;
    justify-content: center;
    position: relative;
}

.benefits-section > .accordion > .accordion__label::after {
    position: absolute;
    right: 20px;
}

.benefits-list li {
    padding: 8px 5px;
}

.recruit-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.form-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.form-section__title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px;
    padding-top: 40px;
}

.form-section__wrap {
    border: 1px solid #c2c2c2;
}

.form-section__body {
    margin: 0;
}

.wpforms-field-limit-text {
    display: none;
}

.step-form01 .wpforms-error {
    width: 90%;
    max-width: 750px;
    margin: 0 auto;
    display: block;
}

.form-section__body .wp-block-table {
    margin: 0;
}

.form-section__body table {
    margin: 0;
    border: none;
    border-collapse: collapse;
}

.form-section__body .wp-block-table td,
.form-section__body .wp-block-table th {
    border: none !important;
    padding: 0 !important;
}

.form-section__body figure {
    margin: 0;
    border: none;
}

.wpforms-container .step-flow {
    display: none !important;
}

.wpforms-container .wpforms-form {
    border: none !important;
}

.complete {
    position: relative;
}

.complete img {
    max-width: 100%;
}

.complete h2 {
    margin: 200px 0 50px;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 3px;
    line-height: 40px;
    text-align: center;
}

.complete .box {
    width: 90%;
    margin: 50px 5%;
    float: left;
    line-height: 30px;
    text-align: center;
}

.complete .return {
    width: 100%;
    margin: 50px 0 100px;
    float: left;
}

.complete .return a {
    width: 240px;
    height: 60px;
    margin: 0 auto;
    background-color: #004e8f;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    display: block;
    text-align: center;
    line-height: 60px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.5s ease;
}

.complete .return a:hover {
    background-color: rgba(0, 78, 143, 0.7);
    font-size: 18px;
}

@media screen and (max-width: 640px) {
    .complete h2 {
        margin: 150px 0 0;
    }
}

.foot {
    width: 100%;
    background: #f5f5f5;
    padding: 30px 20px;
    text-align: center;
}

.foot__copy {
    font-size: 13px;
    color: #333;
    line-height: 1.8;
}

@media screen and (max-width: 640px) {
    .head {
        height: 60px;
    }

    .head__logo {
        width: 120px;
    }

    .head__cta a {
        font-size: 11px;
        padding: 8px 12px;
    }
    .head__inner {
        padding: 0 10px;
    }

    .kv {
        margin-top: 60px;
    }

    .cta-banner__text {
        font-size: 18px;
    }

    .cta-banner__btn {
        font-size: 18px;
        padding: 15px 20px;
    }

    .point-section {
        padding: 60px 0px 30px;
    }

    .point-section__body {
        border: 1px solid rgb(0, 78, 143);
    }

    .point-section__body p {
        font-size: 16px;
    }

    .section-title {
        font-size: 22px;
        padding: 30px 0 15px;
    }

    .form-section__title {
        font-size: 18px;
    }

    .step-flow__text {
        font-size: 14px;
    }
    .accordion__label {
        font-size: 16px;
        padding: 12px;
    }
    .accordion__label::after {
        width: 7px;
        height: 7px;
        border-bottom: 3px solid #fff;
        border-right: 3px solid #fff;
    }
    .accordion__content p {
        font-size: 16px;
    }
    .benefits-section > .accordion > .accordion__label {
        font-size: 20px;
    }
}
@charset "UTF-8";
* {
    box-sizing: border-box;
}

input[type="checkbox"],
input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 3px;
    vertical-align: middle;
    cursor: pointer;
}

select {
    cursor: pointer;
}

img {
    display: block;
}

@media screen and (min-width: 640px) {
    p {
        font-size: 0.8rem;
    }
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

h4 {
    margin: 0 0 15px 0;
}

.button {
    display: inline-block;
    width: 100%;

    border: 1px solid #556380;
    border-radius: 5px;
    transition: none;
    text-align: center;
    text-decoration: none;

    font-size: 17px;
    font-weight: bold;
    font-family:
        "メイリオ", "Meiryo", verdana, "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic",
        Sans-Serif;
    color: white;
    overflow: hidden;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.3);
    background-color: #fec439;
    background-image: linear-gradient(to bottom, #556380, #414b64);
    padding: 0;
    cursor: pointer;
}
.button:visited {
    color: white;
}
.button:hover {
    color: white;
    background-color: #fecc52;
    background-image: linear-gradient(to bottom, #68728d, #545d73);
    text-decoration: none;
}

.button_back {
    text-align: center;
    color: #145ea3;
    font-size: 0.8rem;
    cursor: pointer;
}
@media screen and (max-width: 640px) {
    .button_back {
        padding-top: 5px;
    }
}

input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}

.button_solid,
.step__button-area > div > input[type="submit"] {
    line-height: inherit;
    padding: 1.5em 2em;
    background: #4ec443;
    border: none;
    border-radius: 5px;
    color: white;
    display: block;

    font-weight: bold;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 5px 0 #3caa31;
    margin: 10px auto 15px;
    cursor: pointer;
}
.button_solid:hover,
.step__button-area > div > input[type="submit"]:hover {
    background: #73d06a;
}
@media screen and (max-width: 640px) {
    .button_solid,
    .step__button-area > div > input[type="submit"] {
        margin: 0 auto 10px;
    }
}

@media screen and (min-width: 640px) {
    .button_solid,
    .step__button-area > div > input[type="submit"] {
        width: 350px !important;
    }
}

.button_solid:hover,
.button_tap {
    padding: 1.5em 2em;
    background: #4ec443;
    border-radius: 5px;
    color: white;
    display: block;

    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transform: translate3d(0, 5px, 0);
    box-shadow: 0 1px 0 #3caa31;
    margin: 10px auto 15px;
    cursor: pointer;
}
@media screen and (max-width: 640px) {
    .button_solid:hover,
    .button_tap {
        margin: 0 auto 10px;
    }
}

.change-with-device__sp {
    display: block;
}
@media screen and (min-width: 640px) {
    .change-with-device__sp {
        display: none;
    }
}

.change-with-device__pc {
    display: none;
}
@media screen and (min-width: 640px) {
    .change-with-device__pc {
        display: block;
    }
}

.content {
    width: 1024px;
    margin: 0 auto;
}
@media screen and (max-width: 640px) {
    .content {
        width: 100%;
    }
}

.error,
.error_message {
    display: inline-block;
    width: 100%;
    color: red;
    font-size: 0.9rem;
    margin: 2px 0;
}

.footer {
    width: 100%;
    text-align: center;
    background: #484848;
    color: white;
    font-size: 0.9rem;
    padding: 20px 0;
}
@media screen and (max-width: 640px) {
    .footer {
        font-size: 0.6rem;
    }
}

.form {
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 540px;
    margin: 30px auto;
}
@media screen and (max-width: 640px) {
    .form {
        background: rgba(255, 255, 255, 0.6);
        width: 100%;
        margin: 0;
    }
}

.form2 {
    background: white;
    width: 100%;
    margin: 30px auto;
    border-radius: 5px;
}
@media screen and (max-width: 640px) {
    .form2 {
        background: rgba(255, 255, 255, 0.6);
        width: 100%;
        margin: 0;
    }
}

.formtable {
    height: auto;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 640px) {
    .formtable {
        height: auto;
    }
}

.form__required {
    display: inline-block;
    font-size: 0.6rem;
    color: #202bb8;
    font-weight: normal;
    background: white;
    border: 1px solid #202bb8;
    padding: 2px 10px;
    margin: 0 5px 3px;
    border-radius: 2px;
}

.form__body {
    padding: 0 15px 8px;
    font-size: 0.7rem;
    margin: 0;
}

.form__body > div {
    zoom: 1;
    content: " ";
    display: block;
    clear: both;
}
.form__body > div:before,
.form__body > div:after {
    content: "";
    display: table;
}
.form__body > div:after {
    clear: both;
}

.form__body > span {
    display: block;
    text-align: left;
    font-weight: bold;
    font-size: 0.8rem;
    margin-top: 5px;
}

.form__heading {
    font-size: 16px;
    font-weight: bold;
    color: #004e8f;
    padding: 15px 15px 0;
    text-align: left;
}
@media screen and (max-width: 640px) {
    .form__heading {
        padding: 10px 15px 0;
    }
}

.form__body > input[type="text"],
.form__body > input[type="tel"],
.form__input,
.form__body > textarea,
input[type="email"] {
    border: 1px solid #c2c2c2;
    padding: 15px 10px;
    width: 100%;
    font-size: 16px;
    border-radius: 4px;
}
.form__body > input[type="text"]:placeholder-shown,
.form__body > input[type="text"]::-webkit-input-placeholder,
.form__body > input[type="tel"]:placeholder-shown,
.form__body > input[type="tel"]::-webkit-input-placeholder,
.form__input:placeholder-shown,
.form__input::-webkit-input-placeholder,
.form__body > textarea:placeholder-shown,
.form__body > textarea::-webkit-input-placeholder,
input[type="email"]:placeholder-shown,
input[type="email"]::-webkit-input-placeholder {
    color: #d4d4d4;
}

.form__body > textarea {
    height: 100px;
}

.form__selectbox,
select {
    width: 100%;
    height: 50px;
    background: white;
    border: 1px solid #c2c2c2;
    font-size: 16px;
    padding: 10px;
}

.form__textbox,
.form__items > input {
    width: 100%;
    height: 50px;
    padding: 10px;
    border: 1px solid gainsboro;
    font-size: 16px;
    border-radius: 3px;
}

.header {
    background: white;
}

.header__inner {
    width: 1024px;
    margin: 0 auto;
    padding: 10px;
    zoom: 1;
    content: " ";
    display: block;
    clear: both;
}
.header__inner:before,
.header__inner:after {
    content: "";
    display: table;
}
.header__inner:after {
    clear: both;
}
@media screen and (max-width: 640px) {
    .header__inner {
        width: 100%;
    }
}

.header__logo {
    width: 178px;
    height: 36px;
}

.header__image {
    width: 100%;
    height: auto;
    padding-top: 10px;
}
@media screen and (max-width: 640px) {
    .header__image {
        padding-top: 12px;
    }
}

.header__text {
    padding: 15px;
}
@media screen and (max-width: 640px) {
    .header__text {
        width: 220px;
        text-align: left;
        font-size: 0.6rem;
        padding: 5px 0 0 0;
    }
}

.horizontal-container {
    width: 100%;
    padding: 0;
    zoom: 1;
    content: " ";
    display: block;
    clear: both;
}
.horizontal-container:before,
.horizontal-container:after {
    content: "";
    display: table;
}
.horizontal-container:after {
    clear: both;
}

.horizontal-container__item {
    float: left;
}

.horizontal-container__item-right {
    float: right;
}

@media screen and (max-width: 640px) {
    .horizontal-container__item_sp,
    .horizontal-container__item-right_sp {
        width: 100%;
        float: none;
    }
}

.list {
    list-style: none;
}

.list_decimal {
    list-style-type: decimal;
}

.list_upper-alpha {
    list-style-type: upper-alpha;
}

.note {
    display: inline-block;
    color: #999999;
    font-size: 0.7rem;
    font-weight: normal;
    margin-top: 2px;
}
@media screen and (max-width: 640px) {
    .note {
        font-size: 0.7rem;
    }
}

.note_no-space {
    margin-top: 0;
    padding: 0;
}
@media screen and (max-width: 640px) {
    .note_no-space {
        text-align: left;
    }
}

.step {
    width: 100%;
}

.step-flow {
    width: 100%;
    zoom: 1;
    content: " ";
    display: block;
    clear: both;
}
.step-flow:before,
.step-flow:after {
    content: "";
    display: table;
}
.step-flow:after {
    clear: both;
}

.step-flow_landing {
    width: 100%;
}

.step-flow__item {
    float: left;
    position: relative;
    width: 33.3%;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    text-align: center;
    color: #004e8f;
    background: whitesmoke;
}
.step-flow__item::after {
    border-left: 10px solid whitesmoke;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    content: "";
    position: absolute;
    left: 39%;
    top: 25%;
    margin-left: 50px;
    z-index: 1;
}
@media screen and (max-width: 640px) {
    .step-flow__item::after {
        left: 41%;
    }
}
@media screen and (min-width: 640px) {
    .step-flow__item::after {
        margin-left: 95px;
    }
}

@media screen and (min-width: 640px) {
    .step-flow__item_landing::after {
        margin-left: 130px;
    }
}

.step-flow_landing-next-step {
    margin-top: 75px;
    margin-top: 80px;
}
@media screen and (min-width: 640px) {
    .step-flow_landing-next-step::after {
        margin-left: 130px;
    }
}

.step-flow__item_dark {
    background: #e8e8e8;
}
.step-flow__item_dark::after {
    border-left: 10px solid #e8e8e8;
}

.step-flow__item_now {
    background: #eee021;
    color: #004e8f;
    font-size: 16px;
    font-weight: bold;
}
.step-flow__item_now::after {
    border-left: 10px solid #202bb8;
}

.step-flow__step1 {
    z-index: 5;
}

.step-flow__step2 {
    z-index: 4;
}

.step-flow__step3 {
    z-index: 3;
}

.step-flow__step4 {
    z-index: 2;
}
.step-flow__step4::after {
    border: none;
}

.step-flow__text {
    position: relative;
    z-index: 10;
    font-size: 16px;
}

.step-flow__item_now .step-flow__text {
    font-size: 18px;
}

.step {
    width: 100%;
    margin: 0 auto;
}

.step__inner {
    width: 600px;
    height: 300px;
    margin: 0 auto;
}
@media screen and (max-width: 640px) {
    .step__inner {
        width: 100%;
        height: 290px;
        padding: 0 10px;
    }
}

.step__button-area {
    width: 100%;

    height: auto;
    margin: 0 auto;
    padding: 0 15px;
}
@media screen and (max-width: 640px) {
    .step__button-area {
        height: auto;
    }
}

.step__text {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: #202bb8;
}
@media screen and (max-width: 640px) {
    .step__text {
        font-size: 12px;
        margin-top: 0;
    }
}

.step__temes-link {
    text-align: center;
    font-size: 0.6rem;
    padding: 5px;
}

.wpforms-container {
    padding-bottom: 100px;
}

:root {
    --wpforms-button-background-color: #4ec443;
    --wpforms-button-border-color: #4ec443;
    --wpforms-button-text-color: #ffffff;
    --wpforms-button-border-style: none;
    --wpforms-page-break-color: #066aab;
    --wpforms-container-padding: 0px;
    --wpforms-container-border-style: none;
    --wpforms-field-border-color: #c2c2c2;
    --wpforms-field-background-color: #ffffff;
    --wpforms-field-text-color: #000;
}

.wpforms-page-indicator {
    display: none !important;
}

.wpforms-screen-reader-announce {
    display: none;
}

.wpforms-form {
    border: none;
    box-shadow: none;
    padding: 0;
}

.step-form01 .form__heading {
    font-size: 16px;
    font-weight: bold;
    color: #004e8f;
    padding: 15px 0 0;
    text-align: left;
    width: 90%;
    max-width: 750px;
    margin: 0 auto;
}

.step-form01 .form__required {
    display: inline-block;
    font-size: 0.6rem;
    color: #202bb8;
    font-weight: normal;
    background: white;
    border: 1px solid #202bb8;
    padding: 4px 10px;
    margin: 0 5px 3px;
    vertical-align: middle;
    border-radius: 2px;
}

.step-form01 .wpforms-field {
    padding: 10px 0;
}

.step-form01 .wpforms-field select,
.step-form01 .wpforms-field input[type="text"],
.step-form01 .wpforms-field input[type="email"],
.step-form01 .wpforms-field input[type="tel"] {
    display: block;
    width: 90%;
    max-width: 750px;
    margin: 0 auto;
    background: white;
    border: 1px solid #c2c2c2;
    font-size: 16px;
    padding: 5px;
}

.step-form01 .wpforms-field select {
    appearance: auto;
    -webkit-appearance: menulist;
}

.step-form01 .wpforms-field-checkbox ul {
    display: flex;
    justify-content: center;
    max-width: 90%;
    margin: 0 auto;
}

.wpforms-field-limit-text {
    display: none;
}

div.wpforms-container-full input[type="checkbox"] {
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
}

div.wpforms-container-full input[type="checkbox"]:before,
div.wpforms-container-full input[type="checkbox"]:after {
    display: none !important;
}

.step-form01 .kiyaku {
    margin: 0 auto;
    width: fit-content;
    max-width: 90%;
}

.step-form01 {
    --wpforms-button-background-color: #4ec443;
    --wpforms-button-border-color: #4ec443;
    --wpforms-button-text-color: #ffffff;
    --wpforms-button-border-style: none;
}

div.step-form01 .wpforms-form .wpforms-page-button.wpforms-page-next,
div.step-form01 .wpforms-form button.wpforms-submit {
    background: #4ec443;
    border: none;
    border-radius: 5px;
    box-shadow: 0 5px 0 #3caa31;
    color: white;
    font-weight: bold;
    padding: 2em 2em 2.5em;
    font-size: 1rem;
    cursor: pointer;
    display: block;
    text-align: center;
    margin: 10px auto 30px;
}

.step-form01 .wpforms-page-next:hover,
.step-form01 .wpforms-submit:hover {
    background: #73d06a;
}

@media screen and (min-width: 640px) {
    .step-form01 .wpforms-page-next,
    .step-form01 .wpforms-submit {
        width: 350px;
    }
}

div.wpforms-container-full .wpforms-page-button.wpforms-page-prev,
div.wpforms-container-full .wpforms-page-button.wpforms-page-prev:hover,
div.wpforms-container-full .wpforms-page-button.wpforms-page-prev:active,
div.wpforms-container-full .wpforms-page-button.wpforms-page-prev:focus {
    --wpforms-button-background-color: transparent;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #145ea3 !important;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 5px 0 !important;
    display: block;
    text-align: center;
    margin: 0 auto;
    height: auto !important;
    width: auto !important;
}
