.fv {
    background: url(https://www.officetar.jp/furnished/img/fv/fv.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px 0;
}
.fv-inner {
    margin: 0 auto;
    width: 95%;
    max-width: 1400px;
}
.fv-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.fv-left {
    width: calc(100% - 480px);
}

.fv-text {
    text-align: center;
}
.fv-text .fv-bg__text {
    background: #fff;
    color: #3aa69c;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 15px;
    padding: 10px 25px;
}
.fv-text h1 {
    color: #fff;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.8em;
    margin: 0 0 20px;
}
.fv-text .fv-catch {
    color: #fff;
    font-size: 20px;
    margin: 0 0 20px;
}
.fv-text .fv-btn {
    text-align: center;
}
.fv-text .fv-btn a {
    border: 1px solid #fff;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    border-radius:8px;
    padding: 10px 35px;
}

.fv-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 420px;
}
.fv-forms {
    background: #fff;
    padding: 25px;
    width: 100%;
}
.fv-form__ttl {
    margin: 0 0 15px;
    text-align: center;
}
.fv-form__ttl p {
    color: #3aa69c;
    font-size: 24px;
    font-weight: normal;
    margin: 0;
}
.fv-form__item:not(:last-child) {
    margin: 0 0 15px;
}
.fv-form__item dt label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 8px;
}
.fv-form__item dd input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #f3f3f4;
    border: 1px solid #dadbdd;
    border-radius: 8px;
    display: block;
    font-size: 16px;
    outline: none;
    padding: 10px;
    width: 100%;
}
.fv-form__item dd input[type="checkbox"] {
    display: none;
}
.fv-form__item dd input[type="checkbox"] span {
    position: relative;
}
.fv-form__item dd input[type="checkbox"] span::before {
    border: 1px solid #000;
    border-radius: 3px;
    content: "";
    display: inline-block;
    height: 25px;
    margin-right: 15px;
    width: 25px;
}
.fv-form__item dd input[type="checkbox"]:checked~span::before {
    background: none;
    border-color: #3aa69c;
}
.fv-form__item dd input[type="checkbox"]~span::after {
    display: none;
}
.fv-form__item dd input[type="checkbox"]:checked~span::after {
    content: '';
    display: block;
    width: 10px;
    height: 5px;
    margin: auto;
    border-left: 2px solid #3aa69c;
    border-bottom: 2px solid #3aa69c;
    position: absolute;
    left: 3px;
    top:3px;
    /* top: 10px; */
    bottom: 0;
    transform: rotate(-45deg);
}
.fv-form__item dd select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #dadbdd;
    border: 0;
    border-radius: 8px;
    color: #808080;
    display: block;
    font-size: 16px;
    outline: none;
    padding: 12px 10px;
    width: 100%;
}
.fv-form__item dd input.submit-btn {
    background: #dc3c3c;
    color: #fff;
    cursor: pointer;
    padding: 14px 10px;
    text-align: center;
}

.fv-form__item ::placeholder {
    color: #808080;
}

@media screen and (max-width: 1568px) {
    .fv-text .fv-bg__text {
        font-size: 21px;
    }
    .fv-text h1 {
        font-size: 50px;
    }
    .fv-text .fv-catch {
        font-size: 18px;
    }
    .fv-text .fv-btn a {
        font-size: 16px;
        padding: 10px 25px;
    }
}
@media screen and (max-width: 1268px) {
    .fv-text .fv-bg__text {
        font-size: 18px;
    }
    .fv-text h1 {
        font-size: 38px;
    }
    .fv-text .fv-catch {
        font-size: 16px;
    }
    .fv-text .fv-btn a {
        font-size: 16px;
    }
    .fv-form__ttl p {
        font-size: 21px;
    }
    .fv-form__item dt label {
        font-size: 14px;
    }
    .fv-form__item dd input {
        font-size: 16px;
        padding: 10px;
    }
    .fv-form__item dd input[type="checkbox"] span::before {
        height: 25px;
        margin-right: 15px;
        width: 25px;
    }
    .fv-form__item dd select {
        font-size: 16px;
        padding: 12px 10px;
    }
    .fv-form__item dd input.submit-btn {
        padding: 14px 10px;
    }
}
@media screen and (max-width: 1068px) {
    .fv-left {
        width: calc(100% - 350px);
    }
    .fv-text h1 {
        font-size: 34px;
    }
    .fv-right {
        width: 320px;
    }
    .fv-forms {
        padding: 15px;
    }
}
@media screen and (max-width: 899px) {
    .fv-left {
        width: 100%;
    }
    .fv-right {
        padding: 25px 0 0;
        width: 100%;
    }
    .fv-forms {
        display: none;
        margin: 0 auto;
        width: 100%;
        max-width: 550px;
    }
}
@media screen and (max-width: 568px) {
    .fv-text .fv-bg__text {
        font-size: 18px;
    }
    .fv-text h1 {
        font-size: 26px;
    }
    .fv-text .fv-catch {
        font-size: 16px;
    }
    .fv-text .fv-btn a {
        font-size: 14px;
        padding: 10px 25px;
    }
}
@media screen and (max-width: 468px) {
    .fv-text h1 {
        font-size: 22px;
    }
    .fv-text .fv-catch {
        font-size: 14px;
    }
}


#mainvisual #visual-slide .swiper-slide {
    height: auto;
    margin-top: 40px;
}
#mainvisual #imagebox {
    width: 100%;
}

input[name="ruleschk"]+span{
    height: 20px;
    cursor:default;
}

label[for='policy']{
    display: block;
    position: absolute;
    padding: 10px 10px 10px 25px;
    left: 0;
    top: -4px;
    z-index:2;
    cursor:pointer;
}

label[for='policy'] a{
    text-decoration:underline;
}

.reqs {
    color:#E60013;
    font-weight:bold;
    display:inline-block;
    margin-left:3px;
}

.notemail {
    color:#B5B5B6;
    font-size:85%;
}

#fv-form .flexbox{
    display:flex;
    justify-content:space-between;
}
#fv-form .flexbox .halfs{
    width:49%;
}
.fv-form dd {
    position:relative;
}
.fv-form dd .errbox {
    position:absolute;
    bottom:-23px;
    left:0;
    padding:4px 12px;
    border:1px solid #aaa;
    background: #e0edff;
    /* width:100%; */
    z-index: 3;
    font-size:85%;
    display:none;
}
.fv-form dd .errbox.ehf {
    left:50%;
}
.fv-form dd .errbox:before {
    content: "";
    position: absolute;
    top: -20px;
    left: 10%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-bottom: 10px solid #aaa;
}
.fv-form dd .errbox:after {
    content: "";
    position: absolute;
    top: -19px;
    left: 10%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-bottom: 10px solid #e0edff;
}
