@charset "UTF-8";
/* メディアクエリ */
/* //メディアクエリ */
/* position 中央寄せ */
/* //position 中央寄せ */
.service-top {
  background: url(../img/service/service-bg.webp) no-repeat center center/cover;
  padding-top: 100px;
  padding-bottom: 92px;
}
@media screen and (max-width: 599px) {
  .service-top {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.service-top-wrapper {
  position: relative;
  background-color: rgba(255, 255, 255, 0.84);
  padding-top: 80px;
  padding-bottom: 81px;
}
@media screen and (max-width: 767px) {
  .service-top-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.service-top__ttl {
  font-weight: 700;
  font-size: 1.875rem;
  text-align: center;
  color: #47b2e2;
  line-height: 1.4666666667;
}
@media screen and (max-width: 599px) {
  .service-top__ttl {
    font-size: 1.5rem;
  }
}
.service-top__txt {
  font-size: 0.9375rem;
  line-height: 2;
  text-align: center;
  margin-top: 25px;
}

.service-list {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: 30px;
  flex-wrap: wrap;
  row-gap: 20px;
}
.service-list-wrapper {
  max-width: 1010px;
  padding: 0 15px;
  margin: 60px auto 0;
}
.service-list-item {
  width: 50%;
  padding: 0 10px;
}
@media screen and (max-width: 1023px) {
  .service-list-item {
    width: 100%;
  }
}
.service-list-item a {
  position: relative;
}
.service-list-item a:hover {
  opacity: 1;
}
.service-list-item a:hover .service-list-item__link--anchor::before {
  transform: translate(-50%, 3px) rotate(90deg);
}
.service-list-item a:hover .service-list-item__link--hyper::before {
  transform: translate(3px, -50%) rotate(-90deg);
}
.service-list-item-inner {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  background-color: #FFFFFF;
}
@media screen and (max-width: 599px) {
  .service-list-item-inner {
    flex-wrap: wrap;
  }
}
.service-list-item__img {
  width: 35.42%;
}
@media screen and (max-width: 1023px) {
  .service-list-item__img {
    width: 23%;
  }
}
@media screen and (max-width: 599px) {
  .service-list-item__img {
    width: 100%;
  }
}
.service-list-item__img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  aspect-ratio: 170/170;
  max-height: 200px;
}
.service-list-item-txt-wrapper {
  width: 64.58%;
  padding: 29px 20px 0 24px;
}
@media screen and (max-width: 1023px) {
  .service-list-item-txt-wrapper {
    width: 77%;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .service-list-item-txt-wrapper {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  .service-list-item-txt-wrapper {
    width: 100%;
  }
}
.service-list-item__ttl {
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  margin-bottom: 8px;
}
.service-list-item__txt {
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  color: #767676;
}
.service-list-item__link {
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: block;
  position: absolute;
  bottom: 14px;
  right: 20px;
}
.service-list-item__link--anchor {
  background-color: rgba(71, 178, 226, 0.1);
}
.service-list-item__link--hyper {
  background-color: rgba(57, 181, 158, 0.1);
}
.service-list-item__link::before {
  content: "";
  width: 15px;
  height: 11px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.service-list-item__link.service-list-item__link--anchor::before {
  background: url(../img/common/icon-arrow-right-sky-blue.svg) no-repeat center center/contain;
  transform: translate(-50%, -50%) rotate(90deg);
}
.service-list-item__link.service-list-item__link--hyper::before {
  width: 11px;
  height: 15px;
  background: url(../img/common/icon-arrow-right-green-full.svg) no-repeat center center/contain;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.service-detail {
  padding-top: 100px;
  padding-bottom: 134px;
}
@media screen and (max-width: 599px) {
  .service-detail {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.service-detail-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 100px;
}
.service-detail-list-item {
  width: 100%;
}
.service-detail-list-item:nth-of-type(odd) .service-detail-list-item__sub-ttl {
  color: #39B59E;
}
.service-detail-list-item:nth-of-type(odd) .ttl-pattern2::before {
  background-color: #39B59E;
}
.service-detail-list-item:nth-of-type(even) .service-detail-list-item__sub-ttl {
  color: #47b2e2;
}
.service-detail-list-item-inner {
  display: flex;
  margin-left: -30px;
  margin-right: -30px;
}
@media screen and (max-width: 1023px) {
  .service-detail-list-item-inner {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media screen and (max-width: 767px) {
  .service-detail-list-item-inner {
    flex-wrap: wrap;
    row-gap: 40px;
  }
}
.service-detail-list-item-txt-wrapper, .service-detail-list-item__img {
  padding: 0 30px;
}
@media screen and (max-width: 1023px) {
  .service-detail-list-item-txt-wrapper, .service-detail-list-item__img {
    padding: 0 20px;
  }
}
.service-detail-list-item-txt-wrapper {
  padding-top: 5px;
  width: 53.846%;
}
@media screen and (max-width: 767px) {
  .service-detail-list-item-txt-wrapper {
    width: 100%;
  }
}
.service-detail-list-item__img {
  width: 46.154%;
}
@media screen and (max-width: 767px) {
  .service-detail-list-item__img {
    width: 100%;
    text-align: right;
  }
}
.service-detail-list-item__img img {
  border-radius: 8px;
  max-width: 420px;
}
@media screen and (max-width: 479px) {
  .service-detail-list-item__img img {
    max-width: 100%;
  }
}
.service-detail-list-item__ttl {
  margin-bottom: 36px;
}
.service-detail-list-item__sub-ttl {
  font-weight: 500;
  font-size: 1.375rem;
  margin-bottom: 17px;
}
@media screen and (max-width: 479px) {
  .service-detail-list-item__sub-ttl {
    font-size: 1.25rem;
  }
}
.service-detail-list-item__txt {
  font-size: 0.9375rem;
  line-height: 1.6;
}
.service-detail-list-item-btn-wrapper {
  width: 300px;
  max-width: 100%;
  margin-top: 28px;
}/*# sourceMappingURL=style-service.css.map */