main.sublevel h1::after {
  background-image: url(/contact/images/h1_img.png);
}
@media screen and (max-width: 768px) {
	main.sublevel h1::after {
	  background-image: url(/contact/images/h1_img_sp.png);
	}
}
.wrapper {
  margin: 80px auto 100px;
  padding: 60px 60px;
  width: calc(100% - 160px);
  max-width: 1280px;
  font-size: 15px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .wrapper {
    width: calc(100% - 40px);
    margin: 30px auto;
    padding: 30px 20px;
  }
}
.wrapper h2 {
  margin-bottom: 48px;
  font-size: 30px;
  padding-bottom: 6px;
  border-bottom: 2px solid #b1002f;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .wrapper h2 {
    margin-bottom: 24px;
    font-size: 18px;
  }
}
.wrapper h3 {
  padding: 0.2em 0.8em;
  margin-bottom: 32px;
  background-color: #ebeff0;
  font-size: 26px;
  color: #323232;
}
@media screen and (max-width: 768px) {
  .wrapper h3 {
    font-size: 17px;
  }
}
.wrapper .txtbody {
  margin-bottom: 64px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .wrapper .txtbody {
    font-size: 14px;
  }
}

.btn {
  min-width: 220px;
  margin: 4px 10px;
}

.arrow_right.arrow_left::after {
  transform: rotate(180deg);
}

.btn.btn_gray {
  border-color: #868686;
}
.btn.btn_gray::after {
  filter: grayscale(100%);
}
.btn.btn_gray:hover {
  color: #4d4d4d;
}

.btn.btn_gray::before {
  background-color: #868686;
}

.btn.btn_lg {
  width: 100%;
  max-width: 300px;
}

.tel_area {
  padding: 6 0 6px;
  margin-bottom: 54px;
}
.tel_area p {
  margin-bottom: 12px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .tel_area p {
    font-size: 16px;
  }
}
.tel_area span {
  display: block;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .tel_area span {
    font-size: 14px;
  }
}

.form-container .required-label {
  padding: 0.1em 0.6em;
  margin-right: 1em;
  background-color: #b1002f;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .form-container .required-label {
    font-size: 12px;
  }
}
.form-container .form-list {
  margin-bottom: 48px;
}
.form-container .form-list .form-item {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.4em 0;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .form-container .form-list .form-item {
    font-size: 14px;
  }
}
.form-container .form-list .form-item dt {
  flex: 1;
}
.form-container .form-list .form-item dd {
  width: 71%;
}
@media screen and (max-width: 768px) {
  .form-container .form-list .form-item dd {
    width: 100%;
  }
}
.form-container .form-list .form-item dd input,
.form-container .form-list .form-item dd textarea {
  width: 100%;
  padding: 1em 0.5em;
  border: none;
  border-radius: 0;
  background-color: #f5f7f7;
  transition: 0.2s;
  box-sizing: border-box;
}
.form-container .form-list .form-item dd input:focus,
.form-container .form-list .form-item dd textarea:focus {
  background-color: #ffdee7;
  outline: none;
  box-shadow: 0px 0px 1px 1px #b1002f;
}
.form-container .form-list .form-item dd select::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.form-container .form-list .form-item dd select {
  appearance: none;
  min-width: 230px;
  height: 2.8em;
  padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}
.form-container .form-list .form-item-textarea {
  display: flex;
  align-items: flex-start;
  padding-top: 8px;
}
.form-container button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.form-container.form-confirm .required-label {
  display: none;
}
.form-container.form-confirm .form-list {
  margin-bottom: 48px;
}
.form-container.form-confirm .form-list .form-item {
  border-top: 0.5px solid #323232;
}
.form-container.form-confirm .form-list .form-item:last-of-type {
  border-bottom: 0.5px solid #323232;
}
.form-container.form-confirm .form-list .form-item dd input,
.form-container.form-confirm .form-list .form-item dd textarea {
  display: none;
}

.privacy_policy {
  padding: 40px;
  margin-bottom: 32px;
  border: 0.5px solid #323232;
}
@media screen and (max-width: 768px) {
  .privacy_policy {
    padding: 32px;
  }
}
.privacy_policy p {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .privacy_policy p {
    font-size: 14px;
  }
}
.privacy_policy p a {
  text-decoration: underline;
}
.privacy_policy .checkarea {
  padding-top: 28px;
  text-align: center;
}
.privacy_policy .checkarea input[type=checkbox] {
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 1em;
  border: 2px solid #b1002f;
  vertical-align: -8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (max-width: 420px) {
  .privacy_policy .checkarea input[type=checkbox] {
    transform: translateY(12px);
    text-align: left;
  }
}
.privacy_policy .checkarea input[type=checkbox]:checked:before {
  position: absolute;
  top: 1px;
  left: 6px;
  transform: rotate(50deg);
  width: 7px;
  height: 14px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
}
.privacy_policy .checkarea input + label {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .privacy_policy .checkarea input + label {
    font-size: 17px;
  }
}/*# sourceMappingURL=contact.css.map */