@charset "UTF-8";
@media screen and (min-width: 1080px) {
  .is-sp {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .is-pc {
    display: none;
  }
}

.article-inner {
  max-width: 1000px;
  font-size: 14px;
  padding-bottom: 100px;
}

.service-page-header {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 0 15px;
}

.service-page-header-copy {
  font-size: clamp(1.125rem, 0.9545454545rem + 0.7272727273vw, 1.5rem);
  text-align: center;
  line-height: 1.8;
  margin-bottom: 30px;
}

.service-page-header-content {
  align-items: center;
}
@media screen and (min-width: 1080px) {
  .service-page-header-content {
    display: flex;
  }
}

@media screen and (min-width: 1080px) {
  .service-page-header-img {
    width: 50%;
  }
}

.service-page-header-text {
  line-height: 3;
}
@media screen and (min-width: 1080px) {
  .service-page-header-text {
    width: 50%;
  }
}
@media screen and (max-width: 960px) {
  .service-page-header-text {
    line-height: 1.8;
    font-size: 16px;
  }
}

.service-page-header-circle {
  position: absolute;
  top: 12%;
  right: 5%;
}

.service-page-service {
  background-image: url(../img/service-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.service-inner {
  max-width: 1000px;
  margin: 100px auto 0 auto;
}
@media screen and (max-width: 960px) {
  .service-inner {
    padding: 0 20px;
  }
}

.service-page-service1 {
  padding-bottom: 100px;
}

.service1 {
  margin: 0 auto;
  display: block;
}

.service-title {
  font-size: 30px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.service-content {
  position: relative;
}
@media screen and (min-width: 1080px) {
  .service-content {
    display: flex;
  }
}
.service-content .service-text {
  margin-top: 30px;
  line-height: 1.8;
}
@media screen and (min-width: 1080px) {
  .service-content .service-text {
    width: 50%;
  }
}
@media screen and (min-width: 1080px) {
  .service-content img {
    width: 50%;
  }
}

.service-subtitle {
  position: absolute;
  background: linear-gradient(to left, #000000, #144d96);
  color: #fff;
  display: inline-block;
  padding: 15px 150px;
  border-radius: 50px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  .service-subtitle {
    width: 300px;
    text-align: center;
    padding: 10px 60px;
  }
}

.service-items {
  margin: 100px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px; /* グリッドの各要素間の間隔 */
}

.service-item {
  text-align: center;
  position: relative;
}
.service-item figure {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
}
.service-item figure img {
  max-width: 100%;
  max-height: 100%;
}
.service-item::after {
  content: ""; /* 擬似要素を表示するために必須 */
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 1080px) {
  .service-item::after {
    width: 0.5px; /* 縦線の幅 */
    height: 100%; /* 親要素の高さに合わせる */
    border-right: 0.5px dashed black; /* 右側に破線を設定 */
  }
}
@media screen and (max-width: 960px) {
  .service-item::after {
    top: -10px;
    width: 100%;
    height: 0.5px;
    border-bottom: 0.5px dashed #000;
  }
}
.service-item:nth-child(3)::after, .service-item:nth-child(6)::after {
  border-right: none; /* 3つ目と6つ目には破線をつけない */
}
.service-item:first-child::after {
  border-bottom: none;
}

.service-item-title {
  font-size: clamp(1.125rem, 1.0113636364rem + 0.4848484848vw, 1.375rem);
  margin: 20px auto;
  color: #006699;
}

.service-item-text {
  text-align: left;
  line-height: 1.8;
  font-size: 14px;
}

.strength-inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .strength-inner {
    padding: 0 20px;
  }
}

.strength-title {
  font-size: clamp(2.125rem, 1.6704545455rem + 1.9393939394vw, 3.125rem);
  text-align: center;
}

.strength-items {
  margin: 100px auto;
}

.strength-item {
  gap: 30px;
  align-items: center;
  margin: 40px auto;
}
@media screen and (min-width: 1080px) {
  .strength-item {
    display: flex;
  }
}
@media screen and (min-width: 1080px) {
  .strength-item img {
    width: 50%;
  }
}
@media screen and (min-width: 1080px) {
  .strength-item .strength-text-area {
    width: 50%;
  }
}
@media screen and (max-width: 960px) {
  .strength-item .strength-text-area {
    margin-top: 20px;
  }
}
.strength-item .point {
  color: #fff;
  background: #1f4cf0;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 15px;
}
@media screen and (max-width: 960px) {
  .strength-item .point {
    font-size: 12px;
  }
}
.strength-item .strength-item-text {
  margin-top: 30px;
  line-height: 2.4;
  font-size: 20px;
}
@media screen and (max-width: 960px) {
  .strength-item .strength-item-text {
    line-height: 2;
    margin-top: 10px;
    font-size: 16px;
  }
}
.strength-item .strength-item-text span {
  color: #1f4cf0;
}
.strength-item .strength-item-text-bold {
  font-size: 23px;
}
@media screen and (max-width: 960px) {
  .strength-item .strength-item-text-bold {
    font-size: 19px;
  }
}

.order1 {
  order: 1;
}

.order2 {
  order: 2;
}

.partner {
  padding: 100px 20px;
  background: #144d96;
  color: #fff;
  text-align: center;
}
.partner .partner-copy {
  font-size: 24px;
}
.partner p {
  text-align: left;
  line-height: 2.4;
  font-size: 14px;
  max-width: 600px;
  margin: 40px auto 20px;
}
.partner .btn {
  color: #000;
}/*# sourceMappingURL=page-business.css.map */