@charset "UTF-8";


/* ご利用の流れ修正 */

.online__container-des {
    width: calc(100% - 90px);
}

.online__container-section1 {
    height: auto;
    padding: 30px 20px 30px;
}
.online__container-count {
    position: absolute;
    left: 0;
    top: 0;
}
.online__container-section1 .online__container-des {
    position: static;
    box-sizing: border-box;
    width: 100%;
    padding: 0 0 20px 50px; 
}
.online__container-section1 .online__container-online1 {
    position: static;
    top: 0;
    left: 0;
    display: block;
    margin: 0 auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}



/* フォーム関係サイズ調整 */

@media (max-width: 1280px) and (min-width: 961px) {
    
    .online__inner,
    .form__title,
    .form__inner {
        width: 80%;
    }
    
}


/* フォームページの位置調整 */

.form.form--flowpage {
    margin-top: 0;
    padding-top: 160px;
}

@media (max-width: 960px) {

    .form.form--flowpage {
        margin-top: 0;
        padding-top: 90px;
    }
    
}


/* フォームのコメント */

.form__comment {
    padding: 70px 0 0;
}

@media (max-width: 960px) {

    .form__comment {
        padding: 40px 0 0;
    }
    
}


/* エラー表示 */

ul.form__error-list {
    margin: 1em 0 0;
    padding: 10px 20px;
    list-style-type: none;
    background: #fee;
    border: 2px solid #c00;
    border-radius: 5px;
    color: #c00;
}

ul.form__error-list > li {
    margin: 0;
    padding: 2px 0 2px 1em;
    list-style-type: none;
}

ul.form__error-list > li::before {
    content: "・";
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    text-align: center;
}

.form__error-text {
    color: #c00;
}



/* 送信項目レイアウト */

.form__wrapper > div {
    margin: 0;
    padding: 0 0 20px;
}
.form__wrapper > div::after {
    content: "";
    clear: both;
    display: block;
    box-sizing: content-box;
    width: 100%;
    height: 0;
}

.form__wrapper > div .form__name {
    float: left;
    display: block;
    box-sizing: border-box;
    width: 22%;
    margin: 0;
    padding: 6px 0;
}
.form__wrapper > div .form__input-area {
    float: right;
    display: block;
    box-sizing: border-box;
    width: 78%;
    margin: 0;
    padding: 0;
}

@media (max-width: 960px) {

    .form__wrapper > div .form__name {
        float: none;
        width: 100%;
        margin: 0;
        padding: 6px 0;
    }
    .form__wrapper > div .form__input-area {
        float: none;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
}


/* 入力フォームの調整 */

.form__radio-label {
    display: inline-block;
    margin: 0 2em 0 0;
    padding: 5px 0;
}
.form__radio-label input[type="radio"] {
    margin-right: 0.5em;
}

.form__select {
    padding: 0 20px 0 10px;
    width: 60%;
}
@media screen and (-ms-high-contrast: none) {
    select.form__select {
        padding: 0 0 0 10px;
        background-image: none;
    }
}
.form__input {
    padding: 0 10px;
    width: 60%;
}
.form__textarea {
    float: none;
    position: static;
    left: 0;
    padding: 5px 10px;
    width: 100%;
}

.form__confirm {
    position: relative;
    display: inline-block;
    padding: 5px 10px;
    width: 60%;
}
.form__confirm-textarea {
    position: relative;
    display: inline-block;
    padding: 5px 10px;
    width: 100%;
}
.form__confirm.checked::before,
.form__confirm-textarea.checked::before {
    content: "";
    position: absolute;
    top: -0em;
    left: -0.2em;
    display: block;
    width: 0.6em;
    height: 4px;
    border-radius: 2px;
    transform: rotate(45deg);
    background: #3c6;
}
.form__confirm.checked::after,
.form__confirm-textarea.checked::after {
    content: "";
    position: absolute;
    top: -0.1em;
    left: 0em;
    display: block;
    width: 1.2em;
    height: 4px;
    border-radius: 2px;
    transform: rotate(-45deg);
    background: #3c6;
}


.form__confirm ,
.form__confirm-textarea ,
.form__select ,
.form__input ,
.form__textarea {
    box-sizing: border-box;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid #999;
    border-radius: 3px;
    color: #212529;
    background-color: #fff;
}
.form__select:read-only ,
.form__input:read-only ,
.form__textarea:read-only {
    box-sizing: border-box;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid #999;
    border-radius: 3px;
    color: #212529;
    background-color: #fff;
}
input.form__select::placeholder {
    color: #212529;
}
input.form__input::placeholder {
    color: #ccc;
}
input.form__select:-ms-input-placeholder {
    color: #212529;
}
input.form__input:-ms-input-placeholder {
    color: #ccc;
}
input.form__select::-ms-input-placeholder {
    color: #212529;
}
input.form__input::-ms-input-placeholder {
    color: #ccc;
}

@media (max-width: 960px) {

    .form__confirm {
        width: 100%;
    }
    .form__select {
        width: 100%;
    }
    .form__input {
        width: 100%;
    }
    
}





/* 送信ボタンの調整 */


.form .main__btn2 {
    padding-top: 50px;
}

.form .main__btn2 .btn__matchform-3 {
    text-decoration: none;
    background-color: #0a3395;
    width: 300px;
    height: 45px;
    border-radius: 40px;
    text-align: center;
    line-height: 40px;
    position: relative;
    color: #ffffff;
    display: block;
    margin: 0 auto; 
    border: 0px none;
    outline: 0px none;
    transition: opacity 0.5s ease;
}
.form .main__btn2 .btn__matchform-3:hover {
    opacity: 0.75;
}
.form .main__btn2 .btn__matchform-3--exec {
    text-decoration: none;
    background-color: #393;
    width: 300px;
    height: 45px;
    border-radius: 40px;
    text-align: center;
    line-height: 40px;
    position: relative;
    color: #ffffff;
    display: block;
    margin: 0 auto; 
    border: 0px none;
    outline: 0px none;
    transition: opacity 0.5s ease;
}
.form .main__btn2 .btn__matchform-3--exec:hover {
    opacity: 0.75;
}
.form .main__btn2 .btn__matchform-3--back {
    text-decoration: none;
    background-color: #666;
    width: 260px;
    height: 40px;
    border-radius: 20px;
    text-align: center;
    line-height: 38px;
    position: relative;
    color: #ffffff;
    display: block;
    margin: 20px auto 0; 
    border: 0px none;
    outline: 0px none;
    transition: opacity 0.5s ease;
}
.form .main__btn2 .btn__matchform-3--back:hover {
    opacity: 0.75;
}
.form .main__btn2 .btn__matchform-3--cancel {
    text-decoration: none;
    background-color: #fff;
    box-sizing: border-box;
    width: 260px;
    height: 40px;
    border-radius: 20px;
    text-align: center;
    line-height: 37px;
    position: relative;
    color: #0a3395;
    display: block;
    margin: 40px auto 0; 
    border: 1px solid #0a3395;
    outline: 0px none;
    transition: opacity 0.5s ease;
}
.form .main__btn2 .btn__matchform-3--cancel:hover {
    opacity: 0.75;
}






/* 完了メッセージ */


.form__thanks-heading {
    font-size: 24px;
    color: #0a3395;
    font-weight: bold;
    margin: 0 0 12px;
}






