@charset "UTF-8";
/* ----------------------------------------------
    FLOW
---------------------------------------------- */
.flow::before {
  content: "";
  display: block;
  background: url(../img/common/flow-bg.svg) no-repeat center/contain;
  aspect-ratio: 322/432;
  width: 75vw;
  height: auto;
  opacity: 0.1;
  position: absolute;
  right: 0;
  bottom: -10vw;
}

.flow {
  overflow: hidden;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#eef2f4), to(#fcfdfe));
  background-image: linear-gradient(to top, #eef2f4, #fcfdfe);
  position: relative;
  padding: 220px 0 270px;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 60px 0 120px;
  }
}
.flow .inner {
  position: relative;
}

.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 120px 60px;
  counter-reset: number 0;
}
@media screen and (max-width: 767px) {
  .flow__list {
    gap: 60px;
  }
}

.flow__item {
  background-color: #fff;
  -webkit-box-shadow: 4px 5px 16px rgba(42, 97, 124, 0.06);
          box-shadow: 4px 5px 16px rgba(42, 97, 124, 0.06);
  max-width: 350px;
  width: 100%;
  border-radius: 37px;
  position: relative;
  padding: 60px 40px;
}
@media screen and (max-width: 767px) {
  .flow__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 20px;
    max-width: none;
    border-radius: 18px;
    padding: 30px 20px 20px;
  }
}

.flow__item::before {
  content: "";
  display: block;
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  font-size: 8.5rem;
  font-weight: 300;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  background: linear-gradient(125deg, #00bfff, #0246b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: rgba(255, 255, 255, 0);
  line-height: 1;
  position: absolute;
  top: -0.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .flow__item::before {
    font-size: 6rem;
    left: 20px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.flow__img {
  width: 110px;
  height: auto;
  position: relative;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .flow__img {
    width: 70px;
  }
}

@media screen and (max-width: 767px) {
  .flow__item-text-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.flow__item-title-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .flow__item-title-wrap {
    text-align: left;
    margin-bottom: 10px;
  }
}

.flow__item-subtitle {
  font-size: 1.2rem;
  font-family: "Figtree", "Noto Sans JP", sans-serif;
  color: #0246b8;
  letter-spacing: 0.02em;
}
.flow__item-title {
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .flow__item-title {
    font-size: 1.8rem;
    font-weight: 700;
  }
}

.flow__item-text .text-small {
  font-size: 0.9em;
}
/* ----------------------------------------------
    導入部分
---------------------------------------------- */
.service-intro {
  background-color: rgba(218, 237, 255, 0.38);
  padding: 50px 0 80px;
}
.service-intro .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 clamp(80px, 5.2vw, 100px);
  max-width: 1390px;
}
@media screen and (max-width: 767px) {
  .service-intro .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 40px 0;
  }
}

.intro-img-box {
  width: 35%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .intro-img-box {
    max-width: 450px;
    width: 90%;
  }
}

.intro__text-box {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .intro__text-box {
    width: 100%;
  }
}

.intro__title {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .intro__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5em;
  }
}

.intro__title::after,
.intro__title::before {
  content: "";
  display: block;
  width: 110%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#0097ff), color-stop(#48d1ff), to(transparent));
  background: linear-gradient(90deg, #0097ff, #48d1ff, transparent);
  margin-top: 5px;
}
.intro__title::before {
  position: relative;
  top: calc(1.6em + 5px + 6px);
  opacity: 0.3;
  left: 5px;
  height: 1px;
}
.intro__text {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .intro__text {
    line-height: 1.8;
  }
}

/* ----------------------------------------------
    OUR SERVICE 私たちにできること
---------------------------------------------- */
.our-service {
  overflow: hidden;
  background-image: linear-gradient(120deg, rgba(7, 180, 255, 0.6), rgba(0, 87, 203, 0.6));
  position: relative;
  padding: 100px 0 140px;
}
@media screen and (max-width: 767px) {
  .our-service {
    padding: 70px 0 100px;
  }
}
.our-service .inner {
  position: relative;
}
.our-service .title-wrap {
  color: #fff;
}
.our-service .title-wrap .sub-title::before,
.our-service .title-wrap .sub-title::after {
  background-color: #fff;
}

.our-service__bg {
  aspect-ratio: 1200/594;
  width: 62.5vw;
  opacity: 0.3;
  mix-blend-mode: screen;
  position: absolute;
  right: -5.7vw;
  bottom: -2.6vw;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .our-service__bg {
    width: 120vw;
  }
}

.our-service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 70px 60px;
}
.our-service__item {
  background-color: #fff;
  -webkit-box-shadow: 2px 4px 16px rgba(46, 95, 147, 0.25);
          box-shadow: 2px 4px 16px rgba(46, 95, 147, 0.25);
  border-radius: 20px;
  width: 100%;
  max-width: 320px;
  padding: 35px;
}
@media screen and (max-width: 767px) {
  .our-service__item {
    width: 100%;
    max-width: 320px;
    padding: 25px;
  }
}

.our-service__img {
  width: 120px;
  margin: 0 auto 24px;
}
.our-service__item-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 20px;
}
/* ----------------------------------------------
    FEATURE ホームページ制作の特徴
---------------------------------------------- */
.feature {
  overflow: hidden;
  padding: 120px 0 180px;
}
@media screen and (max-width: 767px) {
  .feature {
    padding: 100px 0;
  }
}

.feature__list {
  counter-reset: number 0;
}
.feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 80px;
}
@media screen and (max-width: 767px) {
  .feature__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.feature__item:not(:last-of-type) {
  margin-bottom: 70px;
}
.feature__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .feature__item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.feature__item:nth-of-type(even) .feature__img-box::before,
.feature__item:nth-of-type(even) .feature__img-box::after {
  content: none;
}
@media screen and (max-width: 767px) {
  .feature__item:nth-of-type(even) .feature__img-box::before,
  .feature__item:nth-of-type(even) .feature__img-box::after {
    content: "";
  }
}

.feature__item:last-of-type .feature__img-box::before {
  content: "";
  background: url(../img/service/feature-deco-2.svg) no-repeat center/contain;
  aspect-ratio: 123/180;
  width: 123px;
  height: auto;
  position: absolute;
  top: -80px;
  right: -83px;
  -webkit-transform: rotate(240deg);
          transform: rotate(240deg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .feature__item:last-of-type .feature__img-box::before {
    width: 68px;
    top: -47px;
    right: -36px;
    -webkit-transform: rotate(245deg);
            transform: rotate(245deg);
  }
}
.feature__item:last-of-type .feature__img-box::after {
  content: "";
  background: url(../img/service/feature-deco-1.svg) no-repeat center/contain;
  aspect-ratio: 123/180;
  width: 123px;
  height: auto;
  position: absolute;
  bottom: -100px;
  left: -37px;
  -webkit-transform: rotate(-9deg);
          transform: rotate(-9deg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .feature__item:last-of-type .feature__img-box::after {
    width: 90px;
    bottom: -57px;
    left: -28px;
  }
}

.feature__img-box::before {
  content: "";
  background: url(../img/service/feature-deco-1.svg) no-repeat center/contain;
  aspect-ratio: 162/187;
  width: 162px;
  height: auto;
  position: absolute;
  top: -50px;
  right: -64px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .feature__img-box::before {
    width: 90px;
    top: -33px;
    right: -21px;
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
  }
}

.feature__img-box::after {
  content: "";
  background: url(../img/service/feature-deco-2.svg) no-repeat center/contain;
  aspect-ratio: 123/180;
  width: 123px;
  height: auto;
  position: absolute;
  bottom: -130px;
  left: -64px;
  -webkit-transform: rotate(-9deg);
          transform: rotate(-9deg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .feature__img-box::after {
    width: 70px;
    bottom: -55px;
    left: -23px;
    -webkit-transform: rotate(22deg);
            transform: rotate(22deg);
  }
}

.feature__img-box {
  width: 100%;
  max-width: 570px;
  position: relative;
}
.feature__img {
  position: relative;
}
.feature__text-box {
  width: 100%;
  max-width: 524px;
}
.feature__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .feature__item-title {
    gap: 0 10px;
    font-size: 2rem;
    margin-bottom: 8px;
  }
}

.feature__item-title::before {
  content: "";
  display: block;
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  font-size: 10rem;
  font-weight: 300;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  color: #a6ccfe;
  line-height: 1;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .feature__item-title::before {
    font-size: 6rem;
  }
}/*# sourceMappingURL=service.css.map */