/* 作成者:大久保 */

/* --------お問い合わせの案内文-------- */

.contact_text_wrapper{
  width: fit-content;
  margin: 5.1rem auto 0;
  font-size: 1.7rem;
  line-height: 2.5rem;
  font-family:var(--NotoSans);
  height: fit-content;
  color: #000;
}

.contact_text{
  margin-top: 2.5rem;
}


/* --------お問い合わせの送信フォーム-------- */

.wpcf7-form{
  font-family:var(--NotoSans);
  width: 64rem;
  margin: 8rem auto 0;
  font-size: 1.7rem;
  display: flex;
  flex-direction: column;
}

.wpcf7-form-control-wrap{
  margin-top: 0;
}


.contact_label{
  width: fit-content;
  margin:2rem 0 0 ;
  font-weight: bold;
  display: flex;
  flex-direction: column;
}

.contact_text_area{
  width: 64rem;
  height:5.5rem;
  border: .1rem solid #000 !important;
  border-radius: 2.75rem;
  padding :0 2.8rem;
  font-size: 1.7rem;
  margin-top: 1rem;
  resize: none;
}

.contact_text_area::placeholder{
  font-size: 1.7rem;
  color: #A0A0A0;
}

/* ----プルダウンメニュー---- */
.category_select{
  width: 64rem;
  font-size: 1.7rem;
  padding-right: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category_select::picker-icon{
  display: none;
}

.category_text{
  color: #000;
}

.category_select::after{
  content: "";
  background-color: #00203A;
  width: 2.2rem;
  height: 1.9rem;
  clip-path: polygon(0 0 , 50% 100% , 100% 0);
}

select,
::picker(select) {
  appearance: base-select;
}

.category_top{
  font-size: 1.7rem;
  height:5.5rem;
}

.category_selected{
  font-size: 1.7rem;
  height:5.5rem;
  border-top: .1rem solid #A0A0A0;
}

/* ----名前入力部分---- */
.nameform_wrapper{
  display: flex;
  justify-content: space-between;
}

.nameform_box{
  width: 30rem;
  margin-top: 2rem;
}

.namebox{
  width: 30rem;
  height:5.5rem;
  margin-top: 1rem;
}

/* ----電話番号入力---- */
.telbox {
  margin-top: 1rem;
  width: 30rem;
  height:5.5rem;
}

/* ----お問い合わせ内容---- */
.contact_content{
  height: 43.3rem;
  width: 64rem;
  padding-top: 1.7rem;
  line-height: 2.5rem;
}

/* ----確認ボタン---- */
.confirmation_button{
  background-color: #00203A;
  width: 13.6rem;
  display: block;
  margin: 9.5rem auto 12.6rem;
  color: white;
  font-size: 1.8rem;
  line-height: 2.5rem;
  padding:1.1rem 0;
  cursor: pointer;
  font-family:var(--NotoSans);
}



/* ----------メディアクエリ---------- */

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


  /* --------お問い合わせの案内文-------- */

  .contact_text_wrapper{
    font-size: 1.5rem;
    line-height: 2.1rem;
    height: 21rem;
    width: 33.5rem;
    margin: 2.1rem auto 0;
  }

  .contact_text{
    margin-top: 2.1rem;
  }
  


  /* --------お問い合わせの送信フォーム-------- */

  .wpcf7-form{
    width: 33.5rem;
    margin: 5.1rem auto 0;
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
  }
  
  .contact_label{
    width: 100%;
    margin:1rem 0 1rem ;
    font-weight: bold;
  }
  
  .contact_text_area{
    width: 100%;
    height:4.4rem;
    border: .1rem solid #000 !important;
    border-radius: 2.8rem;
    padding-left: 1rem;
    font-size: 1.6rem;
  }
  
  .contact_text_area::placeholder{
    font-size: 1.6rem;
  }
  
  /* ----プルダウンメニュー---- */
  .category_select{
    width: 100%;
    font-size: 1.6rem;
    padding-right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .category_select::picker-icon{
    display: none;
  }
  
  .category_text{
    color: #000;
  }
  
  .category_select::after{
    content: "";
    background-color: rgb(0, 32, 58);
    width: 1.9rem;
    height: 1.6rem;
    clip-path: polygon(0 0 , 50% 100% , 100% 0);
  }
  
  select,
  ::picker(select) {
    appearance: base-select;
  }

  .category_top{
    font-size: 1.6rem;
    height:4.4rem;
  }
  
  .category_selected{
    font-size: 1.6rem;
    height:4.4rem;
    border-top: .1rem solid #A0A0A0;
  }
  
  /* ----名前入力部分---- */
  .nameform_wrapper{
    display: flex;
    flex-direction: column;
  }
  
  .nameform_box{
    width: 100%;
    margin-top: 2rem;
  }
  
  .namebox{
    width: 100%;
    margin-top: 1rem;
  }
  
  /* ----お問い合わせ内容---- */
  .contact_content{
    height: 35rem;
    padding-top: 1rem;
    line-height: 2.5rem;
    border-radius: 1.5rem;
  }
  
  /* ----確認ボタン---- */
  .confirmation_button{
    width: 13.6rem;
    display: block;
    margin: 3.7rem auto 10rem;
    color: white;
    font-size: 1.8rem;
    line-height: 2.6rem;
    padding:1.1rem 0;
    cursor: pointer;
  }


}