@charset "UTF-8";
/*
|---------------------------------------------------------------
| contact関連
|---------------------------------------------------------------
*/
.mbsc-contact {
  --mbs-container-maxwidth: 1200px;
  display: block;
  width: 100%;
  padding: clamp(25px, 3.33vw, 40px) 0 clamp(40px, 5.33vw, 60px);
}
.mbsc-contact__header {
  display: block;
  width: 100%;
}
.mbsc-contact__body {
  display: block;
  width: 100%;
}
.mbsc-contact__lead {
  display: block;
  width: 100%;
  font-size: clamp(13px, 1.73vw, 16px);
}
.mbsc-contact__lead p {
  margin-bottom: 1.5em;
}
.mbsc-contact__lead a {
  color: var(--mbs-color-link);
  text-decoration: underline;
}
.mbsc-contact__form {
  display: block;
  width: 100%;
}
.mbsc-contact__form .ex {
  display: block;
  font-size: 0.85em;
  margin: 0.5em 0 0;
}

/*
 * Nav
------------------------------------------------*/
.mbsc-contact-navs {
  display: block;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.mbsc-contact-navs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
  gap: 40px;
}
.mbsc-contact-navs__list__item {
  width: 100%;
  display: flex;
}

.mbsc-contact-nav {
  display: block;
  width: 100%;
}

.mbsc-contact-nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.85em 0.5em;
  color: inherit;
  background: #f0f0f0;
  border: 1px solid #b5b5b5;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: 0 6px 8px 2px rgba(0, 0, 0, 0.42);
  font-size: clamp(14px, 1.87vw, 18px);
  font-weight: 600;
  text-align: center;
  position: relative;
}
@media (min-width: 750.02px) {
  .mbsc-contact-nav-btn {
    font-size: 18px;
    box-shadow: 0 12px 18px 2px rgba(0, 0, 0, 0.42);
  }
}
.mbsc-contact-nav-btn[href]::after {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  margin-left: 0.5em;
  flex-shrink: 0;
  background-image: url("../images/contact_arrow.gif");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.mbsc-contact-nav-btn[href]:hover {
  color: #ffffff;
  background: #000000;
  opacity: 1;
}
.mbsc-contact-nav-btn[href]:hover::after {
  background-image: url("../images/contact_arrow_on.gif");
}

.mbsc-contact-nav-note {
  display: block;
  width: 100%;
  margin: clamp(15px, 2vw, 30px) 0 0;
  font-size: 13px;
  font-weight: 400;
}

/*
 * NC 入力欄サイズ
------------------------------------------------*/
@media (max-width: 750px) {
  .mbsc-contact td label {
    display: flex;
    align-items: center;
    gap: 0 0.25em;
    margin: 0 10px 10px 0;
  }
  .mbsc-contact td input[id=nameFamliyName],
  .mbsc-contact td input[id=nameFirstName],
  .mbsc-contact td input[id=nameFamliyKana],
  .mbsc-contact td input[id=nameFirstKana] {
    width: 65%;
  }
  .mbsc-contact td label[for=postalCode] input,
  .mbsc-contact td label[for=telephone] input {
    width: 60%;
  }
  .mbsc-contact td input[id=address02],
  .mbsc-contact td input[id=address03] {
    width: 95%;
  }
  .mbsc-contact td input[id=mailAddress],
  .mbsc-contact td input[id=mailAddress02] {
    width: 70%;
  }
  .mbsc-contact td textarea[id=textContent] {
    width: 95%;
  }
}
@media (min-width: 750.02px) {
  .mbsc-contact td label {
    margin-right: 10px;
  }
  .mbsc-contact td input[id=nameFamliyName],
  .mbsc-contact td input[id=nameFirstName],
  .mbsc-contact td input[id=nameFamliyKana],
  .mbsc-contact td input[id=nameFirstKana] {
    width: 160px;
  }
  .mbsc-contact td label[for=postalCode] input,
  .mbsc-contact td label[for=telephone] input {
    width: 120px;
  }
  .mbsc-contact td input[id=address02],
  .mbsc-contact td input[id=address03] {
    width: 60%;
  }
  .mbsc-contact td input[id=mailAddress],
  .mbsc-contact td input[id=mailAddress02] {
    width: 350px;
  }
  .mbsc-contact td textarea[id=textContent] {
    width: 550px;
    min-height: 200px;
  }
  .mbsc-contact td select {
    width: auto;
    max-width: 100%;
  }
}
