
@CHARSET "UTF-8";
/*** メイン ***/
    .h1_img {
        background: url(../images/entry/main.jpg) center 0 no-repeat;
        height: 0;
        padding-top: 30%;
        background-attachment: fixed;
        background-size: 100%;
        position: relative;
        margin-bottom: 10px;
    }
    .entry_concept {
        width: 80%;
        margin: 0 auto;
        font-size: 16px;
    }

/*** ラジオボタン　***/
    .content-input{
      display: none;
    }
    .content-input + label{
      padding-left: 28px;
      position:relative;
    }
    .content-input + label::before {
        content: "";
        display: block;
        position: absolute;
        top: 5px;
        left: 0;
        width: 20px;
        height: 20px;
        border: 1px solid #999;
        border-radius: 50%;
        background: #efefef;
    }
    .content-input:checked + label{
      color: #0080f3;
    }
    .content-input:checked + label::after{
      content: "";
      display: block;
      position: absolute;
      top: 8px;
      left: 3px;
      width: 16px;
      height: 16px;
      background: #0080f3;
      border-radius: 50%;
    }
    /* css checkbox01 */
    .FormBanner-input{
      display: none;
    }
    .FormBanner-parts{
      padding-left: 26px;
      position:relative;
      margin-right: 20px;
    }
    .FormBanner-parts::before{
      content: "";
      display: block;
      position: absolute;
      top: 7px;
      left: 0;
      width: 15px;
      height: 15px;
      border: 1px solid #999;
      border-radius: 4px;
    }
    .FormBanner-input:checked + .FormBanner-parts{
      color: #257bc2;
    }
    .FormBanner-input:checked + .FormBanner-parts::after{
      content: "";
      display: block;
      position: absolute;
      top: 2px;
      left: 5px;
      width: 7px;
      height: 14px;
      transform: rotate(40deg);
      border-bottom: 3px solid #257bc2;
      border-right: 3px solid #257bc2;
    }
/*** フォーム部分　***/


.contact_form_box {
 
}
.contact_form {
    box-sizing: border-box;
    width: 90%;
    margin:0 auto;
    border: 1px solid #ccc;
}
.contact_form input {
    background: #efefef;
    border: 1px solid #999;
    font-family: Noto Sans JP;
    border-radius: 5px;
    padding: 1%;
    box-sizing: border-box;
}
.contact_form select {
    background: #efefef;
    border: 1px solid #999;
    font-family: Noto Sans JP;
    border-radius: 5px;
    padding: 1%;
    box-sizing: border-box;
}
.form_list {
    width: 100%;
    display: table;
    font-size: 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #ccc;
}
.form_list_2 {
    padding-top: 2%;
}
.contact_form:first-child{
    padding-top:0;
}
.form_list_left {
    display: table-cell;
    vertical-align: middle;
    width: 240px;
    padding: 2%;
    font-size: 16px;
    font-family: Noto Sans JP;
    box-sizing: border-box;
    border-right: 1px solid #ccc;
}
.form_list_right {
    display: table-cell;
    vertical-align: top;
    padding: 3%;
    box-sizing: border-box;
    font-size: 16px;
}
.form_list_right_chk {
    background: #f5f6f8;
    display: table-cell;
    vertical-align: top;
    padding: 3%;
    box-sizing: border-box;
    font-size: 16px;
}

.terms_of_service {
    width: 100%;
    border: 1px solid #ddd;
    height: 200px;
    overflow-y: scroll;
    padding: 4px 10px;
    box-sizing: border-box;
}
.terms_of_service_ttl {
    text-align: center;
    margin-bottom: 10px;
}
.terms_of_service_txt {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 6px;
}
.must {
    font-size: 12px;
    border-radius: 4px;
    background: #0080f3;
    color: #fff;
    padding: 2px 6px;
    vertical-align: middle;
    box-sizing: border-box;
    margin-right: 6px;
    font-family: Noto Sans JP;
}
.option {
    font-size: 12px;
    border-radius: 4px;
    background: #fff;
    border:1px solid #000;
    color: #333;
    padding: 2px 6px;
    box-sizing: border-box;
    margin-right: 6px;
}
.form_btn {
    width: 300px;
    margin: 20px auto;
    font-weight: bold;
    display: block;
    box-sizing: border-box;
    padding: 15px 10px;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    color: #257bc2;
    border: 1px solid #c6c9d3;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 0 0 #c6c9d3;
}
.form_btn:hover {
    color: #fff;
    border: 1px solid transparent;
    background-color: #0080f3;
    box-shadow: none;
}
.form_btn_chk {
    width: 300px;
    margin: 20px auto;
    font-weight: bold;
    display: block;
    box-sizing: border-box;
    padding: 15px 10px;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    color: #0080f3;
    border: 1px solid #c6c9d3;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 0 0 #c6c9d3;
}
.form_btn_chk:hover {
    color: #fff;
    border: 1px solid transparent;
    background-color: #257bc2;
    box-shadow: none;
}
.back_link a{
    width: 300px;
    margin: 20px auto;
    font-weight: bold;
    display: block;
    box-sizing: border-box;
    padding: 15px 10px;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    color: #257bc2;
    border: 1px solid #c6c9d3;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 0 0 #c6c9d3;
}
/*
.back_link a:hover {
    color: #fff;
    border: 1px solid transparent;
    background-color: #0080f3;
    box-shadow: none;
}
*/
.form_list_last {
    display: table;
    width: 100%;
    margin-top: 20px;
}
.last_left,.last_right {
    display: table-cell;
    width: 50%;
}
.content_bg a {
    font-weight: 500;
    color: #0080f3;
}
.radio_box {
    width: 100%;
    display: table;
}
.radio_box li {
    display: inline-block;
    margin-right: 30px;
}
.f_year {
    width: 130px;
}
.form_yuubin {
    margin-bottom: 20px;
}
.form_yuubin input{
    width: 30%;
}
.form_banchi input {
    width: 80%;
}
input#form6 {
    width: 80px;
}
.contact_form {
    box-sizing: border-box;
    width: 90%;
    margin: 0 auto 20px auto;
    border: 1px solid #ccc;
}
/*** ***/

.form_step_box {
    display: block;
    position: relative;
    margin-top: 30px;
    margin-bottom: 25px;
    height: 50px;
}

.form_step_box:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #0080f3;
}
.form_step {
    position: relative;
    width: 250px;
    margin: 0 auto;
  }
.form_step_item {
    position: relative;
    float: left;
    width: 50px;
    margin-left: 50px;
    padding: 19px 0;
    text-align: center;
    color: #999;
    font-size: 12px;
    line-height: 1;
    background-color: #f4f7fa;
    border-radius: 25px;
  }
.form_step_item.form_step_active {
    color: #fff;
    background: #0080f3;
  }
.form_step_item:first-child {
    margin-left: 0;
  }
.form_step_item_no {
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    color: #5f5f5f;
}

.thk_txt {
    width: 90%;
    margin: 0 auto;
    font-size: 16px;
}


@media screen and ( max-width:768px){
	.h1_img {
        padding: 20% 0;
        background-attachment: fixed;
        background-size: 100%;
        position: relative;
        margin-bottom: 10px;
    }
    .radio_box li {
        display: inline-block;
        margin-right: 24px;
        vertical-align: top;
    }
    .form_yuubin input {
        width: 38%;
    }
    .form_list_left {
        display: block;
        width: 100%;
        border-style: none;
    }
    .form_list_right {
        display: block;
        width: 100%;
        border-style: none;
    }
    .f_year {
        width: 130px;
        margin: 0 0px 10px 0;
    }
   .contact_form select {
    background: #efefef;
    border: 1px solid #999;
    font-family: Noto Sans JP;
    border-radius: 5px;
    padding: 1%;
    box-sizing: border-box;
    width: 80%;
} 

.last_left, .last_right {
    display: block;
    width: 100%;
    /* margin: 0 auto; */
}
.form_list_right_chk {
    background: #f5f6f8;
    display: block;
    vertical-align: top;
    padding: 3%;
    box-sizing: border-box;
    font-size: 16px;
}

}
