html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: none;
  font-style: normal;
  text-align: left;
  zoom: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

table {
  border-collapse: collapse;
  font-family: inherit;
}

h1, h2, h3, h4, h5 {
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
}

input, textarea, select {
  font-family: inherit;
  font-size: 16px;
}

input[type=button], input[type=text], input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

textarea {
  resize: none;
  -webkit-appearance: none;
  border-radius: 0;
}

th, td {
  border-collapse: collapse;
}

table th, table td {
  white-space: nowrap;
}

ul, ol {
  list-style-type: none;
}

img {
  vertical-align: text-bottom;
  vertical-align: -webkit-baseline-middle;
  max-width: 100%;
  height: auto;
  width: auto;
}

:root {
  --color-bg-black: #161616;
  --color-bg-gray: #F0F0F0;
  --color-bg-light-gray: #EFEFEF;
  --color-text-main: #222222;
  --color-text-gray: #D3D3D3;
  --color-text-darkgray: #787878;
  --color-text-darkgray-2: #949495;
  --color-blog-summary-gray: #f0f0f0ab;
  --color-border-gray: #F0F0F0;
  --color-border-pages-gray: #E4E4E4;
  --color-border-rainbow: linear-gradient(20deg, #FFCFDB 0%, #E7FAFE 42%, #FBFFB8 70%, #D9FFDC 90%, #FFCFDB 100%);
  --color-blog-title-rainbow: linear-gradient(90deg, #FFCFDB 0%, #E7FAFE 42%, #FBFFB8 70%, #D9FFDC 90%);
  --color-pink: #FFCFDB;
  --color-blue: #E7FAFE;
  --color-green: #D9FFDC;
  --color-purple: #EFE9FF;
  --color-yellow: #FBFFB8;
  --color-red: #FF2525;
  --color-header-nav: #949495;
  --font-family-title: "hiragino-kaku-gothic-pron", sans-serif;
  --font-family-main: "Noto Sans JP", sans-serif;
  --font-family-en: "Outfit", sans-serif;
}

.p-service {
  padding-top: 275px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .p-service {
    padding-top: 140px;
    padding-bottom: 200px;
  }
}
.p-service__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: content-box;
  position: relative;
}
@media screen and (max-width: 999px) {
  .p-service__inner {
    padding-inline: unset;
  }
}
.p-service__title {
  padding-bottom: 44px;
  margin-inline: 40px;
  border-bottom: 1px solid var(--color-border-pages-gray);
}
@media screen and (max-width: 999px) {
  .p-service__title {
    padding-bottom: 32px;
    margin-inline: 20px;
  }
}
.p-service__lead {
  margin-top: 44px;
  margin-inline: 40px;
}
@media screen and (max-width: 999px) {
  .p-service__lead {
    margin-top: 54px;
    margin-inline: 20px;
  }
}
.p-service__lead__title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1.92px;
}
@media screen and (max-width: 999px) {
  .p-service__lead__title {
    font-size: 20px;
    letter-spacing: 1.6px;
  }
}
.p-service__lead__text {
  margin-top: 40px;
  margin-right: 220px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 999px) {
  .p-service__lead__text {
    margin-right: unset;
    letter-spacing: 1.2px;
  }
}
.p-service__lead__img {
  margin-top: 40px;
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media screen and (max-width: 999px) {
  .p-service__lead__img {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.p-service__lead__img img {
  height: 80px;
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 999px) {
  .p-service__lead__img img {
    height: 60px;
  }
}
.p-service__worry {
  margin-top: 100px;
  background-color: var(--color-bg-light-gray);
}
@media screen and (max-width: 999px) {
  .p-service__worry {
    margin-top: 60px;
  }
}
.p-service__worry__inner {
  padding: 30px 45px;
  display: flex;
}
@media screen and (max-width: 999px) {
  .p-service__worry__inner {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }
}
.p-service__worry__title {
  width: 240px;
  height: 240px;
  border-radius: 500px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 45px;
  margin-right: 45px;
}
@media screen and (max-width: 999px) {
  .p-service__worry__title {
    border: 1px solid var(--color-text-main);
    padding-inline: unset;
    margin-right: unset;
  }
}
.p-service__worry__title p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 999px) {
  .p-service__worry__title p {
    font-size: 18px;
    letter-spacing: 1.44px;
    text-align: center;
  }
}
.p-service__worry__content {
  border-left: 1px solid var(--color-text-main);
  display: flex;
}
@media screen and (max-width: 999px) {
  .p-service__worry__content {
    border-left: none;
    flex-direction: column;
  }
}
.p-service__worry__content__item {
  padding-top: 45px;
  padding-left: clamp(2.5rem, -4.196rem + 10.71vw, 4.375rem);
}
@media screen and (max-width: 999px) {
  .p-service__worry__content__item {
    padding-top: 32px;
    padding-left: unset;
  }
}
.p-service__worry__content__item__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.44px;
  color: var(--color-pink);
  padding: 7px;
  background-color: var(--color-text-main);
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 999px) {
  .p-service__worry__content__item__title {
    font-size: 16px;
    padding: 8px;
    width: 100%;
    text-align: center;
  }
}
.p-service__worry__content__item__text {
  margin-top: 25px;
  font-size: 14px;
  letter-spacing: 0.56px;
  line-height: 1.2;
  padding-left: 23px;
  position: relative;
}
@media screen and (max-width: 999px) {
  .p-service__worry__content__item__text {
    margin-top: 20px;
    font-size: 13px;
    letter-spacing: 0.78px;
  }
}
.p-service__worry__content__item__text::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--color-pink);
  border-radius: 10px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}
.p-service__worry__content__item:last-of-type .p-service__worry__content__item__title {
  color: var(--color-yellow);
}
.p-service__worry__content__item:last-of-type .p-service__worry__content__item__text::before {
  background-color: var(--color-yellow);
}
.p-service__strengths {
  margin-top: 140px;
}
@media screen and (max-width: 999px) {
  .p-service__strengths {
    margin-top: 80px;
  }
}
.p-service__strengths__title {
  margin-inline: 40px;
}
@media screen and (max-width: 999px) {
  .p-service__strengths__title {
    margin-inline: 20px;
  }
}
.p-service__strengths__content {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
@media screen and (max-width: 999px) {
  .p-service__strengths__content {
    align-items: center;
    row-gap: 87px;
    margin-top: 87px;
    margin-inline: 20px;
  }
}
.p-service__strengths__content__item-1 {
  grid-template-areas: "title img" "text img";
  margin-left: auto;
  -moz-column-gap: 53px;
       column-gap: 53px;
  padding-left: 35px;
}
@media screen and (max-width: 999px) {
  .p-service__strengths__content__item-1 {
    grid-template-areas: "title" "text" "img";
    row-gap: 20px;
    padding-left: unset;
    margin-left: unset;
  }
}
.p-service__strengths__content__item-1 .c_strengths_item__text {
  max-width: 484px;
}
.p-service__strengths__content__item-2 {
  grid-template-areas: "img title" "img text";
  margin-right: auto;
  -moz-column-gap: 108px;
       column-gap: 108px;
}
@media screen and (max-width: 999px) {
  .p-service__strengths__content__item-2 {
    grid-template-areas: "title" "text" "img";
    row-gap: 20px;
    padding-left: unset;
    margin-right: unset;
  }
  .p-service__strengths__content__item-2 .c_strengths_item__title__number {
    top: -32px;
  }
}
.p-service__strengths__content__item-3 {
  grid-template-areas: "title img" "text img";
  margin-left: auto;
  -moz-column-gap: 97px;
       column-gap: 97px;
  padding-left: 35px;
}
@media screen and (max-width: 999px) {
  .p-service__strengths__content__item-3 {
    grid-template-areas: "title" "text" "img";
    row-gap: 20px;
    padding-left: unset;
    margin-left: unset;
  }
}
.p-service .p-service__strengths__bg {
  position: absolute;
  z-index: -1;
  top: 1250px;
  left: 43vw;
  transform: translateX(0px);
  width: 1100px;
  height: 1100px;
  animation: btn_circle__animation 30s linear infinite;
}
@media screen and (max-width: 999px) {
  .p-service .p-service__strengths__bg {
    top: 1750px;
  }
}
@media screen and (max-width: 650px) {
  .p-service .p-service__strengths__bg {
    width: 700px;
    height: 700px;
    top: 1975px;
    left: unset;
    right: -330px;
  }
}
.p-service__platforms {
  margin-top: 140px;
}
@media screen and (max-width: 999px) {
  .p-service__platforms {
    margin-top: 86px;
  }
}
.p-service__platforms__inner {
  display: grid;
  grid-template-areas: "title content" "text content";
  grid-template-rows: auto 1fr;
}
@media screen and (max-width: 999px) {
  .p-service__platforms__inner {
    grid-template-areas: "title" "text" "content";
    grid-template-rows: auto;
    margin-inline: 20px;
  }
}
.p-service__platforms__title {
  grid-area: title;
  margin-inline: 40px;
}
@media screen and (max-width: 999px) {
  .p-service__platforms__title {
    margin-inline: unset;
  }
}
.p-service__platforms__text {
  grid-area: text;
  margin-top: 38px;
  margin-inline: 40px;
}
@media screen and (max-width: 999px) {
  .p-service__platforms__text {
    margin-top: 24px;
    margin-inline: unset;
  }
}
.p-service__platforms__text p {
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  line-height: 2.18;
  letter-spacing: 1.2px;
  background-color: var(--color-text-main);
  padding: 0 4px;
}
.p-service__platforms__text p:last-of-type {
  margin-top: 8px;
}
.p-service__platforms__content {
  grid-area: content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 999px) {
  .p-service__platforms__content {
    margin-top: 40px;
  }
}
.p-service__platforms__content__item {
  padding: 40px 19px;
  border-radius: 6px;
  border: 0.8px solid var(--color-text-main);
  background-color: var(--color-bg-gray);
  max-width: 322px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 24px;
}
@media screen and (max-width: 999px) {
  .p-service__platforms__content__item {
    padding: 32px 20px;
    max-width: 500px;
  }
}
.p-service__platforms__content__item__img {
  max-width: 64px;
  max-height: 64px;
}
.p-service__platforms__content__item__img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.p-service__platforms__content__item__title {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 1.6px;
  background-color: #fff;
  padding: 0 4px;
  width: -moz-fit-content;
  width: fit-content;
}
.p-service__platforms__content__item__text {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.78px;
}
@media screen and (max-width: 999px) {
  .p-service__platforms__content__item__text {
    letter-spacing: 1.04px;
    text-align: center;
  }
}
.p-service__platforms__line {
  margin-top: 66px;
  max-width: 1200px;
  margin-inline: auto;
}
.p-service__platforms__line div {
  animation: infinity-loop-left 30s linear infinite;
  display: flex;
  width: 1840px;
}
.p-service__platforms__line div img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-service__platforms__line_2 {
  margin-top: 0;
  max-width: 1200px;
  margin-inline: auto;
  overflow-x: hidden;
}
.p-service__platforms__line_2 div {
  animation: infinity-loop-left 20s linear infinite reverse;
  display: flex;
  width: 1840px;
}
.p-service__platforms__line_2 div img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-service__process {
  margin-top: 142px;
  background-color: var(--color-bg-black);
  padding-block: 100px;
}
@media screen and (max-width: 999px) {
  .p-service__process {
    margin-top: 82px;
    padding: 80px 20px;
  }
}
.p-service__process__inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  padding-right: 134px;
}
@media screen and (max-width: 999px) {
  .p-service__process__inner {
    flex-direction: column;
    padding-right: unset;
  }
}
.p-service__process__title {
  margin-inline: 40px;
}
@media screen and (max-width: 999px) {
  .p-service__process__title {
    margin-inline: unset;
  }
}
.p-service__process__content {
  position: relative;
}
@media screen and (max-width: 999px) {
  .p-service__process__content {
    margin-top: 50px;
    max-width: 350px;
    width: 100%;
    margin-inline: auto;
  }
}
.p-service__process__content__buttons {
  background-color: #fff;
  padding: 48px 130px;
}
@media screen and (max-width: 999px) {
  .p-service__process__content__buttons {
    background-color: unset;
    padding: 0;
  }
}
.p-service__process__content__buttons .swiper-service-buttons {
  display: flex;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
@media screen and (max-width: 999px) {
  .p-service__process__content__buttons .swiper-service-buttons {
    justify-content: center;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.p-service__process__content__buttons .swiper-service-buttons__arrow {
  width: 11px;
  height: 14px;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--color-text-main);
  border-right: 0;
}
@media screen and (max-width: 999px) {
  .p-service__process__content__buttons .swiper-service-buttons__arrow {
    border-left: 11px solid var(--color-bg-gray);
  }
}
.p-service__process__content__buttons .swiper-service-buttons-slide {
  border: 1px solid var(--color-text-main);
  background-color: var(--color-bg-gray);
  width: 48px;
  height: 340px;
  padding: 28px 12px;
  cursor: pointer;
  transition: all 0.1s ease;
}
@media screen and (max-width: 999px) {
  .p-service__process__content__buttons .swiper-service-buttons-slide {
    border: 1px solid var(--color-bg-gray);
  }
}
.p-service__process__content__buttons .swiper-service-buttons-slide__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
  height: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.56px;
  color: var(--color-text-main);
}
@media screen and (max-width: 999px) {
  .p-service__process__content__buttons .swiper-service-buttons-slide__text {
    font-size: 13px;
    letter-spacing: 0.52px;
  }
}
.p-service__process__content__buttons .swiper-service-buttons-slide__text span {
  font-family: var(--font-family-en);
  font-size: 14px;
  letter-spacing: 0.56px;
}
@media screen and (max-width: 999px) {
  .p-service__process__content__buttons .swiper-service-buttons-slide__text span {
    font-size: 13px;
    letter-spacing: 0.52px;
  }
}
.p-service__process__content__buttons .swiper-service-buttons-slide__text p {
  text-align: center;
  writing-mode: vertical-rl;
}
.p-service__process__content__buttons .swiper-service-buttons-slide.is-active {
  border: 2px solid;
  -o-border-image: linear-gradient(to bottom, #FFCFDB 10%, #E7FAFE 35%, #FBFFB8 70%, #D9FFDC 90%) 1;
     border-image: linear-gradient(to bottom, #FFCFDB 10%, #E7FAFE 35%, #FBFFB8 70%, #D9FFDC 90%) 1;
  background-color: var(--color-text-main);
}
.p-service__process__content__buttons .swiper-service-buttons-slide.is-active .swiper-service-buttons-slide__text {
  background: linear-gradient(to bottom, #FFCFDB 10%, #E7FAFE 35%, #FBFFB8 70%, #D9FFDC 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-repeat: no-repeat;
}
.p-service__process__content__swiper {
  width: 420px;
  margin-top: 32px;
}
@media screen and (max-width: 999px) {
  .p-service__process__content__swiper {
    width: 278px;
    margin-top: 40px;
  }
}
.p-service__process__content__swiper__item {
  cursor: grab;
}
.p-service__process__content__swiper__item__title {
  display: grid;
  align-items: center;
  grid-template-areas: "number main" "number sub";
  row-gap: 10px;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 999px) {
  .p-service__process__content__swiper__item__title {
    grid-template-areas: "number main sub";
    grid-template-columns: auto auto 1fr;
    -moz-column-gap: 12px;
         column-gap: 12px;
    padding-bottom: 20px;
  }
}
.p-service__process__content__swiper__item__title__number {
  grid-area: number;
  font-family: var(--font-family-en);
  line-height: 54px;
  font-size: 16px;
  text-align: center;
  color: #fff;
  width: 54px;
  height: 54px;
  border: 1px solid #fff;
  border-radius: 100px;
}
@media screen and (max-width: 999px) {
  .p-service__process__content__swiper__item__title__number {
    line-height: 30px;
    font-size: 14px;
    width: 32px;
    height: 32px;
    margin-right: 4px;
  }
}
.p-service__process__content__swiper__item__title__main {
  grid-area: main;
  font-family: var(--font-family-en);
  font-size: 28px;
  font-weight: 300;
  line-height: 32px;
  color: #fff;
}
@media screen and (max-width: 999px) {
  .p-service__process__content__swiper__item__title__main {
    font-size: 20px;
    line-height: 1;
  }
}
.p-service__process__content__swiper__item__title__sub {
  grid-area: sub;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 1px;
  color: #fff;
}
@media screen and (max-width: 999px) {
  .p-service__process__content__swiper__item__title__sub {
    font-size: 9px;
    letter-spacing: 0.9px;
    line-height: 1;
  }
}
.p-service__process__content__swiper__item__text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.12px;
  color: #fff;
  margin-top: 28px;
}
@media screen and (max-width: 999px) {
  .p-service__process__content__swiper__item__text {
    font-size: 12px;
    letter-spacing: 0.96px;
    margin-top: 20px;
  }
}
.p-service__process__content__swiper__item__text span, .p-service__process__content__swiper__item__text a {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 1.04px;
}
@media screen and (max-width: 999px) {
  .p-service__process__content__swiper__item__text span, .p-service__process__content__swiper__item__text a {
    font-size: 10px;
  }
}
.p-service__process__content__swiper__item__text a {
  border-bottom: 1px solid #fff;
  color: #fff;
}
.p-service__process__content .swiper-service-button-prev,
.p-service__process__content .swiper-service-button-next {
  position: absolute;
  bottom: 115px;
  display: inline-block;
  width: 16px;
  height: 39px;
  cursor: pointer;
}
@media screen and (max-width: 999px) {
  .p-service__process__content .swiper-service-button-prev,
  .p-service__process__content .swiper-service-button-next {
    bottom: 103px;
  }
}
.p-service__process__content .swiper-service-button-prev::before, .p-service__process__content .swiper-service-button-prev::after,
.p-service__process__content .swiper-service-button-next::before,
.p-service__process__content .swiper-service-button-next::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 25.2px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0.5px) 50%;
}
.p-service__process__content .swiper-service-button-prev::before,
.p-service__process__content .swiper-service-button-next::before {
  transform: rotate(51.7deg);
}
.p-service__process__content .swiper-service-button-prev::after,
.p-service__process__content .swiper-service-button-next::after {
  transform: rotate(-51.7deg);
}
.p-service__process__content .swiper-service-button-prev {
  left: 51px;
  transform: rotate(180deg);
}
@media screen and (max-width: 999px) {
  .p-service__process__content .swiper-service-button-prev {
    left: 0;
  }
}
.p-service__process__content .swiper-service-button-next {
  right: 51px;
}
@media screen and (max-width: 999px) {
  .p-service__process__content .swiper-service-button-next {
    right: 0;
  }
}
.p-service__case {
  margin-block: 110px;
}
@media screen and (max-width: 999px) {
  .p-service__case {
    margin: 60px 20px 150px;
  }
}
.p-service__transition {
  padding-top: 60px;
  padding-bottom: 80px;
  border-top: 1px solid var(--color-border-pages-gray);
}
@media screen and (max-width: 650px) {
  .p-service__transition {
    padding-top: 40px;
    padding-bottom: 0;
    margin-inline: 20px;
  }
}
.p-service__transition__inner {
  margin-inline: 40px;
}
@media screen and (max-width: 999px) {
  .p-service__transition__inner {
    margin-inline: 20px;
  }
}
@media screen and (max-width: 650px) {
  .p-service__transition__inner {
    margin-inline: unset;
  }
}
.p-service__transition__content {
  padding-left: 55px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  border-left: 1px solid var(--color-border-pages-gray);
  display: grid;
  grid-template-areas: "title img" "text img" "text arrow";
  grid-template-columns: 382px 360px;
  -moz-column-gap: 38px;
       column-gap: 38px;
}
@media screen and (max-width: 999px) {
  .p-service__transition__content {
    grid-template-columns: unset;
    padding-left: 40px;
  }
}
@media screen and (max-width: 650px) {
  .p-service__transition__content {
    padding-left: unset;
    width: 100%;
    margin-left: unset;
    border-left: none;
    grid-template-areas: "img" "title" "text" "arrow";
    -moz-column-gap: unset;
         column-gap: unset;
    position: relative;
  }
}
.p-service__transition__content__title {
  grid-area: title;
  background: linear-gradient(-90deg, #fff 0%, #fff 50%, #222222 50%, #222222 100%);
  background-position: right center;
  background-size: 200%;
  background-repeat: no-repeat;
  padding: 4px 2px;
  width: -moz-fit-content;
  width: fit-content;
  transition: background-position 0.3s ease-in-out;
}
@media screen and (max-width: 999px) {
  .p-service__transition__content__title {
    background: var(--color-text-main);
    background-size: 100%;
    padding: 6px 8px;
  }
}
@media screen and (max-width: 650px) {
  .p-service__transition__content__title {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
  }
}
.p-service__transition__content__title span {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.6px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(-90deg, #222222 0%, #222222 50%, #D9FFDC 50%, #FBFFB8 70%, #E7FAFE 85%, #FFCFDB 100%);
  background-position: right center;
  background-size: 200%;
  background-repeat: no-repeat;
  transition: background-position 0.3s ease-in-out;
}
@media screen and (max-width: 999px) {
  .p-service__transition__content__title span {
    color: #fff;
    -webkit-text-fill-color: unset;
    background-image: unset;
  }
}
@media screen and (max-width: 650px) {
  .p-service__transition__content__title span {
    font-size: 18px;
    letter-spacing: 1.44px;
  }
}
.p-service__transition__content__text {
  grid-area: text;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.84px;
  margin-top: 20px;
}
@media screen and (max-width: 650px) {
  .p-service__transition__content__text {
    line-height: 1.8;
    letter-spacing: 1.12px;
    margin-top: 12px;
  }
}
.p-service__transition__content__img {
  grid-area: img;
  width: 360px;
  height: 240px;
  overflow: hidden;
}
.p-service__transition__content__img {
  width: 100%;
  height: auto;
}
.p-service__transition__content__img img {
  -o-object-fit: contain;
     object-fit: contain;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}
.p-service__transition__content__arrow {
  margin-top: 34px;
  grid-area: arrow;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media screen and (max-width: 650px) {
  .p-service__transition__content__arrow {
    margin-top: 20px;
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
.p-service__transition__content__arrow p {
  font-size: 14px;
  letter-spacing: 0.28px;
  padding: 8px 0;
  position: relative;
}
@media screen and (max-width: 650px) {
  .p-service__transition__content__arrow p {
    letter-spacing: 0.84px;
  }
}
.p-service__transition__content__arrow p::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  display: block;
  margin-top: 6px;
  left: 0;
  background: var(--color-text-main);
  transition: width 0.3s ease;
}
@media screen and (max-width: 999px) {
  .p-service__transition__content__arrow p::after {
    width: 100%;
  }
}
.p-service__transition__content__arrow div {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.p-service__transition__content__arrow div img {
  width: 10px;
  height: 8px;
}
.p-service__transition__content__arrow div::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 28px;
  height: 28px;
  display: block;
  border: 1px solid var(--color-text-main);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 999px) {
  .p-service__transition__content__arrow div::after {
    opacity: 1;
  }
}
.p-service__transition__content:hover .p-service__transition__content__title {
  background-position: left center;
}
.p-service__transition__content:hover .p-service__transition__content__title span {
  background-position: left center;
}
.p-service__transition__content:hover .p-service__transition__content__img img {
  transform: scale(1.1);
}
@media screen and (max-width: 999px) {
  .p-service__transition__content:hover .p-service__transition__content__img img {
    transform: scale(1);
  }
}
.p-service__transition__content:hover .p-service__transition__content__arrow p::after {
  width: 100%;
}
.p-service__transition__content:hover .p-service__transition__content__arrow div::after {
  opacity: 1;
}

.p-service_creative .p-service__worry__title {
  row-gap: 10px;
  padding-left: 43px;
  margin-right: 45px;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__worry__title {
    align-items: center;
    padding-inline: unset;
    margin-right: unset;
  }
}
.p-service_creative .p-service__worry__title p {
  background-color: var(--color-text-main);
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 4px;
}
.p-service_creative .p-service__worry__content {
  align-items: center;
}
.p-service_creative .p-service__worry__content__item {
  padding-top: 0;
  padding-left: clamp(7.5rem, -5.893rem + 21.43vw, 11.25rem);
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__worry__content__item {
    padding-top: 30px;
    padding-left: unset;
  }
}
.p-service_creative .p-service__worry__content__item__text::before {
  background-color: var(--color-pink) !important;
}
.p-service_creative .p-service__worry__content__item__text:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__strengths__content__item-2 .c_strengths_item__title__number {
    top: -36px;
  }
}
.p-service_creative .p-service__strengths__bg {
  top: 1110px;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__strengths__bg {
    top: 1706px;
  }
}
.p-service_creative .p-service__process__content__buttons {
  padding: 48px 74px;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__process__content__buttons {
    padding: unset;
  }
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__process__content__buttons .swiper-service-buttons {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__process__content__buttons .swiper-service-buttons-slide {
    width: 42px;
    padding: 24px 0;
    height: 200px;
  }
}
.p-service_creative .p-service__record {
  margin: 140px 20px 100px;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record {
    margin: 80px 20px 125px;
  }
}
.p-service_creative .p-service__record__inner {
  max-width: 1120px;
  margin-inline: auto;
}
.p-service_creative .p-service__record__lead {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-top: 20px;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__lead {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 40px;
    margin-top: 0;
  }
}
.p-service_creative .p-service__record__lead__text {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 1.3px;
}
.p-service_creative .p-service__record__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__content {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 48px;
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
  }
}
.p-service_creative .p-service__record__content__buttons .swiper-record-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  width: 131px;
  margin-left: 6px;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__content__buttons .swiper-record-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-left: unset;
    gap: 10px;
  }
}
.p-service_creative .p-service__record__content__buttons .swiper-record-buttons-slide {
  border: none;
  background: none;
  cursor: pointer;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__content__buttons .swiper-record-buttons-slide {
    border-radius: 30px;
    border: 1px solid var(--color-text-main);
    background: var(--color-bg-gray);
    padding: 10px;
  }
}
.p-service_creative .p-service__record__content__buttons .swiper-record-buttons-slide__text {
  font-family: var(--font-family-en);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-gray);
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__content__buttons .swiper-record-buttons-slide__text {
    color: var(--color-text-main);
  }
}
.p-service_creative .p-service__record__content__buttons .swiper-record-buttons .is-active {
  position: relative;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__content__buttons .swiper-record-buttons .is-active {
    opacity: 0.3;
  }
}
.p-service_creative .p-service__record__content__buttons .swiper-record-buttons .is-active::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background-color: var(--color-text-main);
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -4px;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__content__buttons .swiper-record-buttons .is-active::before {
    display: none;
  }
}
.p-service_creative .p-service__record__content__buttons .swiper-record-buttons .is-active .swiper-record-buttons-slide__text {
  color: var(--color-text-main);
}
.p-service_creative .p-service__record__content__list {
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__content__list {
    margin-top: 32px;
    max-width: 500px;
    width: 100%;
    height: 100%;
  }
}
.p-service_creative .p-service__record__content__list .swiper-wrapper {
  width: 100%;
  max-width: 855px;
  height: 100%;
  max-height: 300px;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__content__list .swiper-wrapper {
    max-height: unset;
  }
}
.p-service_creative .p-service__record__content__list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: clamp(0.625rem, -3.17rem + 6.07vw, 1.688rem);
       column-gap: clamp(0.625rem, -3.17rem + 6.07vw, 1.688rem);
  padding: 20px 20px 20px 30px;
  border: 1px solid var(--color-text-gray);
  background: var(--color-bg-gray);
  cursor: grab;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__content__list__item {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0;
    height: auto;
  }
}
.p-service_creative .p-service__record__content__list__item__content {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  max-width: 418px;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__content__list__item__content {
    max-width: unset;
    row-gap: 16px;
    padding: 20px 15px;
  }
}
.p-service_creative .p-service__record__content__list__item__content__title {
  font-family: var(--font-family-en);
  font-size: 28px;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__content__list__item__content__title {
    font-size: 22px;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.p-service_creative .p-service__record__content__list__item__content__title span {
  color: var(--color-text-darkgray);
  font-size: 13px;
  letter-spacing: 1.04px;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__content__list__item__content__title span {
    font-size: 10px;
    letter-spacing: 0.8px;
  }
}
.p-service_creative .p-service__record__content__list__item__content__label {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-service_creative .p-service__record__content__list__item__content__label p {
  background-color: #fff;
  border-radius: 6px;
  padding: 10px;
  font-size: 12px;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__content__list__item__content__label p {
    font-size: 10px;
    letter-spacing: 0.4px;
  }
}
.p-service_creative .p-service__record__content__list__item__content__text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.12px;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__content__list__item__content__text {
    font-size: 13px;
    letter-spacing: 1.04px;
  }
}
.p-service_creative .p-service__record__content__list__item__img {
  max-width: 360px;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__content__list__item__img {
    max-width: unset;
  }
}
.p-service_creative .p-service__record__content__list__item__img img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-service_creative .p-service__record__content .swiper-record-pagination {
  display: none;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__content .swiper-record-pagination {
    display: block;
    position: absolute;
    bottom: -35px;
  }
}
.p-service_creative .p-service__record__content .swiper-record-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: var(--color-border-pages-gray);
  margin-inline: 8px;
  opacity: 1;
}
.p-service_creative .p-service__record__content .swiper-record-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-text-main);
  position: relative;
}
.p-service_creative .p-service__record__content .swiper-record-pagination .swiper-pagination-bullet-active::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-text-main);
  border-radius: 20px;
}
.p-service_creative .p-service__record__content .swiper-record-button-prev,
.p-service_creative .p-service__record__content .swiper-record-button-next {
  display: none;
}
@media screen and (max-width: 999px) {
  .p-service_creative .p-service__record__content .swiper-record-button-prev,
  .p-service_creative .p-service__record__content .swiper-record-button-next {
    display: block;
    position: absolute;
    top: unset;
    left: unset;
    right: 0;
    bottom: -37px;
    width: 15px;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.p-service_creative .p-service__record__content .swiper-record-button-prev::after,
.p-service_creative .p-service__record__content .swiper-record-button-next::after {
  background-image: url("../img/home_circle_arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 11px;
  display: block;
}
.p-service_creative .p-service__record__content .swiper-record-button-prev {
  transform: rotate(180deg);
  right: 53px;
}/*# sourceMappingURL=service.css.map */