@charset "utf-8";
/*----------------------------------------------------------------------------------------------------

  無料見積り
  
----------------------------------------------------------------------------------------------------*/
.about__img {
  width: 14%;
  display: inline-block;
  float: right;
  margin-left: var(--box-space-m);
  margin-bottom: 0.75em;
  margin-top: -1em;
}
.about-mail {
  border: 2px solid var(--color-red);
  background-color: #fff;
  border-radius: 0.4rem;
  line-height: var(--line-height-m);
  padding: var(--box-space-s);
}
@media print, screen and (min-width:641px) {
  .about-mail:before {
    content: "";
    width: 3em;
    height: 3em;
    display: inline-block;
    float: left;
    vertical-align: middle;
    margin-right: 1.5rem;
    border-radius: 0.4rem;
    background-color: var(--color-red);
    background-image: url("../../image/icon/mail.svg");
    background-repeat: no-repeat;
    background-size: 50% auto;
    background-position: center center;
  }
}
@media screen and (max-width:640px) {
  .about__img {
    width: 18%;
    min-width: 70px;
  }
  .about-mail__body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 1rem;
  }
  .about-mail__body:before {
    content: "";
    width: 2.5em;
    height: 2.5em;
    border-radius: 0.4rem;
    background-color: var(--color-red);
    background-image: url("../../image/icon/mail.svg");
    background-repeat: no-repeat;
    background-size: 50% auto;
    background-position: center center;
  }
  .about-mail__body p {
    flex: 1;
    padding-left: 1.5rem;
  }
}

/*----------------------------------------------------------------------------------------------------

  フォーム
  
----------------------------------------------------------------------------------------------------*/
.fm-tbl {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--block-space-l);
}
.fm-tbl th,
.fm-tbl td {
  line-height: var(--line-height-m);
  vertical-align: top;
}
.fm-tbl th.gp-ttl {
  line-height: var(--line-height-s);
  padding: 1.15rem 1.25rem;
  background-color: var(--color-dorange);
  color: #fff;
  font-size: var(--fs-2m);
  font-family: var(--ff-noto);
  font-weight: 500;
}
.fm-btn {
  display: flex;
  justify-content: center;
}
.fm-btn .p-btn {
  padding: 0.8em;
  min-width: 12em;
}
@media print, screen and (min-width:641px) {
  .fm-tbl {
    font-size: var(--fs-s);
  }
  .fm-tbl th.gp-ttl {
    border: 1px solid var(--color-dorange);
  }
  .fm-tbl th:not(.gp-ttl),
  .fm-tbl td {
    border: 1px solid var(--color-orange);
    padding: 1.25rem;
    text-align: left;
  }
  .fm-tbl th:not(.gp-ttl) {
    width: 26%;
    white-space: nowrap;
    background-color: #f9e4c2;
  }
  .fm-tbl td {
    background-color: #fff;
  }
}
@media screen and (max-width:640px) {
  .fm-tbl th.gp-ttl {
    border-radius: 0.5rem;
  }
  .fm-tbl th,
  .fm-tbl td {
    width: 100%;
    display: block;
  }
  .fm-tbl th:not(.gp-ttl) {
    padding-top: 1.5em;
    padding-bottom: 0.5em;
    font-size: var(--fs-m);
  }
  .fm-tbl .gp-ttl:not(.gp-ttl--first) {
    margin-top: var(--block-space-m);
  }
}

/*----------------------------------------------------------------------------------------------------

  フォーム部品
  
----------------------------------------------------------------------------------------------------*/
.fm-ip,
.fm-textarea {
  padding: 0.25em;
}
.fm-ip-check,
.fm-ip-radio {
  cursor: pointer;
}
.fm-ip-check input,
.fm-ip-radio input {
  margin-right: 0.5em;
  vertical-align: middle;
}
.ua-pc .fm-ip-check:hover,
.ua-pc .fm-ip-radio:hover {
  color: var(--color-red);
}
.fm-textarea {
  width: 100%;
}
.fm-ip--s {
  width: 8em;
}
.fm-ip-group {
  list-style: none;
}
@media print, screen and (min-width:641px) {
  .fm-textarea {
    height: 300px;
  }
  .fm-ip--m {
    width: 50%;
  }
  .fm-ip--l {
    width: 100%;
  }
  .fm-ip-group--cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .fm-ip-group--cols li {
    padding-right: 2em;
  }
}
@media screen and (max-width:640px) {
  .fm-textarea {
    height: 200px;
  }
  .fm-ip--m,
  .fm-ip--l {
    width: 100%;
  }
  .fm-ip-group li:not(:first-child) {
    padding-top: 0.5em;
  }
}
.fm-label {
  font-weight: normal;
  font-size: var(--fs-3s);
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  padding: 0.5em;
  margin-left: 1em;
  margin-bottom: 0.2em;
  vertical-align: middle;
  border-radius: 0.2rem;
}
.fm-label--required {
  background-color: var(--color-red);
}
@media print, screen and (min-width:641px) {
  .fm-label {
    float: right;
  }
  .fm-label--line2 {
    margin-top: -2.5rem;
  }
}
