/* お問い合わせ項目 */
.reseption_item_box{
  width: 100%;
  margin-bottom: 5.5rem;
  justify-content: flex-start;
  font-size: 1.6rem;
  color: #8C4F53;
  font-weight: 700;
  font-family: var(--ZenMaru);
}

.reseption_item_title{
  width: 17rem;
  flex-shrink: 0;
}

.contact_category{
  display: flex;
  flex-wrap: wrap;
}

.reseption_item_container{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.form_wrap,.confirm_wrap {
  font-size: 1.6rem;
  color: #8C4F53;
  font-weight: 700;
  font-family: var(--ZenMaru);
}

.form_wrap{
  display: none;
}

.form_container {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.form_container:has(textarea){
  align-items: flex-start;
}

.label{
  width: 17rem;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  flex-shrink: 0;
}

.required{
  background-color: #C81A0F;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 0.2rem 0.5rem;
}

.form_input_container{
  position: relative;
  flex: 1;
  text-align: left;
}

.wpcf7-form-control-wrap:has(select)::after{
  content: "▼";
  position: absolute;
  top: 50%;
  right: 3.9rem;
  font-size: 1.8rem;
  color: #8C4F53;
  pointer-events: none;
  transform: translateY(-50%);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 2rem;
  border: 1px solid #8C4F53;
  border-radius: 5rem;
  background-color: #fff;
  height: auto;
  resize: none;
}

/* プレースホルダー共通設定 */
input::placeholder,
textarea::placeholder{
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--ZenMaru);
  color: #8C4F53;
  opacity: 0.5;
}

/* 入力欄にフォーカスした時の枠線を非表示 */
input:focus,select:focus,textarea:focus{
  outline: none;
}
/* テキストエリアのスクロールバー非表示 */
textarea::-webkit-scrollbar{
  display: none;
}

textarea{
  border-radius: 3rem;
}

input[type="date"]{
  width: auto;
}

input[type="radio"] {
  appearance: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: #FFFFFF;
  cursor: pointer;
}

input[type="radio"]:before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  margin: 0.4rem auto;
  border-radius: 50%;
}

input[type="radio"]:checked:before {
  background: #C81A0F;
}

.wpcf7-list-item{
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.wpcf7-list-item.first{
  margin-left: 0;
}

.wpcf7-list-item > label{
  display: flex;
  gap: 0.8rem;
}

.other_input_wrap{
  margin-top: 2rem;
}

.contact_send_btn_rela{
  position: relative;
  width: fit-content;
  margin: auto;
}

.contact_send_btn{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-radius: 4rem;
  background-color: #C81A0F;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  padding: 2rem;
  margin: auto;
  min-width: 30rem;
}

.send_btn_arrow {
  background-color: #fff;
  position: absolute;
  width: 1.3rem;
  height: 1.4rem;
  object-fit: cover;
  bottom: 2.5rem;
  right: 2.857rem;
  pointer-events: none;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

/* =====================
  画像プレビュー
======================= */
.preview {
  display: none;
}

/* =====================
  確認画面
======================= */
.wpcf7-spinner{
  display: none;
}

.button_confirmations{
  display: flex;
  justify-content: space-between;
  margin:18.85rem auto 0;
  gap: 10rem;
}

.send_btn_arrow.prev {
  right: unset;
  left: 2.857rem;
  clip-path: polygon(0% 50%, 100% 100%, 100% 0%);
}

@media screen and (max-width:699.98px) {
  .form_container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .label {
    /* width: 100%; */
    margin-left: 1.7rem;
  }

  .form_input_container {
    width: 100%;
  }

  input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="date"], select, textarea{
    padding: 1.5rem;
  }

  .contact_send_btn{
    /* border-radius: 2.5rem; */
  }

  .button_confirmations{
    flex-direction: column;
    gap: 3rem;
  }
}