@charset "UTF-8";

/* ---------------------------------
  contact_content
--------------------------------- */
.contact_content {
  background-color: #F7F4E6;
  border-radius: .8rem;
  padding: 0 10rem 4rem;
  color: #4C4948;
}
.contact_content + .contact_content {
  margin-top: 9rem;
}
.contact_content h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  border-radius: .8rem;
  width: 48rem;
  text-align: center;
  padding: 1.2rem 0;
  display: flex;
  justify-content: center;
  margin: auto;
  transform: translateY(-50%);
  position: relative;
  background-color: #55AA4E;
}
.contact_content.contact_form h2 {
  background-color: #FF842B;
}
.contact_content h2::after {
  content: "";
  width: 1.6rem;
  height: 1.4rem;
  clip-path: polygon(55% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  background-color: #55AA4E;
}
.contact_content.contact_form h2::after {
  background-color: #FF842B;
}
.contact_content .manager {
  font-size: 1.8rem;
  font-weight: 500;
  background-color: #fff;
  padding: .4rem 3.2rem .4rem 5.3rem;
  margin-bottom: .4rem;
}
.contact_content .tel_number {
  font-size: 5.5rem;
  font-weight: 700;
  display: flex;
  column-gap: .5rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.contact_content .tel_number::before {
  content: "";
  width: 4.5rem;
  height: 8rem;
  background-image: url(/assets/images/contact/icon_tel_gray.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  display: block;
}
.contact_content .reception_hours {
  font-size: 2rem;
  font-weight: 500;
}
.contact_content .lead_text {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 4.3rem;
  text-align: center;
}
.purpose_block h3,
.form_content h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 7.5rem 0 6rem;
  padding: 1.5rem 0;
  border-top: solid .2rem #000;
  border-bottom: solid .2rem #000;
}
.purpose_block {
  margin-top: 8rem;
}
.purpose_block,
.form_content {
  font-size: 2rem;
}
.purpose_block dl + dl,
.form_content dl + dl {
  margin-top: 4rem;
}
.purpose_block dt,
.form_content dt {
  margin-bottom: 1.8rem;
  font-weight: 500;
}
.purpose_block  dt::before,
.form_content  dt::before {
  content: "任意";
  color: #fff;
  margin-right: 1.3rem;
  font-weight: 500;
  padding: .3rem 1rem;
  background-color: #0d8eb2;
  font-size: 2rem;
}
.form_content .required dt::before {
  content: "必須";
  background-color: #FF842B;
}
.textbox,
textarea {
  background-color: #fff;
  border: .1rem solid #707070;
  border-radius: .8rem;
  width: 100%;
  padding: 1rem;
}
input[type="text"]::placeholder,
textarea::placeholder {
  color: #aaa;
}
.textbox {
  height: 6rem;
}
.textbox_s {
  width: 10rem;
  margin-right: 1rem;
}
.form_content textarea {
  height: 20rem;
}
.input_list li:not(:last-child) {
  margin-bottom: 1.2rem;
}
.checkbox,
.radio {
  display: inline-flex;
  position: relative;
  cursor: pointer;
  align-items: flex-start;
}
.checkbox::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  border: .1rem solid #707070;
  background-color: #fff;
  flex-shrink: 0;
  margin-right: 1rem;
  margin-top: .4rem;
}
.radio::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  border: .1rem solid #707070;
  background-color: #fff;
  flex-shrink: 0;
  margin-right: 1rem;
  margin-top: .8rem;
}
.radio input[type="radio"]:checked::after {
  content: "";
  width: .8rem;
  height: .8rem;
  position: absolute;
  left: .5rem;
  top: 1.3rem;
  background-color: #707070;
  border-radius: 50%;
}
.checkbox input[type="checkbox"]:checked::after {
  content: '';
  display: block;
  position: absolute;
  top: 1rem;
  left: .4rem;
  width: 1.5rem;
  height: .9rem;
  border-left: .3rem solid #707070;
  border-bottom: .3rem solid #707070;
  transform: rotate(-45deg);
}
.checkbox + .add_input {
  margin-left: 3.4rem;
}
.radio + .add_input {
  margin-left: 2.8rem;
}
.add_input {
  margin-top: 1rem;
}
.add_input input:disabled {
  background-color: #eee;
  border-color: #ccc;
}
.add_input input:not(:last-of-type) {
  margin-bottom: 1rem;
}
.form_content .name_input {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}
.form_content .address_input {
  display: flex;
  align-items: center;
}
.form_content .address_input .address_zip {
  width: 12rem;
  margin-left: 1rem;
}
.form_content .address_input .address_text {
  margin-left: 2rem;
}
.form_btn_block {
  margin-top: 7rem;
  text-align: center;
}
.form_btn_block .form_btn {
  color: #FF842B;
  font-size: 2.4rem;
  text-align: center;
  padding: 2rem 19rem;
  border-radius: 10rem;
  border: .3rem solid #FF842B;
  background-color: #fff;
  box-shadow: .5rem .5rem 0 rgba(147, 147, 146, .62);
  margin-bottom: 3.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
}
.form_btn_block .form_btn:hover {
  opacity: .6;
}
.form_btn_block .form_btn:disabled {
  color: #999;
  background-color: #efefef;
  border-color: #ccc;
  pointer-events: none;
}
.form_btn_block .privacy_text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
}
.form_btn_block .privacy_text a {
  color: #FF842B;
  text-decoration: underline;
  margin-top: 3.2rem;
}
.hidden_input_area {
  display: none;
}



@media screen and (max-width: 768px) {
  .contact_content {
    border-radius: 0;
    padding: 0 1.6rem 4rem;
  }
  .contact_content h2 {
    font-size: 2rem;
    border-radius: .8rem;
    width: 85%;
  }
  .contact_content .manager {
    font-size: 1.6rem;
    display: block;
    background-color: #fff;
    padding: .4rem;
  }
  .contact_content .tel_number {
    font-size: 4rem;
  }
  .contact_content .tel_number::before {
    width: 3rem;
    height: 5.5rem;
  }
  .contact_content .reception_hours {
    font-size: 1.6rem;
  }
  .contact_content .lead_text {
    font-size: 1.8rem;
  }
  .purpose_block {
    margin-top: 8rem;
  }
  .purpose_block,
  .form_content {
    font-size: 1.8rem;
  }
  .purpose_block  dt::before,
  .form_content  dt::before {
    padding: .5rem 1rem;
    font-size: 1.4rem;
  }
  .form_content .address_input {
    flex-wrap: wrap;
  }
  .form_content .address_input .address_text {
    margin: 1rem 0 0;
  }
  .form_btn_block .form_btn {
    font-size: 2rem;
    padding: 1rem 0;
    width: 220px;
  }
}

/* ---------------------------------
  privacy_modal
--------------------------------- */
.modal_privacy_trigger {
  cursor: pointer;
}
.modal_privacy {
  display: none;
  width: 100rem;
  padding: 7rem 11.7rem 7rem 7rem;
  background-color: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  font-weight: 500;
}
.privacy_content + .privacy_content {
  margin-top: 8.8rem;
}
.modal_privacy h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.modal_privacy h3 {
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
}
.modal_privacy a {
  color: #199092;
}
.modal_privacy .call_center_tel {
  font-size: 2rem;
  margin: .8rem 0 2rem;
}
.modal_privacy .call_center_tel a {
  color: #8D0606;
}
.modal_close_btn {
  position: absolute;
  top: 6.6rem;
  right: 7.2rem;
  cursor: pointer;
  width: 3.5rem;
  height: 3.5rem;
}
.modal_close_btn::before,
.modal_close_btn::after {
  content: "";
  width: 4rem;
  height: .3rem;
  background-color: #707070;
  border-radius: 10rem;
  position: absolute;
  top: 50%;
  left: calc(50% - 2rem);
}
.modal_close_btn::before {
  transform: rotate(45deg);
}
.modal_close_btn::after {
  transform: rotate(-45deg);
}
.modal_bg {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,.7);
  z-index: 190;
}
.status_select {
  display: none;
}

@media screen and (max-width: 768px) {
  .modal_privacy {
    display: none;
    width: 100%;
    height: 100dvh;
    padding: 6rem 3rem 2rem;
    top: 0;
    left: 0;
    transform: translate(0);
    overflow: auto;
  }
  .privacy_content + .privacy_content {
    margin-top: 4rem;
  }
  .modal_privacy h3 {
    font-size: 1.6rem;
    text-align: center;
    white-space: nowrap;
  }
  .modal_privacy .call_center_tel {
    font-size: 1.7rem;
    margin: 4rem 0 1.1rem;
  }
  .modal_close_btn {
    top: 1.8rem;
    right: 1.5rem;
    width: 2.2rem;
    height: 2.2rem;
  }
  .modal_close_btn::before,
  .modal_close_btn::after {
    width: 3rem;
    left: calc(50% - 1.5rem);
  }
  .privacy_link {
    text-indent: -1em;
    display: inline-block;
    margin-left: 1em;
  }
}
