@charset "UTF-8";
/* CSS Document */

body {
    margin-top: 150px;
}


.sec1 {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.sec1__title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 3.6rem;
    font-weight: 500;
    text-align: left;
    line-height: 1;
    margin-bottom: 50px;
}

.sec1__title span {
    width: 30px;
    height: 5px;
    display: block;
    background: #3B8EC0;
}


input,
button,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
}

textarea {
    resize: vertical;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}

table {
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 50px;
}

table tbody {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

table tbody tr {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

table tbody tr th {
    width: 100%;
    font-size: 1.8rem;
    font-weight: 400;
}

.wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    background: #F8F8F8;
    border: solid 1px #d6dadb99;
}

textarea {
    resize: none;
    height: 250px;
}

[type=checkbox] {
    width: auto;
}

.form__text {
    text-align: left;
    margin: 50px auto;
}

.form__text a {
    color: #3B8EC0;
    transition: 0.3s;
    transition-timing-function: ease-out;
}

.form__text a:hover {
    opacity: 0.5;
}

input[type='submit'] {
    border: solid 1px #3B8EC0;
    color: #3B8EC0;
    background: #FFFFFF;
    padding: 20px 0;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .sec1__title {
        font-size: 2.6rem;
    }
}