@charset "utf-8";
/* CSS Document */
/* ---------- reserve_area ---------- */
.reserve_area {
  position: relative;
}

.reserve_area .reserve_area__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.reserve_area .reserve_area__box {
  background: #ede8d6;
  border-radius: 8px;
  padding: clamp(34px, 5vw, 58px) clamp(20px, 4vw, 48px) clamp(38px, 5vw, 62px);
  text-align: center;
  box-sizing: border-box;
}

.reserve_area .titlebox1,
.salon_contact .titlebox1 {
  width: fit-content;
  margin: 0 auto clamp(26px, 4vw, 38px);
  align-items: center;
}

.reserve_area .reserve_area__lead {
  margin-bottom: 22px;
  letter-spacing: .08em;
}

.reserve_area .more {
  justify-content: center;
  margin-bottom: 28px;
}

.reserve_area .reserve_area__note {
  margin-bottom: 12px;
  letter-spacing: .08em;
}

.reserve_area .reserve_area__tel {
  display: inline-block;
}

.reserve_area .reserve_area__tel p {
  color: #222;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: .12em;
  line-height: 1.2;
}

.reserve_area .reserve_area__tel span {
  font-weight: 700;
     font-size:1.2em;
}

.contact-form_a {
  position: relative;
  overflow: hidden;
}

.contact-form_a .title_item1 {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.contact-form_a .title_item1 .en_title2 {
  color: #ff7019;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
}

.contact-form_a .title_item1 h2 {
  color: #222;
  line-height: 1.5;
  margin-top: 10px;
}

.contact-form_a > p {
  width: min(100%, 720px);
  margin-right: auto;
  margin-left: auto;
  color: #333;
  line-height: 2;
  text-align: center;
}

.contact-form_a .contents_bg {
  width: min(100%, 1100px);
  margin: 0 auto;
  background: transparent;
}

.contact-form_a .form-box .box-wrap {
  max-width: 100%;
  margin: 0 auto;
}

.contact-form_a .form-box .box-wrap .box {
  display: grid;
  grid-template-columns: 150px 64px minmax(0, 1fr);
  column-gap: 24px;
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 48px);
}

.contact-form_a .form-box .box-wrap .box h3 {
  grid-column: 1;
  width: auto;
  padding: 0;
  color: #222;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  box-sizing: border-box;
}

.contact-form_a .form-box .box-wrap .box.required-box h3::after {
  content: "必須";
  grid-column: 2;
  position: absolute;
  left: calc(100% + 24px);
  top: 0;
  width: 64px;
  padding: 5px 0;
  background-color: #d90000;
  border-radius: 3px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  transform: none;
  box-sizing: border-box;
}

.contact-form_a .form-box .box-wrap .box .inputbox {
  grid-column: 3;
  width: 100%;
  padding-left: 0;
  box-sizing: border-box;
}

.contact-form_a .form-box .box-wrap .box:not(.filebox) .inputbox > input,
.contact-form_a .form-box .box-wrap .box .inputbox textarea,
.contact-form_a .addressbox input {
  width: 100%;
  padding: 12px 20px;
  background-color: #fff;
  border: 1px solid #e1e8df;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

.contact-form_a .form-box .box-wrap .box .inputbox input::placeholder,
.contact-form_a .form-box .box-wrap .box .inputbox textarea::placeholder {
  color: rgba(112, 112, 112, .5);
}

.contact-form_a .form-box .box-wrap .box .inputbox textarea {
  min-height: clamp(220px, 28vw, 300px);
}

.contact-form_a .form-box .box-wrap .box .inputbox .check-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-top: 0;
}

.contact-form_a .form-box .box-wrap .box .inputbox .check-wrap .check-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-form_a .form-box .box-wrap .box .inputbox .check-wrap .check-box:not(:last-of-type) {
  margin-bottom: 0;
}

.contact-form_a .check-box p {
  cursor: pointer;
}

.contact-form_a .form-box .check-wrap .check-box input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(112, 112, 112, .5);
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  flex: 0 0 20px;
}

.contact-form_a .form-box .check-wrap .check-box input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #31a929;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.contact-form_a .form-box .addressbox > div:not(:last-of-type) {
  margin-bottom: 18px;
}

.contact-form_a .form-box .addressbox .address1 {
  gap: 10px;
}

.contact-form_a .form-box .addressbox .address1 input {
  max-width: 100px;
}

.contact-form_a .check-area {
  margin: clamp(22px, 4vw, 38px) 0 clamp(34px, 5vw, 52px);
  padding-top: 0;
  text-align: center;
}

.contact-form_a .check-area > .flex {
  justify-content: center;
  align-items: center;
}

.contact-form_a .privacy-bt {
  cursor: pointer;
  margin-left: 10px;
}

.contact-form_a .send.more.more1 {
  width: min(100%, 420px);
  min-height: 64px;
  margin: 0 auto;
  padding: 0;
  background: #2faa20;
  border-radius: 8px;
  box-shadow: none;
  transition: transform .3s ease, background-color .3s ease;
}

.contact-form_a .send.more.more1 .send-bt {
  position: relative;
  width: 100%;
  min-height: 64px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 8px;
  box-shadow: none;
}

.contact-form_a .send.more.more1 .send-bt button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0;
  cursor: pointer;
}

.contact-form_a .send.more.more1 .send-bt > .flex {
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 24px);
}

.contact-form_a .send.more.more1 .send-bt::after {
  content: none;
}

.contact-form_a .send.more.more1 p {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
}

.contact-form_a .send.more.more1 .arrow_icon {
  width: 24px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
  position: relative;
}



.contact-form_a .send.more.more1:hover {
  transform: translateY(4px);
  background: #27911c;
}

/* ---------- 768px ---------- */
@media screen and (max-width: 768px) {
  .contact-form_a .form-box .box-wrap .box {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-form_a .form-box .box-wrap .box h3 {
    grid-column: auto;
  }

  .contact-form_a .form-box .box-wrap .box.required-box h3::after {
    position: static;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 52px;
    margin-left: 14px;
    padding: 3px 10px;
    transform: translateY(-2px);
  }

  .contact-form_a .form-box .box-wrap .box .inputbox {
    grid-column: auto;
  }
}

/* ---------- 576px ---------- */
@media screen and (max-width: 576px) {
  .contact-form_a > p {
    text-align: left;
  }

  .contact-form_a .form-box .box-wrap .box {
    margin-bottom: 30px;
  }

  .contact-form_a .form-box .box-wrap .box .inputbox textarea {
    min-height: 220px;
  }

  .contact-form_a .send.more.more1 {
    width: 100%;
  }
}
/* ---------- salon_contact form layout ---------- */
.salon_contact.contact-form_a {
  position: relative;
  overflow: hidden;
}

.salon_contact.contact-form_a .salon_contact__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
}



.salon_contact.contact-form_a .salon_contact__lead {
  margin-bottom: clamp(34px, 5vw, 52px);
  color: #222;
  text-align: center;
  letter-spacing: .08em;
}

.salon_contact.contact-form_a .contents_bg {
  width: min(100%, 1120px);
  margin: 0 auto;
  background: transparent;
}

.salon_contact.contact-form_a .form-box {
  width: 100%;
  margin: 0 auto;
}

.salon_contact.contact-form_a .form-box .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4.2vw, 46px);
  width: 100%;
}

.salon_contact.contact-form_a .form-box .box-wrap .box {
  display: grid;
  grid-template-columns: 150px 58px minmax(0, 1fr);
  column-gap: clamp(22px, 3vw, 34px);
  align-items: center;
  width: 100%;
  margin: 0;
}

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

.salon_contact.contact-form_a .form-box .box-wrap .box h3 {
  grid-column: 1;
  width: auto;
  padding: 7px 0 0;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .08em;
  position: relative;
  box-sizing: border-box;
}

.salon_contact.contact-form_a .form-box .box-wrap .box.required-box h3::after {
  content: "必須";
  position: absolute;
  top: 4px;
  left: calc(100% + clamp(22px, 3vw, 34px));
  width: 58px;
  height: 24px;
  padding: 0;
  background: #d90000;
  border-radius: 3px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0;
  transform: none;
}

.salon_contact.contact-form_a .form-box .box-wrap .box .inputbox {
  grid-column: 3;
  width: 100%;
  padding-left: 0;
  box-sizing: border-box;
}

.salon_contact.contact-form_a .form-box .box-wrap .box:not(.filebox) .inputbox > input,
.salon_contact.contact-form_a .form-box .box-wrap .box .inputbox textarea {
  width: 100%;
  min-height: 42px;
  padding: 11px 20px;
  background: #fff;
  border: none;
  border-radius: 3px;
  box-sizing: border-box;
  color: #222;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.6;
}

.salon_contact.contact-form_a .form-box .box-wrap .box .inputbox input::placeholder,
.salon_contact.contact-form_a .form-box .box-wrap .box .inputbox textarea::placeholder {
  color: rgba(120, 120, 120, .45);
}

.salon_contact.contact-form_a .form-box .box-wrap .box .inputbox textarea {
  min-height: clamp(200px, 24vw, 260px);
  resize: vertical;
}

.salon_contact.contact-form_a .check-area {
  margin: clamp(30px, 4vw, 42px) 0 clamp(28px, 4vw, 40px);
  padding: 0;
  text-align: center;
}

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

.salon_contact.contact-form_a .check-area input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.salon_contact.contact-form_a .check-area p {
  color: #222;
  font-size: 15px;
  line-height: 1.6;
}

.salon_contact.contact-form_a .privacy-bt {
  cursor: pointer;
  margin-left: 0;
}

.salon_contact.contact-form_a .send.more.more1 {
  width: auto;
  min-height: auto;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.salon_contact.contact-form_a .send.more.more1 .send-bt {
  position: relative;
  width: min(100%, 300px);
  min-height: 58px;
  padding: 0;
  background: #222;
  border-radius: 999px;
  box-shadow: none;
  overflow: hidden;
}

.salon_contact.contact-form_a .send.more.more1 .send-bt button {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border: none;
}

.salon_contact.contact-form_a .send.more.more1 .send-bt > .flex {
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 0;
  pointer-events: none;
}

.salon_contact.contact-form_a .send.more.more1 .send-bt p {
  color: #fff;
  font-weight: 500;
  letter-spacing: .08em;
}

.salon_contact.contact-form_a .send.more.more1 .arrow_icon {
  display: none;
}

/* ---------- 768px ---------- */
@media screen and (max-width: 768px) {
  .salon_contact.contact-form_a .contents_bg {
    width: min(100%, 92%);
  }

  .salon_contact.contact-form_a .form-box .box-wrap .box {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .salon_contact.contact-form_a .form-box .box-wrap .box h3 {
    grid-column: auto;
    width: fit-content;
    padding: 0 76px 0 0;
  }

  .salon_contact.contact-form_a .form-box .box-wrap .box.required-box h3::after {
    top: 0;
    right: 0;
    left: auto;
  }

  .salon_contact.contact-form_a .form-box .box-wrap .box .inputbox {
    grid-column: auto;
  }
}

/* ---------- 576px ---------- */
@media screen and (max-width: 576px) {
  .salon_contact.contact-form_a .form-box .box-wrap {
    gap: 28px;
  }

  .salon_contact.contact-form_a .form-box .box-wrap .box .inputbox textarea {
    min-height: 180px;
  }

  .salon_contact.contact-form_a .send.more.more1 .send-bt {
    width: min(100%, 280px);
  }
}
/* ---------- 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){
}

