@charset "utf-8";


/*-------------------------------
	フォーム
-------------------------------*/

.C-form{
    width: 100%;
    max-width: 100%
}
.C-form-line::before{
    width: 100%;
    height: 2.5rem;
    margin-bottom: 2.5rem;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    content: "";
}
.C-form-line--first::before{
    background-image: url(../images/common/bg_c-form-line_first.png);
    background-image: image-set(url(../images/common/bg_c-form-line_first.png) 1x, url(../images/common/bg_c-form-line_first@2x.png) 2x);
    background-image: -webkit-image-set(url(../images/common/bg_c-form-line_first.png) 1x, url(../images/common/bg_c-form-line_first@2x.png) 2x);
}
.C-form-line--last::before{
    background-image: url(../images/common/bg_c-form-line_last.png);
    background-image: image-set(url(../images/common/bg_c-form-line_last.png) 1x, url(../images/common/bg_c-form-line_last@2x.png) 2x);
    background-image: -webkit-image-set(url(../images/common/bg_c-form-line_last.png) 1x, url(../images/common/bg_c-form-line_last@2x.png) 2x);
}

.C-form__message{
    font-size: 1.5rem;
    letter-spacing: .08em;
    margin-bottom: 4rem;
    position: relative;
    text-align: center;
}
.C-form-margin-top {
    margin-top: 20px;
}
.C-form__message__req{
    color: #97c4d4;
}
.C-form-block__wrap{
    margin-bottom: 3.5rem;
}
.C-form-block:not(:last-child){
    margin-bottom: 4rem;
}
.C-form-block__title{
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1;
    position: relative;
}
.C-form-block__title:not(.C-form-block__title--req){
    padding-left: 1.4rem;
}
.C-form-block__title:not(.C-form-block__title--req)::before{
    width: .7rem;
    height: .7rem;
    border-radius: 50%;
    border: 1px solid #39385d;
    line-height: 1;
    left: 0;
    top: calc(50% - .3rem);
    position: absolute;
    display: block;
    content: "";
}
.C-form-block__title--req{
    padding-left: 3.5rem;
}
.lang-en .C-form-block__title--req{
    padding-left: 5.5rem;
}

.lang-en .C-form-block__title--req::before{
    width: 5rem;
    content: "Required";
}

.C-form-block__title--req::before{
    width: 3rem;
    height: 1.4rem;
    border-radius: .7rem;
    font-size: 1rem;
    line-height: 1;
    left: 0;
    top: 0;
    position: absolute;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #97c4d4;
    color: #fff;
    content: "必須";
}
.C-form-block__body{
    width: 100%;
}
.C-form-block__body--half{
    width: calc((100% - 1.5rem) / 2);
}
.C-form-block__body--two{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.C-form-block__body--two .C-form-block__field{
    width: calc((100% - 1.5rem) / 2);
}

.C-form-block-child:not(:last-child){
    margin-bottom: 2.8rem;
}
.C-form-block-child .C-form-block__title{
    margin-bottom: 1rem;
    color: rgba(57,56,93,.75);
}

.C-form-block__notes{
    color: red;
    font-weight: 700;
    font-size: 1.4rem;
}
.C-form-block__notes__title {
    margin-bottom: 0.5rem;
}
.C-form-block__notes__body {
    margin-bottom: 2.8rem;
}

/* .C-form-block-child .C-form-block__title::before{
    border: 1px solid rgba(57,56,93,.75);
} */

/*----- テキスト */
.C-form-block__field{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #39385d;
    position: relative;
}
.C-form-block__field input{
    width: 100%;
    font-size: 1.4rem;
    color: #39395C;
}
.C-form-block__field input::placeholder{
    color: rgba(57,57,92,.25);
}

/*----- テキストエリア */
.C-form-block__textarea textarea{
    width: 100%;
    height: 16.3rem;
    padding: 1rem 1.8rem;
    border: 1px solid rgba(204,206,213,.5);
    border-radius: .6rem;
    font-size: 1.4rem;
    background: rgba(255,255,255,.6);
    resize: none;
    vertical-align: middle;
    color: #39395C;
}
.C-form-block__textarea textarea::placeholder{
    color: rgba(57,57,92,.25);
}

/*----- セレクト */
.C-form-block__select{
    width: 100%;
    height: 4.8rem;
    font-size: 1.4rem;
    border: 1px solid rgba(204,206,213,.35);
    border-radius: .6rem;
    background: rgba(255,255,255,.2);
    transition: .3s all ease-in-out;
    position: relative;
}
.C-form-block__select::after{
    width: 0;
    height: 0;
    border-style: solid;
    right: 1rem;
    top: calc(50% - .3rem);
    position: absolute;
    border-width: .6rem .4rem 0 .4rem;
    border-color: #39395c transparent transparent transparent;
    display: block;
    content: "";
}
.C-form-block__select select{
    width: 100%;
    height: 100%;
    padding: .5rem 2rem;
    color: rgba(57,56,93,.7);
}

/*----- ラジオボタン */
.C-form-block__radio{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.C-form-block__radio__item{
    width: calc((100% - 1.4rem) / 2);
}
.C-form-block__radio-pdf__item{
    width: calc((100% - 1.4rem) / 3);
}
.C-form-block__radio__item:not(:nth-last-of-type(-n+2)){
    margin-bottom: 1.4rem;
}
.C-form-block__radio__text{
    width: 100%;
    height: 4.8rem;
    padding: 1.5rem 1.5rem 1.5rem 4.5rem;
    font-size: 1.4rem;
    line-height: 1.2;
    color: rgba(57,56,93,.7);
    border: 1px solid rgba(204,206,213,.35);
    border-radius: .6rem;
    background: rgba(255,255,255,.2);
    transition: .3s all ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    cursor: pointer;
}
.C-form-block__radio-pdf__text{
    width: 100%;
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    font-size: 1.4rem;
    line-height: 1.2;
    color: rgba(57,56,93,.7);
    border: 1px solid rgba(204,206,213,.35);
    border-radius: .6rem;
    background: rgba(255,255,255,0);
    transition: .3s all ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    cursor: pointer;
}
.C-form-block__radio__text:hover{
    box-shadow: 0 0 .5rem rgba(0,0,0,.025);
}
.C-form-block__radio__text::before{
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(57,57,92,.7);
    left: 1.5rem;
    top: calc(50% - 1rem);
    position: absolute;
    display: block;
    content: "";
}
.C-form-block__radio__text::after{
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: #39395c;
    left: calc(1.5rem + .4rem);
    top: calc(50% - .6rem);
    position: absolute;
    display: block;
    content: "";
    opacity: 0;
}
.C-form-block__radio-pdf__text::before{
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(57,57,92,.7);
    left: 1.5rem;
    top: 12px;
    position: absolute;
    display: block;
    content: "";
}
.C-form-block__radio-pdf__text::after{
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: #39395c;
    left: calc(1.5rem + .4rem);
    top: 16px;
    position: absolute;
    display: block;
    content: "";
    opacity: 0;
}

.C-form-block__radio-pdf__text img {
    width: 120px;
    height: 160px;
    margin-top: 20px;
}

.C-form-block__radio input[type="radio"]{
    display: none;
}
.C-form-block__radio input[type="radio"]:checked + .C-form-block__radio__text{
    color: #39385d;
    border: 1px solid rgba(204,206,213,.5);
    background: rgba(255,255,255,.6);
}
.C-form-block__radio input[type="radio"]:checked + .C-form-block__radio__text::before{
    border: 1px solid #39385d;
}
.C-form-block__radio input[type="radio"]:checked + .C-form-block__radio__text::after{
    opacity: 1;
}
.C-form-block__radio input[type="radio"]:checked + .C-form-block__radio-pdf__text{
    color: #39395C;
    border: 1px solid rgba(204,206,213,.5);
    background: rgba(255,255,255,0);
}
.C-form-block__radio input[type="radio"]:checked + .C-form-block__radio-pdf__text::before{
    border: 1px solid #39385d;
}
.C-form-block__radio input[type="radio"]:checked + .C-form-block__radio-pdf__text::after{
    opacity: 1;
}
.C-form-block__radio-pdf-title {
    position: relative;
}
.C-form-block__radio-pdf-title::after {
    position: absolute;
    content: "";
    top: 14px;
    left: 50px;
    background-repeat: no-repeat;
    background-size: contain;
}
.C-form-block__radio-pdf-title1::after {
    background-image: url(../../../images/common/pdf-title1.svg);
    width: 90px;
    height: 40px;
}
.C-form-block__radio-pdf-title2::after {
    background-image: url(../../../images/common/pdf-title2.svg);
    width: 72px;
    height: 40px;
}
.C-form-block__radio-pdf-title3::after {
    background-image: url(../../../images/common/pdf-title3.svg);
    width: 100px;
    height: 40px;
}

.C-form-block__radio-pdf-title4::after {
    background-image: url(../../../images/common/pdf-title4.svg);
    width: 100px;
    height: 40px;
}

.lang-en .C-form-block__radio-pdf-title1::after {
    background-image: url(../../../images/common/pdf-title1_en.svg);
}
.lang-en .C-form-block__radio-pdf-title2::after {
    background-image: url(../../../images/common/pdf-title2_en.svg);
}
.lang-en .C-form-block__radio-pdf-title3::after {
    background-image: url(../../../images/common/pdf-title3_en.svg);
}
.lang-en .C-form-block__radio-pdf-title4::after {
    background-image: url(../../../images/common/pdf-title4_en.svg);
}

/*----- チェックボックス */
.C-form-block__checkbox input[type="checkbox"]{
    display: none;
}
.C-form-block__checkbox__text{
    font-size: 1.4rem;
    padding-left: 3.5rem;
    position: relative;
    cursor: pointer;
}
.C-form-block__checkbox__text::before{
    width: 2rem;
    height: 2rem;
    border-radius: .6rem;
    border: 1px solid #39395c;
    left: 0;
    top: calc(50% - 1rem);
    position: absolute;
    background: rgba(255,255,255,.3);
    display: block;
    content: "";
}
.C-form-block__checkbox__text::after{
    width: 1rem;
    height: .6rem;
    border-left: 2px solid #39395c;
    border-bottom: 2px solid #39395c;
    left: .5rem;
    top: calc(50% - .4rem);
    position: absolute;
    transform: rotate(-45deg);
    display: block;
    content: "";
    opacity: 0;
}
.C-form-block__checkbox input[type="checkbox"]:checked + .C-form-block__checkbox__text::after{
    opacity: 1;
}

/*----- メールアドレス */
.C-form-block--email .C-form-block__field{
    width: calc((100% - 5rem) / 2);
}
.C-form-block--email .C-form-block__body{
    position: relative;
}
.C-form-block--email .C-form-block__body::after{
    font-size: 2rem;
    font-weight: 700;
    left: calc(50% - .5em);
    top: 0;
    position: absolute;
    content: "@";
}

/*----- パスワード */
.C-form-block--password__text{
    width: calc((100% * 2) + 1.5rem);
    max-width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgba(57,57,92,.75);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.C-form-block--password__text::before{
    line-height: 1.5;
    /* content: "※"; */
}
.C-form-block--password-tab{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.C-form-block--password-tab__item{
    width: 7rem;
    height: 2.8rem;
    border-radius: .6rem;
    background: rgba(57,57,92,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.C-form-block--password-tab__item.ok{
    color: rgba(57,56,93,.25);
    background: rgba(57,57,92,.04);
}
.C-form-block--password-tab__item.ok::before{
    width: 1.9rem;
    height: 1.8rem;
    left: 0;
    top: calc(50% - .9rem);
    right: 0;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/common/icon_password_check.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    content: "";
}
.C-form-block--password-tab__item:not(:last-child){
    margin-right: .6rem;
}

/*----- ボタンあり */
.C-form-block--hasbutton{
    width: 100%;
    max-width: 40rem;
}
.C-form-block--hasbutton .C-form-block__body{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.C-form-block--hasbutton .C-form-block__field{
    width: calc(100% - 10rem - 1.5rem);
}
.C-form-block__button{
    width: 10rem;
    height: 3.6rem;
    border-radius: .6rem;
    font-size: 1.2rem;
    color: #fff;
    background: #39385d;
    transition: .3s all ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.C-form-block__button:hover{
    opacity: .6;
}

/*----- 送付先 */
.C-form-block--sending:not(:last-child){
    margin-bottom: 5rem;
}

/*----- 使用するクーポン */
.C-form-block--couponno{
    width: 100%;
}
.C-form-block--couponno__tag{
    font-size: 1.4rem;
    right: 1.5rem;
    top: 0;
    position: absolute;
}
.C-form-block--couponno__text{
    margin-top: .5rem;
    padding-left: 2.8rem;
    position: relative;
}
.C-form-block--couponno__text strong{
    font-weight: 700;
    color: #c72442;
}
.C-form-block--couponno__text::before{
    width: 2rem;
    height: 1.5rem;
    left: 0;
    top: calc(50% - .75rem);
    position: absolute;
    background-image: url(../images/common/icon_coupon.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    content: "";
}

/*----- プライバシーポリシー */
.C-form-policy{
    width: 100%;
    margin-bottom: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.C-form-policy-block:not(:last-child){
    margin-bottom: 1.5rem;
}
.C-form-policy .C-form-block__checkbox__text a{
    color: #5b84ae;
    text-decoration: underline;
}

.offer_appraisals {
    width: 92%;
}

@media screen and (max-width:620px) , print{
    .C-form-block__radio.C-form-block__radio-pdf{
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .C-form-block__radio-pdf__item{
        width: calc((100% - 1.4rem) / 2);
    }
    .C-form-block__radio-pdf-title::after {
        top: 36px;
    }
    .C-form-block__radio-pdf__text{
        padding: 1.5rem 1.5rem 1rem 2.5rem;
    }
    .C-form-block__radio-pdf__text:nth-child(3n) {
        margin-top: 20px;
    }
    .offer_appraisals {
        width: 100%;
    }
}
@media screen and (min-width:501px) , print{

}
@media screen and (max-width:500px) , print{

    .C-form{
        max-width: 100%;
    }
    .C-form-line::before{
        height: 4rem;
    }
    .C-form__message{
        line-height: 1.6;
        margin-bottom: 4.5rem;
    }
    .C-form-block__wrap{
        margin-bottom: 4rem;
    }
    .C-form-block:not(:last-child){
        margin-bottom: 3.5rem;
    }
    .C-form-block__title{
        margin-bottom: 1.7rem;
    }
    .C-form-block__body--half{
        width: 100%;
    }

    .C-form-block-child:not(:last-child){
        margin-bottom: 3rem;
    }
    .C-form-block-child .C-form-block__title{
        margin-bottom: 1.7rem;
    }

    /*----- テキスト */
    .C-form-block__field{
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: .8rem;
    }

    /*----- テキストエリア */
    .C-form-block__textarea textarea{
        height: 25rem;
        padding: 1.5rem;
    }

    /*----- セレクト */
    .C-form-block__select{
        width: 100%;
        height: 4.8rem;
        font-size: 1.4rem;
        border: 1px solid rgba(204,206,213,.35);
        border-radius: .6rem;
        background: rgba(255,255,255,.2);
        transition: .3s all ease-in-out;
        position: relative;
    }
    .C-form-block__select::after{
        width: 0;
        height: 0;
        border-style: solid;
        right: 1rem;
        top: calc(50% - .3rem);
        position: absolute;
        border-width: .6rem .4rem 0 .4rem;
        border-color: #39395c transparent transparent transparent;
        display: block;
        content: "";
    }
    .C-form-block__select select{
        width: 100%;
        height: 100%;
        padding: .5rem 2rem;
        color: rgba(57,56,93,.7);
    }

    /*----- ラジオボタン */
    .C-form-block__radio{
        display: block;
    }
    .C-form-block__radio.C-form-block__radio-pdf{
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .C-form-block__radio__item{
        width: 100%;
    }
    .C-form-block__radio-pdf__item{
        width: calc((100% - 1.4rem) / 2);
    }
    .C-form-block__radio-pdf-title::after {
        top: 36px;
    }
    .C-form-block__radio__item:not(:last-child){
        margin-bottom: 1rem;
        display: block;
    }
    .C-form-block__radio__text{
        height: 5rem;
        /* padding: 1rem 1rem 1rem 4.5rem; */
        padding: 1.2rem 1rem 1.2rem 4.5rem;
        font-size: medium;
    }
    .C-form-block__radio-pdf__text{
        padding: 1.5rem 1.5rem 1rem 2.5rem;
    }
    .C-form-block__radio-pdf__text:nth-child(3n) {
        margin-top: 20px;
    }

    /*----- チェックボックス */
    .C-form-block__checkbox__text{
        padding-left: 3rem;
    }

    /*----- メールアドレス */
    .C-form-block--email .C-form-block__field{
        width: calc((100% - 5rem) / 2);
    }
    .C-form-block--email .C-form-block__body{
        position: relative;
    }
    .C-form-block--email .C-form-block__body::after{
        font-size: 2rem;
        font-weight: 700;
        left: calc(50% - .5em);
        top: 0;
        position: absolute;
        content: "@";
    }

    /*----- パスワード */
    .C-form-block--password__text{
        width: 100%;
    }
    .C-form-block--password-tab__item{
        width: calc((100% - (.6rem * 3)) / 4);
        height: 2.8rem;
        font-size: 1.2rem;
    }

    /*----- ボタンあり */
    .C-form-block--hasbutton{
        max-width: 100%;
    }
    .C-form-block--hasbutton .C-form-block__field{
        width: calc(100% - 10rem - 1.2rem);
    }

    /*----- 送付先 */
    .C-form-block--sending:not(:last-child){
        margin-bottom: 5rem;
    }

    /*----- 使用するクーポン */
    .C-form-block--couponno__tag{
        right: 1.2rem;
        top: .5rem;
    }
    .C-form-block--couponno__text{
        font-size: 1.3rem;
    }

    /*----- プライバシーポリシー */
    .C-form-policy{
        width: 100%;
        margin-bottom: 4rem;
        display: flex;
        align-items: center;
        /* justify-content: center; */
    }
    .C-form-policy-block:not(:last-child){
        margin-bottom: 1rem;
    }
    .C-form-block__radio-pdf-title::after {
        /* left: 30px; */
        left: 46px;
    }
    .C-form-block__radio-pdf-title1::after {
        background-image: url(../../../images/common/pdf-title1.svg);
        width: 79px;
        height: 40px;
    }
    .C-form-block__radio-pdf-title2::after {
        background-image: url(../../../images/common/pdf-title2.svg);
        width: 60px;
        height: 40px;
    }
    .C-form-block__radio-pdf-title3::after {
        background-image: url(../../../images/common/pdf-title3.svg);
        width: 87px;
        height: 40px;
    }
    .C-form-block__radio-pdf-title4::after {
        background-image: url(../../../images/common/pdf-title4.svg);
        width: 87px;
        height: 40px;
    }
}
