@charset "UTF-8";

/*================================================
 *  
 ================================================*/
#contact .l-wrap {
  max-width: 85rem;
}

.form_list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.form_list dt {
  width: 20.5rem;
  margin-bottom: 3.5rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form_list dt sup {
  display: inline-block;
  background: var(--orange);
  padding: 0.5rem;
  border-radius: 0.4rem;
  font-size: 1.3rem;
  line-height: 1;
  color: #fff;
}

.form_list dd {
  width: calc(100% - 23.5rem);
  margin-bottom: 3.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.form_list dd select,
.form_list dd input,
.form_list dd textarea {
  display: block;
  width: 100%;
  min-height: 4rem;
  padding: 1rem;
  border: 1px solid #C9C9C9;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.form_list dd select {
  color: #C9C9C9;
  -webkit-appearance: none;
  appearance: none;
  background-image: url(../../images/contact/select.webp);
  background-repeat: no-repeat;
  background-size: 2.5rem 2.5rem;
  background-position: right 1rem center;
  cursor: pointer;
}



.form_list dd textarea {
  height: 19.5rem;
  resize: none;
}

.form_list .form_txt {
  align-items: start;
  padding-top: 0.5rem;
}

::placeholder {
  color: #C9C9C9;
}


.form_policy {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

.form_policy label {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 .5rem;
    margin: 0 auto;
    cursor: pointer;
}
  
.form_policy label a {
    transition: color .3s ease;
}
  
.form_policy label a:hover {
    color: var(--orange);
}

.form_policy input[type="checkbox"] {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 100%;
    border: .1rem solid var(--black);
    position: relative;
    top: .1rem;
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.form_policy input[type="checkbox"]:checked:before {
    content: '';
    width: .8rem;
    height: .8rem;
    border-radius: 100%;
    background: var(--orange);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form_policy button {
    width: 38rem;
    font-weight: 700;
    margin: 4rem auto 0;
  }

.form_policy button:hover .btnRotate_wrap span:first-of-type {
  margin: -2.8rem 0px 0px 0px;
}

@media screen and (max-width: 1000px) {
    #contact .l-wrap {
        max-width: 70rem;
    }
    .form_list dt {
        width: 100%;
        margin-bottom: .5rem;
        font-size: 1.5rem;
        justify-content: start;
        gap: 1rem;
    }
    .form_list dd {
        width: 100%;
    }
    .form_policy button {
        width: 27rem;
        margin: 3.5rem auto 0;
    }
}