@charset "utf-8";

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

input::placeholder,
textarea::placeholder{
    color: #808080;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder{
    color: #808080;
}
.Form-block input,
.Form-block textarea,
.Form-block select,
.Form-button button{
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
}
.Form-block-wrap{
    margin-bottom: 4rem;
}
.Form-block{
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
    border-bottom: 1px solid rgba(128,128,128,.1);
}
.Form-block:first-child{
    border-top: 1px solid rgba(128,128,128,.1);
}
.Form-block__title{
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}
.Form-block__body{
    font-size: 1.5rem;
    line-height: 1.35;
}
.Form-foot{
    text-align: center;
}

/*----- テキスト */
.Form-block__field{
    width: 100%;
    height: 4.6rem;
    border-radius: 2.3rem;
    background: #fff;
}
.Form-block__field input[type="text"]{
    width: 100%;
    height: 100%;
    font-size: 1.3rem;
    padding: 1rem 2.5rem;
}

/*----- セレクト */
.Form-select{
    width: 100%;
    height: 4.6rem;
    border-radius: 2.3rem;
    background: #fff;
    z-index: 6000;
    position: relative;
}
.Form-select::after{
    width: .7rem;
    height: .4rem;
    right: 2rem;
    top: calc(50% - .2rem);
    z-index: 4000;
    position: absolute;
    background-image: url(../images/common/icon_arrow-gray-bottom.svg);
    display: block;
    content: "";
}
.Form-select select{
    width: 100%;
    height: 100%;
    padding: 1rem 2.5rem;
    font-size: 1.3rem;
    z-index: 6000;
    position: relative;
    color: #808080;
    cursor: pointer;
}

/*----- チェックボックス */
.Form-checkbox{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.Form-checkbox__item{
    width: 50%;
}
.Form-checkbox__item:not(:nth-last-of-type(-n+2)){
    margin-bottom: 1.5rem;
}
.Form-checkbox__item__text{
    font-size: 1.3rem;
    padding-left: 2.5rem;
    line-height: 1.2;
    padding-top: .2rem;
    display: block;
    position: relative;
}
.Form-checkbox__item__text::before{
    width: 1.8rem;
    height: 1.8rem;
    border-radius: .5rem;
    border: 1px solid #E5E5E5;
    left: 0;
    top: 0;
    position: absolute;
    display: block;
    content: "";
}
.Form-checkbox input[type="checkbox"]{
    display: none;
}
.Form-checkbox input[type="checkbox"]:checked + .Form-checkbox__item__text::after{
    width: .8rem;
    height: .6rem;
    left: .5rem;
    top: .6rem;
    position: absolute;
    background-image: url(../images/common/icon_checkbox-check.svg);
    display: block;
    content: "";
}

/*----- ラジオボタン */
.Form-radio__item{
    display: block;
}
.Form-radio__item:not(:last-child){
    margin-bottom: 1.4rem;
}
.Form-radio__item label{
    display: block;
}
.Form-radio__item__text{
    padding-left: 2rem;
    line-height: 1.2;
    display: block;
    position: relative;
}
.Form-radio__item__text::before{
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    border: 3px solid #E5E0DA;
    left: 0;
    top: 0;
    position: absolute;
    background: #fff;
    display: block;
    content: "";
}
.Form-radio input[type="radio"]{
    display: none;
}
.Form-radio input[type="radio"]:checked + .Form-radio__item__text::before{
    border: 3px solid #000;
}

/*----- テキストエリア */
.Form-block--textarea .Form-block__title{
    margin-bottom: 1.5rem;
}
.Form-textarea{
    line-height: 1.857142;
}
.Form-textarea textarea{
    width: 100%;
    height: 17.3rem;
    border-radius: 1.4rem;
    padding: 1.5rem;
    background: #FFFFFF;
}

.Form-lastmessage{
    font-size: 1.4rem;
    margin-bottom: 4rem;
    line-height: 1.714285;
    letter-spacing: 0;
    text-align: center;
}

/*----- 送信ボタン */
.Form-button{
    width: 28rem;
    height: 5.2rem;
    border-radius: 2.6rem;
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    transition: .3s all ease-in-out;
}
.Form-button:hover{
    opacity: .6;
}
.Form-button__submit{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}



/*-------------------------------
	確認画面
-------------------------------*/

/*----- セレクト */
.Confirm .Form-block--select .Consultation-date-block__item{
    font-size: 1.3rem;
}

/*----- テキストエリア */
.Confirm .Form-block--textarea .Form-block__body{
    line-height: 1.857142;
}

/*----- 戻るボタン */
.Confirm .Form-return{
    margin-top: 2rem;
    display: inline-block;
}
.Confirm .Form-return a{
    font-size: 1.5rem;
    display: block;
}



/*-------------------------------
	確認画面
-------------------------------*/

.Send__inner{
    text-align: center;
}
.Send-logo{
    width: 10.8rem;
    margin-bottom: 2.2rem;
    margin-left: auto;
    margin-right: auto;
}
.Send-logo img{
    width: 100%;
}
.Send-title{
    font-size: 2.6rem;
    margin-bottom: 2rem;
    font-weight: 800;
}
.Send__body{
    margin-bottom: 9.5rem;
}
.Send__text{
    line-height: 1.714285;
}
.Send-button__submit{
    width: 14.5rem;
    height: 3.6rem;
    border-radius: 1.8rem;
    margin-bottom: 1.6rem;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}
.Send-button__submit a{
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #38516f;
    transition: .3s all ease-in-out;
}
.Send-button__link{
    font-size: 1.5rem;
}
/* .Send-button__link a{
    color: #989898;
} */

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

    .Form-block input,
    .Form-block textarea,
    .Form-block select,
    .Form-block__field input[type="text"]{
        font-size: 1.6rem;
    }
}