@charset "UTF-8";
/* ==========================================================================//
//
// データで見る
//
// ========================================================================== */
/* 共通
---------------------------------------------------------- */
section {
  --color: #3B97D4;
  padding: 40px 0;
}
@media all and (min-width: 751px) {
  section {
    padding: 80px 0;
  }
}
@media all and (min-width: 751px) {
  section .inner {
    max-width: 1280px;
  }
}
section .sec_ttl {
  position: relative;
  text-align: center;
}
@media all and (max-width: 750px) {
  section .sec_ttl {
    background-image: radial-gradient(circle, var(--color) 2.5px, transparent 2.5px);
    background-size: 8px 5px;
    background-repeat: space no-repeat;
    background-position: left bottom;
    padding-bottom: 14px;
  }
}
@media all and (min-width: 751px) {
  section .sec_ttl {
    max-width: 800px;
    margin-inline: auto;
  }
  section .sec_ttl::before, section .sec_ttl::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 26%;
    height: 5px;
    background-image: radial-gradient(circle, var(--color) 2.5px, transparent 2.5px);
    background-size: 8px 5px;
    background-position: left center;
    background-repeat: space no-repeat;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  section .sec_ttl::before {
    left: 0;
  }
  section .sec_ttl::after {
    right: 0;
  }
}
section .sec_ttl .en {
  font-family: "Hind", sans-serif;
  font-style: normal;
  font-weight: bold;
  -webkit-text-stroke: 1px var(--color);
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
}
@media all and (min-width: 751px) {
  section .sec_ttl .en {
    -webkit-text-stroke: 1.5px var(--color);
    font-size: 42px;
  }
}
section .sec_ttl .jp {
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 14px;
}
@media all and (min-width: 751px) {
  section .sec_ttl .jp {
    font-size: 26px;
  }
}

/* employeess
---------------------------------------------------------- */
.sec_emp {
  background-image: url(../../images/common/bg_stripe.jpg);
  background-size: auto 664px;
  background-position: top left;
}
.sec_emp .container {
  background-color: #fff;
  border-bottom-left-radius: 30px;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  padding: 25px 15px 30px;
}
@media all and (min-width: 751px) {
  .sec_emp .container {
    border-bottom-left-radius: 60px;
    padding: 70px 70px 80px;
  }
}
.sec_emp .list {
  --gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--gap);
  margin-top: 30px;
}
@media all and (min-width: 751px) {
  .sec_emp .list {
    --gap: 40px;
    margin-top: 50px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .sec_emp .list {
    --gap: 20px;
  }
}
.sec_emp .item {
  width: 100%;
}
@media all and (min-width: 751px) {
  .sec_emp .item {
    width: calc((100% - var(--gap)) / 2);
  }
}

/* reason
---------------------------------------------------------- */
.sec_reason .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
@media all and (min-width: 751px) {
  .sec_reason .list {
    margin-top: 40px;
  }
}
.sec_reason .item {
  width: min(400px, 100%);
  background-color: #fff;
  border: 1.5px solid var(--color);
  border-bottom-left-radius: 30px;
  padding: 20px 15px;
}
@media all and (min-width: 751px) {
  .sec_reason .item {
    width: calc((100% - 40px) / 3);
    border-bottom-left-radius: 60px;
    padding: 30px 36px 36px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .sec_reason .item {
    padding: 26px 20px;
  }
}
.sec_reason .item .number {
  position: relative;
  font-family: "Hind", sans-serif;
  font-style: normal;
  font-weight: bold;
  text-align: center;
  -webkit-text-stroke: 1px var(--color);
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
}
.sec_reason .item .number::before, .sec_reason .item .number::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26%;
  height: 5px;
  background-image: radial-gradient(circle, var(--color) 2.5px, transparent 2.5px);
  background-size: 8px 5px;
  background-position: left center;
  background-repeat: space no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sec_reason .item .number::before {
  left: 0;
}
.sec_reason .item .number::after {
  right: 0;
}
@media all and (min-width: 751px) {
  .sec_reason .item .number {
    font-size: 30px;
    -webkit-text-stroke: 1.5px var(--color);
  }
}
.sec_reason .item .number span {
  color: #3B97D4;
  font-size: 1.25em;
  -webkit-text-stroke: none;
}
.sec_reason .item .heading {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-top: 6px;
}
@media all and (min-width: 751px) {
  .sec_reason .item .heading {
    font-size: 20px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .sec_reason .item .heading {
    font-size: 16px;
  }
}
.sec_reason .item ul {
  font-size: 13px;
  line-height: 1.5;
  margin-top: 12px;
}
@media all and (min-width: 751px) {
  .sec_reason .item ul {
    line-height: 1.84;
    margin-top: 20px;
  }
}
.sec_reason .item ul > li {
  text-indent: -1em;
  padding-left: 1em;
}