@charset "utf-8";
/* CSS Document */
.breadcrumb {
    margin: 5px 0 0 10px;
    display: flex;
    list-style: none;
    color: #fff;
}
.breadcrumb a{
    color: #fff;
}
.breadcrumb a:hover{
    opacity: 0.5;
}
.breadcrumb li::after{
  content: '＞';
  display: inline-block;
 background:none;
  padding: 0 10px; /*左右に余白*/
}
.breadcrumb li:last-child::after{
  display: none;
}
article form{
    text-align: left;
}
form{
    color:#fff;
    border: 2px solid #fff;
    padding:0 10px;
    margin: 20px 0 ;
    
}
form div{
    margin: 20px 10px;
}
label{
    width:50%;
    margin-right: 10px;
}
input,select{
    width:100%;
    height: 40px;
}
textarea{
  width:100%;
  height: 40px;
  resize:vertical;
}
.send{
     width:50%;
    margin:0 auto 20px;
}
@media screen and (min-width:640px){
   aside{
    height:795px;
    }
    form div{
    display: flex;
    }
}
