@media ( min-width:768px){
  .sp{
    display: none;
  }
}
@media ( max-width:767px){
  .pc{
    display: none;
  }
}

form p{
  font-size: 14px;
}

h2.newwin_title_header{
  background-color: #BDC102;
  text-align: center;
  color: #FFFFFF;
  padding: 25px 0 15px;
  border-radius: 20px;
  margin-bottom: 30px;
  line-height: 1.5;

  background-image: url('../images_phone/icn_phone.svg');
  background-position: 70px center;
  background-size: 25px auto;
  background-repeat: no-repeat;
}
h3.form_header{
  background-color: #BDC102;
  text-align: center;
  color: #FFFFFF;
  padding: 5px 0 3px;
  border-radius: 100px;
  margin-top: 50px;
  margin-bottom: 30px;
  line-height: 1.5;
}
a+a{
  margin-left: 40px;
}
@media ( max-width:767px){

  h2.newwin_title_header{
    font-size: 4vw;
    font-weight: bold;
    padding: 20px 0 10px;
    border-radius: 15px;
    margin-bottom: 20px;
    background-position: 20px center;
    background-size: 15px auto;
  }

  h3.form_header{
    margin-top:35px;
    margin-bottom:10px;
    font-size: 16px;
  }

  a{
    display: block;
    text-align: right;
  }
  a+a{
    display: block;
  }
}
ul.form_step{
  list-style: none;
  padding: 50px 30px 30px;
  display: flex;
  justify-content: space-between;
}
ul.form_step li{
  position: relative;
  width:20%;
  margin: 0;
  border-radius: 5px;
  background-color: #D3D3D3;
  color:#FFFFFF;
  text-align: center;
  padding: 5px;
}
ul.form_step li.active{
  background-color: #BDC102;
}
ul.form_step li + li{}
ul.form_step li + li:before{
  content:"";
  position: absolute;
  left: -30px;
  top: 10px;
  border: 8px solid #D3D3D3;
  border-width: 5px 10px;
  border-color: transparent transparent transparent #D3D3D3;
}

@media ( max-width:767px){
  ul.form_step{
    padding:40px 0 0px;
  }
  ul.form_step li{
    width:23%
  }
  ul.form_step li + li:before{
    left: -8px;
    top: 13px;
    border-width: 3px 6px;
  }
}

ul.stepbtns{
  margin: 0;
  padding: 0;
  list-style:none;
  display: flex;
  justify-content:space-between;
}
ul.stepbtns li{
  margin: 0;
  padding: 0;
  width: 49%;
  height:200px;
}
ul.stepbtns li>div.stepbtn:hover{
  border-color: #BDC102;
  background-color: #FFFAF1;
  cursor: pointer;
}
ul.stepbtns li>div.stepbtn{
  border: 3px solid #E6E6E6;
  border-radius: 10px;
  padding:15px 15px 25px 85px;
  height: 150px;
}
ul.stepbtns li>div.stepbtn.stepbtn_photo{
  background: url("../images_phone/icn_camera.svg") no-repeat 18px 50px;
  background-size: 50px auto;
}
ul.stepbtns li>div.stepbtn.stepbtn_form{
  background: url("../images_phone/icn_form.svg") no-repeat 18px 50px;
  background-size: 50px auto;
}
ul.stepbtns li>div.stepbtn h4{
  font-size: 18px;
}
ul.stepbtns li>div.stepbtn h4:before{
  content:"";
  width: 12px;
  height: 12px;
  border:1px solid #000000;
  margin-right: 5px;
  border-radius: 100px;
  display: inline-block;
}

@media ( max-width:767px){
 
  ul.stepbtns{
    padding:10px;
    list-style:none;
    display: block;
  }
  ul.stepbtns li{
    width: 100%;
    height:auto;
    margin-bottom: 10px;
  }
  ul.stepbtns li>div.stepbtn{
    padding:10px 10px 15px 55px;
    height: auto;
  }

  ul.stepbtns li>div.stepbtn.stepbtn_photo{
    background-position: 12px center;
    background-size: 30px auto;
  }
  ul.stepbtns li>div.stepbtn.stepbtn_form{
    background-position: 12px center;
    background-size: 30px auto;
  }
  ul.stepbtns li>div.stepbtn p{
    margin-bottom: 0;
  }
}


ul.photo_steps{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
ul.photo_steps li{
  position: relative;
  margin: 0 0 50px;
  padding: 0;
  width: 30%;
}
ul.photo_steps li+li:before{
  content:"";
  position: absolute;
  left: -23px;
  top: 17px;
  border: 8px solid #BDC102;
  border-width: 10px;
  border-color: transparent transparent transparent #BDC102;
}
ul.photo_steps li:nth-of-type(4):before{
  /* display: none!important; */
}
ul.photo_steps li.blank:before{
  display: none!important;
}
ul.photo_steps li h4{
  background-color: #F9F9E8;
  border: 2px solid #BDC102;
  color: #BDC102;
  border-radius: 12px;
  padding-bottom: 3px;
  text-align: center;
  padding-top: 10px;
}
ul.photo_steps li p{
  min-height: 5rem;
}
ul.photo_steps li p>img{
  width: 100%;
  border: 2px solid #CCCCCC;
}
.photo_steps_remark{
  border:2px solid #FFA754;
  border-radius: 8px;
  padding: 10px 10px 10px 50px;
  margin-bottom: 50px;
  background-image: url('../images_phone/icn_remark.svg');
  background-position: 15px center;
  background-size: 25px auto;
  background-repeat: no-repeat;
}

@media ( max-width:767px){
  ul.photo_steps{
    display: block;
    padding: 10px 30px;
  } 
  ul.photo_steps li{
    width:100%;
  }
  ul.photo_steps li+li:before{
    left: calc(50% - 10px);
    top: -30px;
    transform: rotateZ( 90deg);
  }
  ul.photo_steps li p{
    min-height: 0;
  }
}


.bg{
  background: #F6F6F6;
  padding:3px 20px;
  margin-bottom: 20px;
}

p.subheading{
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: bold
}
fieldset legend{
  font-size: 1.6rem;
}
fieldset label{
  display: block;
}
input[type=file]{
  display: inline-block;
  width: 90%;
  margin-bottom: 10px;
}
.item .icn_attention{
  position: relative;
  /* left: -10px; */
  top: -2px;
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 5px;
    width: 3em;
}
.icn_attention.icn_attention-normal{
  background-color: #999999;
}
.item .blank{
  display: none;
}

@media ( max-width:767px){

  p.subheading{
    font-size: 1.6rem;
  }
  form fieldset{
    padding-left: 15px;
    padding-right: 15px;
  }
  fieldset legend{
    font-size: 1.4rem;
  }
  fieldset .col-xs-12{
    padding:0;
  }
  ul{
    margin-left: 0;
    padding-left: 25px;
  }
  li{
    font-size: 13px;
  }

  input[type=file]{
    display: inline-block;
    width: 90%;
    margin-left: 5px;
    margin-bottom: 5px;
  }
  label span.required{
    left: -0px;
    top: 0px;
  }
}

ul.requirement {
  list-style: none;
  padding:0;
  margin: 0 0 10px;
}
ul.requirement li {
  position: relative;
  padding-left:15px;
  margin: 0 0 5px;
}
ul.requirement li:before {
  content: "";
  display: inline-block;
  position: absolute;
  left:0px;
  top:4px;
  border:6px solid transparent;
  border-color: transparent transparent transparent #BDC102;
}
.item+fieldset{
  margin-top: 40px;
}