@charset "UTF-8";
/* ----------------------------------------------------------------------------------------------------
*  contacts.css
* --------------------------------------------------------------------------------------------------*/
#page-mv .page-ttl{
    color: #333;
    text-shadow: 0 0 1px #333;
}

/* ------------------------------
   sec-contacts
------------------------------ */
.sec-contacts{
    padding-top: 96px;
    padding-bottom: 115px;
}
.sec-contacts .text{
    font-size: 1.5rem;
    line-height: calc(26 / 15);
}
.sec-contacts .white_box{
    margin: 70px 0 0 0;
    background: #FFF;
    padding: 55px 40px 75px 40px;
    border-radius: 80px;
    box-shadow: 6px 0 30px 0 rgba(51,51,51,.1);
    box-sizing: border-box;
}

.sec-contacts .form_tbl{
    width: calc(100% - 120px);
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 auto;
}
.sec-contacts .form_tbl th,
.sec-contacts .form_tbl td{
    position: relative;
    vertical-align: top;
    font-size: 1.5rem;
    line-height: calc(26 / 15);
    padding: 15px 0;
    box-sizing: border-box;
}

.sec-contacts .form_tbl th{
    width: 242px;
    padding-top: 29px;
}
.sec-contacts .form_tbl th.v-middle{ padding-top: 13px;}
.sec-contacts .form_tbl td{
    width: calc(100% - 242px);
    padding-left: 15px;
}

.sec-contacts .required{
    position: absolute;
    right: 0;
    top: 29px;
    display: inline-block;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1;
    color: #FFF;
    background: #e4563f;
    padding: 6px 9px 8px 8px;
    border-radius: 4px;
    box-sizing: border-box;
}
/* form */
.sec-contacts .input_parts{
    display: block;
    font-size: 1.5rem;
    line-height: calc(26 / 15);
}
.sec-contacts .input_parts input{
    margin-left: 10px;
}
.sec-contacts .flex .input_parts+.input_parts{ margin-left: 15px;}

.sec-contacts input,
.sec-contacts textarea{
    width: 100%;
    font-size: 1.5rem;
    line-height: calc(26 / 15);
    background: #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    box-sizing: border-box;
}

.sec-contacts textarea{
    height: 240px;
    resize: vertical;
}
.sec-contacts .hyphen{ margin: 0 10px;}
.sec-contacts .w22{
    max-width: 220px;
}
.sec-contacts .w14{
    max-width: 140px;
}
.sec-contacts .w12{
    max-width: 120px;
}

.sec-contacts .address_wrap{align-items: center;}
.sec-contacts .address_wrap+.address_wrap{ margin-top: 30px;}
.sec-contacts .address_wrap label{
    width: 143px;
    font-size: 1.5rem;
    line-height: calc(26 / 15);
}
.sec-contacts .address_wrap input{ width: calc(100% - 143px);}

.sec-contacts .radio_wrap,
.sec-contacts .checkbox_wrap{
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
}
.sec-contacts .radio_parts,
.sec-contacts .checkbox_parts{
    position: relative;
    width: 44%;
    padding-right: 12px;
    box-sizing: border-box;
}

.sec-contacts .checkbox_parts:nth-of-type(n+3){ margin-top: 15px;}

.sec-contacts .radio_parts span,
.sec-contacts .checkbox_parts span{
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    line-height: calc(26 / 15);
    cursor: pointer;
    padding-left: 45px;
    box-sizing: border-box;
}
.sec-contacts .radio_parts span:before,
.sec-contacts .radio_parts span:after{
    position: absolute;
    display: block;
    content: '';
    border-radius: 100%;
    box-sizing: border-box;
}
.sec-contacts .radio_parts span:before{
    opacity: 0;
    left: 7px;
    top: 3px;
    width: 18px;
    height: 18px;
    background: #83be58;
    z-index: 2;
}
.sec-contacts .radio_parts span:after{
    left: 0;
    top: -4px;
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    z-index: 1;
}
.sec-contacts .radio_wrap input[type="radio"],
.sec-contacts .checkbox_wrap input[type="checkbox"]{
    appearance: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    background: none;
    padding: 0;
    margin: 0;
}
.sec-contacts input:focus,
.sec-contacts textarea:focus,
.sec-contacts .radio_wrap .radio_parts input:focus + span::after,
.sec-contacts .checkbox_wrap .checkbox_parts input:focus + span::after{
  box-shadow: 0 0 4px rgba(51,51,51,.5);
}
.sec-contacts .radio_wrap .radio_parts input:checked + span:before {
  opacity: 1;
}
.sec-contacts .checkbox_parts span:before,
.sec-contacts .checkbox_parts span:after{
    position: absolute;
    display: block;
    content: '';
    box-sizing: border-box;
}
.sec-contacts .checkbox_parts span:before{
    opacity: 0;
    left: 12px;
    top: 4px;
    width: 8px;
    height: 14px;
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    transform: rotate(45deg);
    z-index: 2;
}
.sec-contacts .checkbox_parts span:after{
    left: 0;
    top: -2px;
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border-radius: 4px;
    z-index: 1;
}
.sec-contacts .checkbox_wrap .checkbox_parts input:checked + span:before {
  opacity: 1;
}
.sec-contacts .checkbox_wrap .checkbox_parts input:checked + span:after {
  background: #83be58;
}

.sec-contacts .agree_wrap .checkbox_wrap{
    display: block;
}
.sec-contacts .agree_wrap .checkbox_parts{
    width: auto;
}

.agree_wrap p{
    font-size: 1.5rem;
    line-height: calc(26 / 15);
}
.agree_wrap .ico-external{
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    color: #ec90a3;
    margin: 12px 0 0 0;
}
.agree_wrap .ico-external:after{
    position: relative;
    top: -2px;
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    content: '';
    background: url("../img/common/ico_external_pink.svg") no-repeat center center;
    background-size: 100% auto;
    width: 13px;
    height: 13px;
}

.sec-contacts .form_btn{
    margin: 75px auto 0 auto;
    text-align: center;
}
.sec-contacts .form_btn .submit_btn{
    max-width: 320px;
    margin: 0 auto;
}
.sec-contacts .form_btn .submit{
    padding: 22px 10px;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 500;
    background: #ec90a3;
    border-radius: 36px;
    box-sizing: border-box;
    cursor: pointer;
    transition: .4s;
}
.sec-contacts .form_btn .submit:hover{
    opacity: .7;
}
.sec-contacts iframe{
    width: 100%;
    height: 100%;
    min-height: 2220px;
}


@media screen and (max-width: 767px) {
    .sec-contacts{
        padding-top: 10.667vw;
        padding-bottom: 13.333vw;
    }
    .sec-contacts .text{
        font-size: 3.467vw;
    }
    .sec-contacts .white_box{
        margin: 10.667vw 0 0 0;
        padding: 9% 6% 9% 6%;
        border-radius: 10.667vw;
    }

    .sec-contacts .form_tbl{
        width: 100%;
        display: block;
    }
    .sec-contacts .form_tbl th,
    .sec-contacts .form_tbl td{
        display: block;
        font-size: 3.467vw;
        padding: 15px 0 0 0;
        box-sizing: border-box;
    }

    .sec-contacts .form_tbl th{
        width: 100%;
        padding-top: 15px;
        padding-bottom: 0;
    }
    .sec-contacts .form_tbl th.v-middle{ padding-top: 15px;}
    .sec-contacts .form_tbl td{
        width: 100%;
        padding-left: 0;
        padding-top: 10px;
        padding-bottom: 15px;
    }

    .sec-contacts .required{
        top: 3.6vw;
        font-size: 2.933vw;
        padding: 6px 9px 8px 8px;
    }
    /* form */
    .sec-contacts .input_parts{
        font-size: 3.467vw;
    }
    .sec-contacts .input_parts input{
        margin-left: 0;
        margin-top: 5px;
    }
    .sec-contacts .flex{ display: block;}
    .sec-contacts .flex .input_parts+.input_parts{ margin-left: 0; margin-top: 10px;}

    .sec-contacts input,
    .sec-contacts textarea{
        font-size: 3.467vw;
        padding: 12px;
    }

    .sec-contacts textarea{
        height: 48vw;
    }
    .sec-contacts .hyphen{ margin: 0 8px;}
    .sec-contacts .w22{
        max-width: inherit;
    }
    .sec-contacts .w14{
        max-width: inherit;
    }
    .sec-contacts .w12{
        max-width: inherit;
        width: 25%;
    }
    .sec-contacts .address_wrap,
    .sec-contacts .checkbox_wrap,
    .sec-contacts .radio_wrap{
        font-size: 3.467vw;
    }
    .sec-contacts .address_wrap+.address_wrap{ margin-top: 15px;}
    .sec-contacts .address_wrap label{
        display: block;
        width: 100%;
        font-size: 3.467vw;
        margin-bottom: 5px;
    }
    .sec-contacts .address_wrap input{ width: 100%;}
    .sec-contacts .address_wrap .area-label{
        width: auto;
        display: inline-block;
        margin-right: 15px;
    }
    .sec-contacts .address_wrap .w14.area-input{
        width: 50%;
    }

    .sec-contacts .radio_wrap,
    .sec-contacts .checkbox_wrap{
        margin-top: 0;
    }
    .sec-contacts .radio_parts,
    .sec-contacts .checkbox_parts{
        width: 50%;
    }

    .sec-contacts .radio_parts span,
    .sec-contacts .checkbox_parts span{
        font-size: 3.467vw;
        padding-left: 9vw;
    }

    .sec-contacts .radio_parts span:before{
        left: 1.4vw;
        top: 0.4vw;
        width: 4.2vw;
        height: 4.2vw;
    }
    .sec-contacts .radio_parts span:after{
        left: 0;
        top: -1vw;
        width: 7vw;
        height: 7vw;
    }

    .sec-contacts .checkbox_parts span:before{
        left: 2.6vw;
        top: 0.5vw;
        width: 2vw;
        height: 3.4vw;
    }
    .sec-contacts .checkbox_parts span:after{
        top: -.5vw;
        width: 7vw;
        height: 7vw;
    }
    .sec-contacts .checkbox_wrap .checkbox_parts input:checked + span:before {
      opacity: 1;
    }
    .sec-contacts .checkbox_wrap .checkbox_parts input:checked + span:after {
      background: #83be58;
    }
    .agree_wrap p{
        font-size: 3.467vw;
    }
    .agree_wrap .ico-external{
        font-size: 3.467vw;
        margin: 10px 0;
    }
    .agree_wrap .ico-external:after{
        top: -.5vw;
        margin-left: 5px;
        background-size: 100% auto;
        width: 3.2vw;
        height: 3.2vw;
    }

    .sec-contacts .form_btn{
        margin: 10.667vw auto 0 auto;
    }
    .sec-contacts .form_btn .submit_btn{
        max-width: inherit;
    }
    .sec-contacts .form_btn .submit{
        padding: 12px 10px;
        font-size: 3.733vw;
        border-radius: 50px;
    }
    .sec-contacts iframe{
        min-height: 2220px;
    }

}

/* ------------------------------
   sec-contacts / 確認画面
------------------------------ */
.sec-contacts.confirm .required,
.sec-contacts.confirm .label_txt,
.sec-contacts.confirm .agree_txt,
.sec-contacts.confirm .agree_wrap a{ display: none;}

.sec-contacts.confirm .form_tbl th,
.sec-contacts.confirm .form_tbl td,
.sec-contacts.confirm .form_tbl th.v-middle{
    padding: 15px 0;
}
.sec-contacts.confirm .border-box .form_tbl th,
.sec-contacts.confirm .border-box .form_tbl td{ vertical-align: middle;}
.sec-contacts.confirm .radio_wrap, .sec-contacts.confirm .checkbox_wrap{ margin-top: 0;}

.sec-contacts.confirm .address_wrap{ display: inline;}

.sec-contacts.confirm .form_btn{
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec-contacts.confirm .form_btn .submit_btn{
    margin: 0;
    width: 48%;
}
.sec-contacts.confirm .form_btn .submit_btn+.submit_btn{ margin-left: 40px;}

.sec-contacts.confirm .form_btn .submit { width: 100%;}
.sec-contacts.confirm .form_btn .back {
    width: 100%;
    padding: 22px 10px;
    color: #ec90a3;
    font-size: 1.6rem;
    font-weight: 500;
    background: #FFF;
    border: 1px solid #ec90a3;
    border-radius: 36px;
    box-sizing: border-box;
    cursor: pointer;
    transition: .4s;
}


@media screen and (max-width: 767px) {
    .sec-contacts.confirm .form_tbl th,
    .sec-contacts.confirm .form_tbl th.v-middle{
        padding: 15px 0 0 0;
    }
    .sec-contacts.confirm .form_tbl td{
        padding: 10px;
        padding-bottom: 15px;
    }
    .sec-contacts.confirm .input_parts,
    .sec-contacts.confirm .address_wrap,
    .sec-contacts.confirm .agree_wrap .checkbox_wrap{
        display: inline;
    }

    .sec-contacts.confirm .form_btn{
        display: block;
    }
    .sec-contacts.confirm .form_btn .submit_btn{
        margin: 0 auto;
        width: 100%;
    }
    .sec-contacts.confirm .form_btn .submit_btn+.submit_btn{ margin-left: auto; margin-top: 6%;}

    .sec-contacts.confirm .form_btn .back {
        padding: 13px 10px 9px 10px;
        font-size: 3.733vw;
        border-radius: 50px;
    }

}

/* ------------------------------
   sec-contacts / 完了画面
------------------------------ */
.sec-contacts.thanks .white_box{
    padding: 85px 100px 95px 100px;
}
.sec-contacts.thanks .sec_ttl.heading-d{
    font-size: 2.0rem;
    margin-bottom: 30px;
}

.sec-contacts.thanks .btn_wrap.form_btn .btn {
    max-width: 320px;
    margin: 0 auto;
    padding: 20px 30px 20px 30px;
}

@media screen and (max-width: 767px) {
    .sec-contacts.thanks .white_box{
        padding: 9% 6% 9% 6%;
    }
    .sec-contacts.thanks .sec_ttl.heading-d{
        font-size: 4.148vw;
        margin-bottom: 5.185vw;
    }
    .sec-contacts.thanks .form_btn .btn{
        max-width: inherit;
    }
    .sec-contacts.thanks .btn_wrap.form_btn .btn {
        max-width: inherit;
        padding: 13px 12vw 16px 12vw;
    }
}


