/*--------------------------------
    =form step
  ------------------------------- */
.form-step {
    display: flex;
    text-align: center;
    border: #222 solid 1px;
}

.form-step:after {
    display: none;
}

.form-step li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 35px;
    padding: 0 10px;
    position: relative;
}

.form-step li:not(:last-child):before,
.form-step li:not(:last-child):after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-width: 17px 0 17px 10px;
    border-style: solid;
    top: 0;
    position: absolute;
    z-index: 10;
}

.form-step li:not(:last-child):before {
    border-color: transparent transparent transparent #222;
    right: -10px;
}

.form-step li:not(:last-child):after {
    border-color: transparent transparent transparent #fff;
    right: -9px;
}

.form-step li.current {
    background: #ff6a6a;
    color: #fff;
    font-weight: bold;
}

.form-step li.current:not(:last-child):after {
    border-left-color: #ff6a6a;
}
/*--------------------------------
    =contact
------------------------------- */

.title h2 {
    text-align: center;
    margin: 60px;
    font-size: 26px;
}

.contact {
    margin: 60px 0;
}

.contact form {
    margin: 60px auto;
    width: 100%;
    max-width: 800px;
}

.form-row {
  /* border-bottom: 1px dotted #333; */
    padding: 15px 0;
}

.form-row .label {
    display: block;
    margin-bottom: 10px;
}

.form-row .required {
    color: #e9a7ca;
    font-size: 14px;
}

.form-row input,
.form-row textarea,
.form-row select {
    border: 1px solid #333;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}
.form-row input.error-bd,
.form-row textarea.error-bd,
.form-row select.error-bd {
    border: 2px solid #ff4500;
}

.form-row textarea {
    height: 150px;
}

.form-row .required {
    color: red;
}

.contact .text-center {
    margin-top: 40px;
    text-align: center;
}

.contact .btn-primary {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    background-color: #3796c3;
    color: #fff;
    width: 350px;
    height: 75px;
    letter-spacing: 0.3rem;
}
.contact-tel {
    margin: 20px 0;
    text-align: center;
    line-height: 2;
}
.contact-tel .font-weight {
    font-weight: bold;
    color: #3796c3;
}
.example {
    font-size: 14px;
    color: #909090;
}
.confirm-list .form-row .label {
    font-size: 14px;
}
.confirm-area {
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}
.confirm-area p {
    font-weight: bold;
    padding: 10px;
}
.btn-submit {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    background-color: #ff6a6a;
    color: #fff;
    width: 350px;
    height: 75px;
    letter-spacing: 0.3rem;
    margin-top: 40px;
}
.btn-back {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.3rem;
    margin-top: 20px;
    border-bottom: 1px solid #333333;
    width: 80px;
}
.btn-back:hover {
    opacity: .7;
}

/*--------------------------------
    =modal
------------------------------- */

.hide-area {
    display: none;
}
.modaal-close:after,
.modaal-close:before {
    background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
    background: #666;
}
.modaal-container {
    max-width: 500px !important;
}
.modaal-container h2 {
    text-align: center;
    font-size: 24px;
}
.modaal-container ul {
    margin: 20px;
    font-weight: bold;
}
.modaal-container li {
    margin: 10px 0;
}
.errmsg {
    color: #ff4500;
}
.errall {
    text-align: center;
    margin-top: 20px;
    font-size: 1.25em;
    font-weight: bold;
}

@media screen and (max-width: 600px) {
    .title h2 {
        font-size: 20px;
    }
    .contact-tel p {
        font-size: 14px;
        line-height: 1.5;
    }
}
