@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&display=swap");
/* ライン状の背景画像
-----------------------------------------------------------------*/
.background {
  background-image: url("../img/service/pc/bg_line.png");
}
@media screen and (max-width: 768px) {
  .background {
    background-image: url("../img/service/sp/bg_line.png");
  }
}

/* page-title
-----------------------------------------------------------------*/
.page-title-inner {
  background-image: url("../img/service/pc/bg_title.png");
}
@media screen and (max-width: 768px) {
  .page-title-inner {
    background-image: url("../img/service/sp/bg_title.png");
  }
}

/*=================================================================
  index.html
=================================================================*/
/* services
-----------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .services .section-inner {
    padding-right: 2%;
  }
}
@media screen and (max-width: 425px) {
  .services .section-inner {
    padding-right: 4%;
  }
}

.services-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5em 0;
}
@media screen and (max-width: 768px) {
  .services-item-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.625em 0;
  }
}

.services-item {
  display: grid;
  grid-template-columns: 81.5% 18.5%;
  grid-template-rows: 100%;
  width: 32%;
}
@media screen and (max-width: 768px) {
  .services-item {
    grid-template-columns: 46% 54%;
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .services-item {
    grid-template-columns: 50% 50%;
  }
}
.services-item.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .services-item.title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.services-item.title .section-title {
  padding-right: 1.5em;
}

.services-item__img {
  grid-area: 1 / 1 / 2 / 2;
}

.services-detail {
  position: relative;
  grid-area: 1 / 2 / 2 / 3;
  margin-top: 10em;
  margin-left: -16.875em;
  padding: 2.5em;
  background-color: #ffffff;
  z-index: +1;
}
@media screen and (max-width: 768px) {
  .services-detail {
    margin-top: 1.625em;
    margin-left: -1.625em;
  }
}
@media screen and (max-width: 425px) {
  .services-detail {
    margin-top: 4em;
    margin-left: -4em;
    padding: 1.625em;
  }
}

.services__detail-title {
  font-size: calc(20px + (22 - 20) / (1440 - 768) * (100vw - 768px));
  min-height: 0vw;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 1440px) {
  .services__detail-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .services__detail-title {
    font-size: calc(20px + (30 - 20) / (768 - 320) * (100vw - 320px));
    min-height: 0vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  .services__detail-title {
    font-size: 30px;
  }
}

.services__detail-text {
  margin-top: .75em;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .services__detail-text {
    font-size: calc(14px + (24 - 14) / (768 - 320) * (100vw - 320px));
    min-height: 0vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  .services__detail-text {
    font-size: 24px;
  }
}

/* what-we-can-do
-----------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .what-we-can-do .section-inner {
    padding-right: 1.25em;
  }
}
@media screen and (max-width: 425px) {
  .what-we-can-do .section-inner {
    padding-right: 0;
  }
}

.what-we-can-do-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5em 0;
}
@media screen and (max-width: 768px) {
  .what-we-can-do-item-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.what-we-can-do-item {
  display: grid;
  grid-template-columns: 73% 27%;
  grid-template-rows: 100%;
  position: relative;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .what-we-can-do-item {
    grid-template-columns: 50% 50%;
    width: 100%;
  }
  .what-we-can-do-item:not(:first-of-type) {
    margin-top: 2.5em;
  }
  .what-we-can-do-item:nth-child(2) {
    margin-top: 0;
  }
}
.what-we-can-do-item.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .what-we-can-do-item.title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.what-we-can-do-item__img {
  grid-area: 1 / 1 / 2 / 2;
}

.what-we-can-do__number {
  margin-top: 0.25em;
  font-size: calc(42px + (54 - 42) / (1440 - 768) * (100vw - 768px));
  min-height: 0vw;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 1440px) {
  .what-we-can-do__number {
    font-size: 54px;
  }
}
@media screen and (max-width: 768px) {
  .what-we-can-do__number {
    font-size: calc(35px + (70 - 35) / (768 - 320) * (100vw - 320px));
    min-height: 0vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  .what-we-can-do__number {
    font-size: 70px;
  }
}

.what-we-can-do-detail {
  grid-area: 1 / 2 / 2 / 3;
  margin-top: 270%;
  margin-left: -190%;
  padding: 1.5em;
  background-color: #ffffff;
  z-index: +1;
}
@media screen and (max-width: 768px) {
  .what-we-can-do-detail {
    margin-top: 1.625em;
    margin-left: -1.625em;
    padding: 2.5em;
    max-width: none;
  }
}
@media screen and (max-width: 425px) {
  .what-we-can-do-detail {
    padding: 1.5em;
  }
}

.what-we-can-do__detail-title {
  font-size: calc(20px + (22 - 20) / (1440 - 768) * (100vw - 768px));
  min-height: 0vw;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 1440px) {
  .what-we-can-do__detail-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .what-we-can-do__detail-title {
    font-size: calc(20px + (30 - 20) / (768 - 320) * (100vw - 320px));
    min-height: 0vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  .what-we-can-do__detail-title {
    font-size: 30px;
  }
}

.what-we-can-do__detail-text {
  margin-top: 1.75em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .what-we-can-do__detail-text {
    margin-top: 1em;
    font-size: calc(14px + (24 - 14) / (768 - 320) * (100vw - 320px));
    min-height: 0vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  .what-we-can-do__detail-text {
    font-size: 24px;
  }
}

.what-we-can-do__detail-text ol li {
  list-style: upper-roman;
}

/* clients
-----------------------------------------------------------------*/
.clients .section-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .clients .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.clients-list-wrap {
  margin-left: 6.25em;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .clients-list-wrap {
    margin-left: 0;
  }
}

.clients-list__title {
  font-size: calc(18px + (20 - 18) / (1440 - 768) * (100vw - 768px));
  min-height: 0vw;
}
@media screen and (min-width: 1440px) {
  .clients-list__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .clients-list__title {
    font-size: calc(16px + (26 - 16) / (768 - 320) * (100vw - 320px));
    min-height: 0vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  .clients-list__title {
    font-size: 26px;
  }
}

.clients-list__title:last-of-type {
  margin-top: 1em;
}

.clients-list {
  margin-top: .625em;
  margin-left: 2.625em;
}
@media screen and (max-width: 768px) {
  .clients-list {
    font-size: calc(12px + (22 - 12) / (768 - 320) * (100vw - 320px));
    min-height: 0vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  .clients-list {
    font-size: 22px;
  }
}

.clients-list li {
  display: inline-block;
  list-style: none;
  line-height: 1.5;
}
.clients-list li:not(:last-of-type)::after {
  content: " / ";
}
.clients-list + p {
  margin-left: 2.625em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .clients-list + p {
    font-size: calc(12px + (22 - 12) / (768 - 320) * (100vw - 320px));
    min-height: 0vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  .clients-list + p {
    font-size: 22px;
  }
}

/*# sourceMappingURL=service.css.map */