@charset "UTF-8";

.sp-br {
    display: none;
}

@media screen and (max-width: 575px) {
    .sp-br {
        display: block;
    }
}

.tb-br {
    display: none;
}

@media screen and (max-width: 767px) {
    .tb-br {
        display: block;
    }
}

.lead {
    padding: 24px 0;
}

.lead-text {
    font-size: 18px;
    line-height: 1.6;
    flex: 1;
    letter-spacing: 0.03em;
    text-align: justify;
}

.lead-img {
    margin: 48px 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lead-img_text {
    color: var(--navy);
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    margin: 24px 0;
}

.lead-img_arrow {
    margin: 0 24px;
}

@media screen and (max-width: 767px) {
    .lead-img_arrow {
        margin: 0;
        width: 60px;
    }
}

@media screen and (max-width: 575px) {
    .lead-img_text {
        font-size: 18px;
        margin: 8px 0;
    }

    .lead-img {
        margin: 24px 0 16px;

    }
}


/*　対応業務　*/
.service {
    background-color: var(--bg);
    padding: 120px 0;
}

.service-title {
    color: var(--navy);
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-align: center;
}

.service-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.service-item {
    width: 300px;
    margin: 20px;
    padding: 16px 10px 0;
}

.service-item_icon {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 0px 50px rgba(120, 150, 178, 0.2);
    padding: 50px 5px 40px;
    text-align: center;
}

.service-item_title {
    color: var(--navy);
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-item_text {
    margin-top: 16px;
    line-height: 1.6;
    flex: 1;
    letter-spacing: 0.03em;
    text-align: justify;
}

@media screen and (max-width: 575px) {
    .service {
        padding: 80px 0;
    }

    .service-item_icon {
        padding: 40px 5px 30px;
        box-shadow: 0px 0px 30px rgba(120, 150, 178, 0.2);
    }

    .service-item {
        width: 300px;
        margin: 20px 0;
    }

    .service-title {
        font-size: 24px;
    }
}

/* ソリューション一覧へボタン */

.btn-back {
  color: var(--navy);
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  font-size: 20px;
  font-style: normal;
  border: var(--navy) solid 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 200px;
  transition: 0.5s ease;
  position: relative;
  overflow: hidden;
  max-width: 540px;
  width: 84%;
  height: 72px;
  margin: 0 auto;
  margin-top: 100px;
  background: #fff;
}

.btn-back:hover {
  color: #fff;
  transform: scale(1.1, 1.1);
}

.btn-back::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
  overflow: hidden;
  z-index: -1;
}

.btn-back:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-back_text {
  position: relative;
}

@media screen and (max-width: 575px) {
  .btn-back {
    margin-top: 60px;
    font-size: 16px;
    height:64px;
  }
}
