/* ==========================================
   Media Query Mixins
   ========================================== */
main {
  background: var(--bg2);
}

.contact {
  background: var(--br);
  padding: 45rem 10rem 60rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 38rem;
  width: auto;
}
.contact__ttl-en {
  height: 25rem;
  margin-bottom: 12rem;
}
.contact__ttl-jp {
  color: #FFF;
  font-size: 16rem;
  font-weight: 500;
}
.contact__text {
  color: #fff;
  font-size: 12rem;
  font-weight: 400;
  margin-bottom: 15rem;
}
.contact__tel {
  color: #fff;
  font-family: "din-2014", sans-serif;
  text-decoration: none;
  font-size: 24rem;
  font-weight: 500;
  position: relative;
  padding-left: 35rem;
  margin-bottom: 10rem;
}
.contact__tel::before {
  content: "";
  background: url("../img/sp_icon.png") no-repeat center/cover;
  width: 26rem;
  height: 26rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contact__line {
  width: 350rem;
  margin-bottom: 35rem;
}
.contact .read {
  font-size: 16rem;
  line-height: 24rem;
  text-align: center;
  color: var(--br);
  margin-bottom: 26rem;
}
.contact .req,
.contact .fre {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  width: 52rem;
  height: 30rem;
  font-size: 14rem;
  line-height: 1;
  border-radius: 5rem;
}
.contact .req {
  color: var(--wh);
  background: var(--rd);
}
.contact .fre {
  color: var(--wh);
  background: var(--br);
}
.contact form {
  background: var(--wh);
  color: var(--br);
  border-radius: 5rem;
  padding: 20rem 15rem 45rem;
  margin: 0 10rem;
}
.contact form dt {
  font-size: 16rem;
  line-height: 24rem;
  padding-left: 8rem;
  border-left: 4rem solid var(--br);
  margin-bottom: 12rem;
}
.contact form dd {
  color: var(--bk);
  margin-bottom: 30rem;
}
.contact form dd > *:not(:last-child):not(.formError) {
  margin-bottom: 8rem;
}
.contact form dd .txt {
  color: var(--br);
}
.contact form dd:has(input[type=checkbox]) {
  padding: 0 10rem;
}
.contact form input,
.contact form textarea,
.contact form select {
  max-width: 100%;
  padding: 12rem 10rem;
  border: 1rem solid var(--br);
  font-family: inherit;
  font-size: 16rem;
  line-height: 24rem;
  color: #6F6254;
}
.contact form .required::placeholder {
  color: #6F6254;
}
.contact form :not(.required)::placeholder {
  color: #6F6254;
}
.contact form select,
.contact form input[type=text],
.contact form input[type=date] {
  width: 100%;
}
.contact form input[type=date] {
  padding: 5.5rem 10rem;
}
.contact form input[type=date]::-webkit-calendar-picker-indicator {
  width: 35rem;
  height: 35rem;
  cursor: pointer;
  opacity: 1;
  background: url("../img/calender_icon.png") no-repeat center/contain;
}
.contact form input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  width: 1em;
  height: 1em;
  border: 1rem solid #6F6254;
  padding: 0;
  vertical-align: middle;
}
.contact form input[type=checkbox]:checked {
  background: #6F6254 url("../img/checkbox_arr.svg") no-repeat center/cover;
}
.contact form label {
  display: block;
  color: #6F6254;
}
.contact form .note {
  color: #6F6254;
  font-size: 14rem;
  line-height: 1.6666666667;
  margin-top: 10rem;
}
.contact form .note .link {
  color: inherit;
  text-decoration: underline;
}
.contact form select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8.66'%3E%3Cpolygon points='0,0 10,0 5,8.66' fill='%23434444'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20rem center;
  background-size: 11rem 9.5rem;
  padding-right: 34rem;
}
.contact form select::-ms-expand {
  display: none;
}
.contact form textarea {
  background: #F5F5F5;
  height: 168rem;
  width: 100%;
}
.contact form .required {
  border: 1rem solid var(--rd);
  background-color: #FBF2F4;
}
.contact form .btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
}
.contact form .bt {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 334rem;
  text-decoration: none;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 300ms 0s ease;
}
.contact form .bt:hover {
  opacity: 0.6;
}
.contact form .bt.submit {
  width: 100%;
  font-size: 17rem;
  height: 60rem;
  color: var(--wh);
  background: var(--or);
  border: 1rem solid var(--or);
  border-radius: 25rem;
}
.contact form .bt.submit::after {
  display: block;
  content: "";
  width: 24rem;
  height: 24rem;
  border: 2rem solid var(--wh);
  border-bottom-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
  position: absolute;
  right: 21rem;
  top: calc(50% - 12rem);
}
.contact form .bt.back {
  width: 140rem;
  font-size: 12rem;
  height: 40rem;
  color: var(--br);
  background: var(--bg1);
  border: 1rem solid var(--br);
  border-radius: 15rem;
}
.contact form .bt.back::after {
  display: block;
  content: "";
  width: 8rem;
  height: 8rem;
  border: 2rem solid var(--br);
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(45deg);
  position: absolute;
  left: 8rem;
  top: calc(50% - 4rem);
}
.contact .privacy {
  width: 100%;
  height: 176rem;
  padding: 15rem 30rem;
  margin-bottom: 40rem;
  border: 1rem solid #707070;
  color: #434444;
  overflow: scroll;
}
.contact .privacy h3 {
  font-size: 16rem;
  line-height: 20rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16rem;
  text-align: center;
  color: #6F6254;
}
.contact .privacy h4 {
  font-size: 16rem;
  line-height: 20rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.contact .privacy p {
  font-size: 12rem;
  line-height: 20rem;
}
.contact .privacy > *:not(:last-child) {
  margin-bottom: 20rem;
}
.contact .bottom-note {
  color: #6F6254;
  font-size: 14rem;
  line-height: 1.7142857143;
  padding: 15rem 12rem 0;
  letter-spacing: 0.1em;
}

.footer {
  padding-top: 70rem;
}

/*# sourceMappingURL=style.css.map */
