.fvwarp {
    padding: 5em;
    text-align: center;
}

.fvwarp .subtitle {
    font-size: 30px;
    color: #E96000;
    font-weight: bold;
}

.fvwarp .title {
    font-size: 20px;
    color: #EFC33F;
    margin: 1em 0;
}

.note{
    font-size: .8em;
    margin-bottom: .5em;
}

.content {
    max-width: 1000px;
    width: 95%;
    margin: 3em auto;
    line-height: 1.5;
    min-height: calc(100vh - 550px);
}

/**situationbox**/
.situationbox {
    width: fit-content;
    margin: 1em auto;
}

.situationbox ul {
    list-style: none;
    margin: 1em auto;
    width: fit-content;
}

.situationbox ul li {
    font-size: 20px;
    font-weight: bold;
    margin: 0 1em;
    color: #707070;
}

.situationbox ul li.active {
    color: #E96000;
    border-bottom: 2px solid #E96000;
}

.formbox .title {
    font-size: 20px;
    color: #E96000;
    border-bottom: 1px solid #E96000;
    padding: 0.5em 0;
}

.formbox table {
    width: 100%;
}

.formbox th,
.formbox td {
    vertical-align: middle;
    box-sizing: border-box;
}

.formbox th {
    width: 30%;
    text-align: left;
    padding: 1em 0;
}

.formbox td {
    width: 70%;
    padding: 0.5em 0;
}

.formbox th span {
    margin-left: 1em;
    background: #F8F9FA;
    font-size: 10px;
    padding: 1em 2em;
    color: #707070;
    width: fit-content;
    border-radius: 10px;
}

.formbox .form {
    border: 1px solid #ddd;
    background: #eaedf2;
    width: 100%;
    height: 35px;
    padding: 0.5em 1em;
    box-sizing: border-box;
    border-radius: 5px;
}
.formbox .form.error{
    border: 1px solid #E96000;
}

.formbox textarea.form {
    height: 10em;
}

.formbox .button {
    width: fit-content;
    margin: 5em auto;
    display: flex;
}

.formbox button {
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border-radius: 10px;
    padding: 1em 3em;
    cursor: pointer;
    margin: 0 1em;
}

.formbox button.reset {
    background: #F8F9FA;
    border: 1px solid #707070;
    color: #707070;
}

.formbox button.reset:hover {
    background: #707070;
    color: #fff;
    transition: all 0.5s ease;
}

.formbox button.submit {
    border: 1px solid #E96000;
    color: #E96000;
    background: #fff;
}

.formbox button.submit:hover {
    background: #E96000;
    color: #fff;
    transition: all 0.5s ease;
}

/*727px以下　SP表示処理*/
@media screen and (max-width: 727px) {

    .formbox th,
    .formbox td {
        display: block;
        width: 100%;
    }
    .formbox button{
        padding: 1em 2em;
    }

}

/**サンクスページ**/
.tnksbox {
    max-width: 600px;
    margin: auto;
}

.tnksbox .button {
    width: 90%;
    max-width: 250px;
    margin: 2em auto 10em;
}

.tnksbox .button a {
    display: block;
    width: 100%;
    border: 1px solid #E96000;
    color: #E96000;
    text-align: center;
    border-radius: 30px;
    padding: 1em;
    text-decoration: none;
    position: relative;
}

.tnksbox .button a:hover {
    background: #E96000;
    color: #fff;
    transition: all 0.5s ease;
}

.tnksbox .button a::after {
    content: "\f105";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translate(0, -50%);
    display: block;
}