@charset "utf-8";


.f_bg{
    background-image: url(../images/top/bg_info.jpg);
    background-repeat: repeat;
    background-size: 64px;
}

.f_area{
    padding-top: 70px;
    padding-bottom: 70px;

    text-align: center;

    width: 750px;
    margin: 0 auto;

}

.f_title{
    display: block;
    width: 151px;
    height: auto;
    margin: 0 auto;
}

.f_description{
    margin-top: 20px;
}

.f_table{
    margin-top: 45px;
    width: 100%;
    box-sizing: border-box;

    text-align: left;

}


.f_table dl:first-child{
    border-top: 1px solid #c1bbaf    
}
.f_table dl{
    border-bottom: 1px solid #c1bbaf;
    display:flex;  
    justify-content: flex-start;
}

.f_table dt{
    display: inline-block;
    box-sizing: border-box;
    width: 151px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 6px;
    vertical-align: top;

    font-size: 1.5rem;
    font-weight: normal;

}
.f_table dd{
    display: inline-block;
    box-sizing: border-box;
    width: 605px;
    padding: 19px 0;

    font-family: "游ゴシック体", YuGothic,"游ゴシック", "Yu Gothic";

}

.f_table dd.dd_radio,
.f_table dd.dd_chkbox{
    padding: 32px 0;

}





.f_table tr:first-child{
    border-top: 1px solid #c1bbaf    
}
.f_table tr{
    border-bottom: 1px solid #c1bbaf    
}

.f_table th{
    box-sizing: border-box;
    display: block;
/*    width: 145px;*/
    width: 100%;
    padding: 20px 10px 10px;
    vertical-align: top;

    font-size: 1.5rem;
    font-weight: normal;

}
.f_table td{
    box-sizing: border-box;
    display: block;
/*    width: 605px;*/
    width: 100%;
    padding: 0 10px 20px;

    font-family: "游ゴシック体", YuGothic,"游ゴシック", "Yu Gothic";

}


.f_privacy{
    background-color: rgb(116,83,61,0.5);
    color: #fff;
    padding: 20px 21px 26px;
    margin-top: 21px;

    font-family: "游ゴシック体", YuGothic,"游ゴシック", "Yu Gothic";
}


.priv_title{
    font-size: 1.3rem;
    font-weight: bold;

}

.priv_description{
    margin-top: 10px;
    line-height: 1.5;
    font-size: 1.3rem;
    font-weight: normal;

    
}

label.priv_chkbox{
    display: inline-block;
    margin-top: 12px;
    font-size: 1.3rem;
    font-weight: normal;

}


.contact_form select{
    box-sizing: border-box;
    width: 275px;
    height: 40px;
    background-color: #fff;
    padding: 0 12px;

    font-size: 1.4rem;
    line-height: 40px;
    color: #222;

}

.f_select{
    position: relative;
    width: 275px;
}
.contact_form .f_select:after{
    content: '';
    width: 16px;
    height: 10px;
    background-image: url(../images/form/select.png);
    background-repeat: no-repeat;
    background-size: 16px 10px;
    position: absolute;
    top: 16px;
    right: 10px;
    display: block;
z-index: 2;
pointer-events: none;

}

.contact_form  input[type="text"] {
    box-sizing: border-box;
    width: 600px;
    height: 40px;
    background-color: #fff;
    padding: 0 12px;
    font-size: 1.4rem;
    line-height: 40px;
    color: #222;
}

.contact_form textarea {
    box-sizing: border-box;
    width: 600px;
    height: 160px;
    background-color: #fff;
    padding: 14px 12px;

    font-size: 1.4rem;
    line-height: 1.5;
    color: #222;
}


.f_radio {
    position: relative; /* ボックスの位置を指定する */
    padding: 0 0 0 42px; /* ボックス内側の余白を指定する */

}

.f_radio:after {
position: absolute; /* ボックスの位置を指定する */
content: ""; /* ボックスのコンテンツ */
display: block; /* ブロックレベル要素化する */
top: 50%; /* 上部から配置の基準位置を決める */
left: 15px; /* 左から配置の基準位置を決める */
margin-top: -10px; /* チェック枠の位置 */
width: 20px; /* ボックスの横幅を指定する */
height: 20px; /* ボックスの高さを指定する */
border: none; /* ボックスの境界線を実線で指定する */
border-radius: 50%; /* ボックスの角丸を指定する */
background-color: #fff;
z-index: 1;
}


.f_radio:before {
position: absolute; /* ボックスの位置を指定する */
content: "";
left: 20px; /* 左から配置の基準位置を決める */
margin-top: 2px; /* チェックマークの位置 */
width: 10px; /* ボックスの横幅を指定する */
height: 10px; /* ボックスの高さを指定する */
background: #d97635;/* ボックスの背景色を指定する */
border-radius: 50%; /* ボックスの角丸を指定する */
opacity: 0; /* 要素を透過指定する */
z-index: 2;
}

input[type="radio"]:checked + .f_radio:before {
    opacity: 1; /* 要素を表示する */
}



.dd_radio ul{
    display: flex;
    justify-content: space-between;
}

.dd_radio li{
    width: 32%;
}









.contact_form  input[type="checkbox"] {
    display: none;
}

.f_chk {
    position: relative; /* ボックスの位置を指定する */
    padding: 0 0 0 42px; /* ボックス内側の余白を指定する */

}


.f_chk:after {
position: absolute; /* ボックスの位置を指定する */
content: ""; /* ボックスのコンテンツ */
display: block; /* ブロックレベル要素化する */
top: 50%; /* 上部から配置の基準位置を決める */
left: 15px; /* 左から配置の基準位置を決める */
margin-top: -10px; /* チェック枠の位置 */
width: 20px; /* ボックスの横幅を指定する */
height: 20px; /* ボックスの高さを指定する */
border: none; /* ボックスの境界線を実線で指定する */
border-radius: 4px; /* ボックスの角丸を指定する */
background-color: #fff;
z-index: 1;
}


.f_chk:before {
position: absolute; /* ボックスの位置を指定する */
content: ""; /* ボックスのコンテンツ */
left: 21px; /* 左から配置の基準位置を決める */
margin-top: 0; /* チェックマークの位置 */
width: 5px; /* ボックスの横幅を指定する */
height: 9px; /* ボックスの高さを指定する */
border-right: 2px solid #d97635; /* 境界線（右）のスタイルを指定する */
border-bottom: 2px solid #d97635; /* 境界線（下）のスタイルを指定する */
transform: rotate(45deg); /* 要素を回転させる */
opacity: 0; /* 要素を透過指定する */
z-index: 2;
}

.f_chk.priv_chkbox:before {
position: absolute; /* ボックスの位置を指定する */
content: ""; /* ボックスのコンテンツ */
left: 21px; /* 左から配置の基準位置を決める */
margin-top: 0; /* チェックマークの位置 */
width: 5px; /* ボックスの横幅を指定する */
height: 9px; /* ボックスの高さを指定する */
border-right: 2px solid #d97635; /* 境界線（右）のスタイルを指定する */
border-bottom: 2px solid #d97635; /* 境界線（下）のスタイルを指定する */
transform: rotate(45deg); /* 要素を回転させる */
opacity: 0; /* 要素を透過指定する */
z-index: 2;
}




input[type=checkbox]:checked + .sample_label:before {
opacity: 1; /* 要素を表示する */
}

input[type="checkbox"]:checked + .f_chk:before {
opacity: 1; /* 要素を表示する */
}




.contact_form input[type="submit"]{
    height: 60px;
    width: 350px;
    color: #FFF;
    background: #d97635;
    font-size: 1.4rem;
    line-height: 60px;
    font-weight: bold;
    border-style: none;

    margin-top: 30px;

}


@media screen and (max-width:768px) {
    .f_area{
        padding-top: 70px;
        padding-bottom: 70px;

        text-align: left;

        width: 90%;
        margin: 0 auto;

    }

    .f_table dl{
        display:block;  
        width: 100%;
    }

    .f_table dt
    {
        width: 100%;
    }


    .f_table dd
    {
        padding-top: 0;
        width: 100%;
    }


    .f_table dd.dd_radio,
    .f_table dd.dd_chkbox{
            padding-top: 0;

    }


    .contact_form select{
        box-sizing: border-box;
        width: 100%;
    }

    .contact_form  input[type="text"] {
        box-sizing: border-box;
        width: 100%;
    }

    .contact_form textarea {
        box-sizing: border-box;
        width: 100%;
    }


.contact_form input[type="submit"]{
    width: 100%;
 
}




.dd_radio ul{
    display: block;
    width: 100%;
}

.dd_radio li{
    width: 100%;
    margin-top: 20px;
}

.dd_radio li:nth-child(1){
    margin-top: 0;
}




}

/*send*/

.s_bg{
    background-image: url(../images/top/bg_info.jpg);
    background-repeat: repeat;
    background-size: 64px;
}

.s_area{

    text-align: center;
    padding: 50px 0;

    width: 750px;
    min-height: calc(100vh - 145px - 316px); 

    margin: 0 auto;

/*    display: flex;
    justify-content: center;
    align-items: center;
*/
    line-height: 1.8;

}

.s_area h4{
    margin-bottom: 28px;
}

.sendM{
    height: 60px;
    width: 350px;
    color: #FFF;
    background: #d97635;
    font-size: 1.4rem;
    line-height: 60px;
    font-weight: bold;
    border-style: none;

    margin-top: 30px;

}
.returnB{
    height: 60px;
    width: 350px;
    color: #FFF;
    background: #333;
    font-size: 1.4rem;
    line-height: 60px;
    font-weight: bold;
    border-style: none;

    margin-top: 30px;


}


.return_top{
    margin-top: 20%;
    margin-bottom: 20%;
    text-decoration: underline;

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

    .s_area{
        width:95%;
    }

    .sendM{
        width: 100%;
    }
    .returnB{
        width: 100%;
    }
}