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

  選ばれる理由
  
----------------------------------------------------------------------------------------------------*/
.point-box {
  background-color: #fff;
  padding: var(--box-space-m);
}
.point-box:not(:first-of-type) {
  border-top: 1px solid rgba(0,0,0,0.15);
}
.point-box:last-of-type {
  border-radius: 0 0 0.5rem 0.5rem;
}
.point__ttl {
  position: relative;
  padding-left: 4rem;
  margin-top: -0.5rem;
}
.point__ttl .ttl {
  font-family: var(--ff-noto);
  font-weight: 700;
  font-size: var(--fs-l);
}
.point__ttl .p-maruNo {
  font-size: var(--fs-m);
  margin-left: 0.4rem;
  position: absolute;
  left: 0;
  top: 1.2em;
}
.point__body {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
}

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

  会社概要
  
----------------------------------------------------------------------------------------------------*/
.gaiyou-tbl {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--color-rbrown);
  font-size: var(--fs-s);
}
.gaiyou-tbl th,
.gaiyou-tbl td {
  padding: 1.25rem;
  vertical-align: top;
  text-align: left;
  line-height: var(--line-height-m);
}
.gaiyou-tbl tr:not(:first-of-type) th,
.gaiyou-tbl tr:not(:first-of-type) td {
  border-top: 1px solid rgba(0,0,0,0.15);
}
.gaiyou-tbl tr:not(:last-of-type) th,
.gaiyou-tbl tr:not(:last-of-type) td {
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.gaiyou-tbl th {
  text-align: center;
  white-space: nowrap;
  background-color: #f1e8d3;
}
.gaiyou-tbl td {
  background-color: #fff;
}
@media print, screen and (min-width:641px) {
  .gaiyou-tbl th {
    width: 24%;
  }
}
@media screen and (max-width:640px) {
  .gaiyou-tbl th {
    width: 15%;
  }
}

