@charset "utf-8";
/* CSS Document */
.titlebox1 {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(-48px, -4vw, -40px);
}
.titlebox1 h2 {
  line-height: 1;
}

.reserve_a .reserve_box {
  max-width: 1280px;
  margin: 0 auto;
  background: #E7DED1;
  text-align: center;
  padding:
    clamp(76px, 8vw, 92px)
    clamp(20px, 5vw, 80px)
    clamp(54px, 6vw, 72px);
  border-radius: 14px;
}

.reserve_a .lead1 {
  margin-bottom: 26px;
  letter-spacing: .08em;
}

.reserve_a .reserve_more_wrap {
  justify-content: center;
  margin-bottom: 28px;
}

.reserve_a .tel_lead {
  margin-bottom: 10px;
  letter-spacing: .08em;
}

.reserve_a .telbox {
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  color: #4A4745;
  text-decoration: none;
}

.reserve_a .telbox p {
  color: #4A4745;
  letter-spacing: .1em;
}

.reserve_a .telbox .tel {
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  line-height: 1;
}

/* ---------- mail form ---------- */
.contact-form_a .titlebox h2 {
  line-height: 1;
}

.contact-form_a .form_lead {
  letter-spacing: .08em;
}

.contact-form_a .form-box {
  max-width: 980px;
  margin: 0 auto;
}

.contact-form_a .box-wrap .box {
  align-items: center;
  gap: clamp(20px, 4vw, 36px);
  margin-bottom: 28px;
}

.contact-form_a .box-wrap .box.flex-top {
  align-items: flex-start;
}

.contact-form_a .labelbox {
  width: 210px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-shrink: 0;
}

.contact-form_a .labelbox h3 {
  font-weight: 400;
  letter-spacing: .08em;
  color: #4A4745;
}

.contact-form_a .required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 22px;
  background: #D80000;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  border-radius: 2px;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.contact-form_a .inputbox {
  flex: 1;
}

.contact-form_a input[type="text"],
.contact-form_a input[type="tel"],
.contact-form_a input[type="email"],
.contact-form_a textarea {
  width: 100%;
  border: none;
  background: #fff;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #4A4745;
  border-radius: 0;
  box-sizing: border-box;
}

.contact-form_a input::placeholder,
.contact-form_a textarea::placeholder {
  color: rgba(74, 71, 69, .35);
}

.contact-form_a textarea {
  min-height: 210px;
  resize: vertical;
}

.contact-form_a .check-area {
  margin-top: 30px;
  text-align: center;
}

.contact-form_a .check-area > div {
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.contact-form_a .check-area input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.contact-form_a .privacy-bt {
  cursor: pointer;
}

.contact-form_a .send {
  justify-content: center;
  margin-top: 32px;
}

.contact-form_a .send-bt {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 54px;
  border: 1px solid #9A836C;
  border-radius: 999px;
  background: transparent;
  overflow: hidden;
  transition: .3s;
}

.contact-form_a .send-bt button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.contact-form_a .send-bt p {
  color: #9A836C;
  letter-spacing: .12em;
  position: relative;
  z-index: 1;
}

.contact-form_a .send-bt:hover {
  transform: translateY(4px);
}

/* ---------- responsive ---------- */
@media screen and (max-width: 768px) {
  .contact-form_a .box-wrap .box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-form_a .labelbox {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-form_a .inputbox {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .reserve_a .titlebox {
    margin-bottom: -32px;
  }

  .reserve_a .reserve_box {
    padding:
      64px
      30px
      44px;
    border-radius: 12px;
  }

  .reserve_a .reserve_more_wrap {
    flex-direction: column;
    align-items: center;
  }

  .reserve_a .more_btn,
  .reserve_a .more_btn a,
  .contact-form_a .send-bt {
    width: 100%;
  }

  .reserve_a .more_btn a,
  .contact-form_a .send-bt {
    max-width: 280px;
  }

  .contact-form_a .labelbox {
    gap: 10px;
  }

  .contact-form_a input[type="text"],
  .contact-form_a input[type="tel"],
  .contact-form_a input[type="email"],
  .contact-form_a textarea {
    padding: 12px 14px;
  }

  .contact-form_a textarea {
    min-height: 180px;
  }

  .contact-form_a .check-area > div {
    flex-wrap: wrap;
  }
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

