@charset "UTF-8";
.service-sec {
  padding-top: 0;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .service-sec {
    padding-top: 22px;
    padding-bottom: 113px;
  }
}

.service-ttl {
  font-size: 1.7142857143rem;
  font-weight: 700;
  line-height: 1.3888888889;
  letter-spacing: 0.027em;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .service-ttl {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px), print {
  .service-ttl {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 1400px) {
  .service-ttl {
    font-size: 2.25rem;
  }
}

/* お問い合わせリンクテキスト */
.service__link-contact {
  color: #333;
  text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) {
  .service__link-contact:hover {
    text-decoration: underline;
  }
}
/* サービスコンテンツ */
.service-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .service-content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.service-content-item {
  -webkit-box-shadow: 0px 0px 20px rgba(4, 176, 204, 0.2);
          box-shadow: 0px 0px 20px rgba(4, 176, 204, 0.2);
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .service-content-item {
    width: calc((100% - 40px) / 2);
  }
}

.service-content-item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.service-content-item__img {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.service-content-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .service-content-item__link:hover .service-content-item__img img {
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
.service-content-item__content {
  background: #ffffff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 20px 25px;
}

.service-content-item__title-en {
  font-style: italic;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.service-content-item__title {
  position: relative;
  font-weight: 700;
  line-height: 1.3;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 1.2857142857rem;
  padding-right: 36px;
}
@media screen and (min-width: 1400px) {
  .service-content-item__title {
    font-size: 1.25rem;
  }
}

/* 矢印アイコン */
.service-content-item__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  border: 1px solid #04A9C3;
  background-color: #fff;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.service-content-item__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.475rem;
  background-color: #04A9C3;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
  width: 0.625rem;
  height: 0.625rem;
  -webkit-mask: url("../images/common/icon-arrow.svg") no-repeat center center/contain;
          mask: url("../images/common/icon-arrow.svg") no-repeat center center/contain;
}

@media (hover: hover) {
  .service-content-item__link:hover {
    opacity: 1;
  }
  .service-content-item__link:hover .service-content-item__arrow::before {
    opacity: 1;
    background-color: #04A9C3;
  }
  .service-content-item__link:hover .service-content-item__arrow::after {
    opacity: 1;
    background-color: #ffffff;
  }
}
/* ご登録者数・お取引先企業の数字 */
.service-big-num {
  font-size: 1.75em;
  line-height: 0.7142857143;
  letter-spacing: 0.05em;
}

/* 更新日時 */
.service-meta__updated {
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
}