/*******************
パンくずリスト
*******************/
.breadcrumbsWrap {
  margin-top: 60px;
  background-color: #fbfdff;
  width: 100%;
  height: 40px;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}
.breadcrumbs {
 display: flex;
  align-items: center;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;  
  padding: 5px 15px;
  font-size: 12px;
}
.breadcrumbs .arrow{
  display: inline-block;
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 1px #aaa;
  border-right: solid 1px #aaa;
  margin-right: 10px;
  margin-left: 10px;
  transform: rotate(45deg);
}

/****************
フォーム
****************/
.form-list {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.form-a {
  margin-bottom: 10px;
}
.form-b input {
  border-radius: 10px;
  width: 100%;
  padding: 15px;
  border: solid 1px #ddd;
}
.wpcf7-textarea {
  padding: 15px;
  border: solid 1px #ddd;
}
.wpcf7-form-control {
  border-radius: 10px;
  width: 100%;
}
.form-submit .wpcf7-form-control {
  width: 200px;
  height: 50px;
  border-radius: 30px;
  margin-top: 30px;
}
.form-submit {
  text-align: center;
}
.form-submit .wpcf7-form-control {
  background-color: aqua;
}
.form-submit .wpcf7-form-control:hover {
  transition: 0.6s;
  background-color: rgba(0, 0, 0, 0.5) !important;
  cursor: pointer;
}
.form-con .form-b {
  display: flex;
  justify-content: center;
}
.form-con .form-b .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 20px; 
}
.form-con .form-b .wpcf7-list-item label input {
  width: 14px;
  height: 14px;
}
.wpcf7-list-item-label {
  font-size: 14px;
}
.wpcf7 form .wpcf7-response-output {
  border: none !important;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}
.form-text {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
/***************************
メディアスクリーン834px以上
***************************/
@media screen and (min-width:834px) {
  /* フォーム */
  .form-list {
    flex-direction: row;
    margin-bottom: 30px;
  }
  .form-a {
    width: 200px;
    font-size: 16px !important;
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }
  .form-con .form-b .wpcf7-list-item label input {
    width: 16px;
    height: 16px;
  }

  .wpcf7-list-item-label {
    font-size: 16px;
  }
  .wpcf7 form .wpcf7-response-output {
    font-weight: 900;
    font-size: 20px;
  }
}
/***************************
メディアスクリーン1100px以上
***************************/
@media screen and (min-width:1100px){
  .breadcrumbsWrap {
    margin-top: 90px;
  }
}
/***************************
メディアスクリーン1115px以上
***************************/
@media screen and (min-width:1115px){
  .breadcrumbs {
    padding-inline: 0;
  }
}