@charset "UTF-8";
:root {
  --color-white: #fff;
  --color-txt: #4b4b4b;
  --color-main: #9b51e0;
  --color-sub: #f6edff;
  --color-sub02: #ebc8ff;
  --color-sub03: #c699e2;
  --color-gray: #adadad;
  --color-accent: #ff62b6;
}

/* =======================================================
common
======================================================= */
@media screen and (max-width: 767px) {
  .c-name-wrapper {
    display: none;
  }
}

/* =======================================================
profile
======================================================= */
.p-profile {
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .p-profile {
    padding: 0.3125rem 0;
  }
}
.p-profile .c-hgroup {
  margin-bottom: 1.5rem;
}
.p-profile__column {
  display: grid;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-profile__column {
    grid-template-columns: 1fr 35rem;
  }
}
@media screen and (max-width: 767px) {
  .p-profile__column {
    gap: 1.6875rem;
  }
}
.p-profile__column-body {
  display: grid;
  gap: 1.5rem;
  align-self: start;
  padding: 0 2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-profile__column-body {
    gap: 0;
    order: 2;
    padding: 0;
    margin-bottom: 0;
  }
}
.p-profile__column-job {
  padding: 0.625rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-profile__column-job {
    padding-bottom: 0;
    margin-bottom: 0.25rem;
  }
}
.p-profile__column-name {
  width: 28.25rem;
}
@media screen and (max-width: 767px) {
  .p-profile__column-name {
    width: 18.75rem;
    margin: 0 auto 0.75rem;
  }
}
.p-profile__column-strong {
  padding: 0 2.6875rem 0 1.1875rem;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-profile__column-strong {
    padding: 0;
    margin-bottom: 1.75rem;
    font-size: 1.25rem;
  }
}
.p-profile__column-txt {
  padding: 0 2.6875rem 0 1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-profile__column-txt {
    padding: 0;
    margin-bottom: 0.5rem;
  }
}
.p-profile__column-def {
  display: grid;
  gap: 1.3125rem;
  line-height: calc(21/16);
}
.p-profile__column-def-wrapper {
  display: grid;
  place-content: center;
  width: 25.875rem;
  height: 12.3125rem;
  padding: 0 1rem;
  margin-left: 1.1875rem;
  background: url("../images/profile/profile-def-bg.png") top center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-profile__column-def-wrapper {
    width: 21.875rem;
    height: 10.4375rem;
    padding: 0 1.5rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-profile__column-def {
    gap: 1.25rem;
    font-size: 0.9375rem;
    line-height: calc(20/15);
  }
}
.p-profile__column-dttl {
  display: flex;
}
.p-profile__column-dttl::before {
  content: "【";
}
.p-profile__column-dttl::after {
  content: "】";
}
.p-profile__column-ditem {
  padding-left: 1em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-profile__column-ditem {
    padding-left: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .p-profile__column-picture {
    width: 14.5rem;
    margin: 0 auto;
  }
}

/* =======================================================
service
======================================================= */
.p-service .c-hgroup {
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-service .c-hgroup {
    margin-bottom: 3rem;
  }
}
.p-service__list {
  display: grid;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-service__list {
    gap: 4.25rem;
  }
}
.p-service__item {
  display: grid;
  gap: 0 3.25rem;
}
@media screen and (min-width: 768px) {
  .p-service__item {
    grid-template: "hgroup figure" "conts figure";
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr 22.125rem;
    padding: 1rem 1rem 1rem 2.5rem;
    border: 0.0625rem solid var(--color-sub02);
  }
}
@media screen and (max-width: 767px) {
  .p-service__item {
    grid-template: "hgroup" "figure" "conts";
    gap: 1.5rem;
  }
}
.p-service__item-hgroup {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  grid-area: hgroup;
  gap: 1.125rem;
  align-items: center;
  padding: 1rem 0 1.5625rem;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-service__item-hgroup {
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    padding: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-service__item-hgroup::after {
    position: absolute;
    bottom: 0;
    left: 0.5rem;
    width: 35.4375rem;
    height: 0.5rem;
    content: "";
    background: url("../images/profile/service-hgroup-deco.svg") top center/contain no-repeat;
  }
}
.p-service__item-hgroup-txt {
  display: grid;
  place-content: center;
  width: 10.375rem;
  padding: 1.3125rem 0 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  background: url("../images/profile/service-hgroup-txt-bg.svg") top center/contain no-repeat;
}
.p-service__item-hgroup-ttl {
  font-size: 2.625rem;
  font-weight: 700;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-service__item-hgroup-ttl {
    font-size: 2.25rem;
    letter-spacing: 0.02em;
  }
}
.p-service__item-conts {
  display: grid;
  grid-area: conts;
  gap: 1.5625rem;
  align-self: start;
  padding-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-service__item-conts {
    gap: 1.5rem;
    padding-left: 0;
  }
}
.p-service__item-overall {
  padding: 0.4375rem 2.5rem 0.5625rem;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-main);
  border-radius: 2.5rem;
}
.p-service__item-overall-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-service__item-overall-wrapper {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service__item-overall {
    padding: 0.5625rem 2.5rem 0.6875rem;
  }
}
.p-service__item-overview {
  padding: 0.4375rem 1.5rem 0.5625rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: calc(23/16);
  color: var(--color-main);
  letter-spacing: 0;
  background: var(--color-sub);
  border-radius: 0.5rem;
}
.p-service__item-overview-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.p-service__item-figure {
  grid-area: figure;
  align-self: start;
}

/* =======================================================
vision
======================================================= */
.p-vision .c-hgroup {
  margin-bottom: 1.75rem;
}
.p-vision__list {
  display: grid;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-vision__list {
    gap: 0.625rem;
  }
}
.p-vision__item {
  display: grid;
  gap: 1rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-vision__item {
    gap: 0;
  }
}
.p-vision__item-ttl {
  padding: 1.875rem 0.625rem 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .p-vision__item-ttl {
    grid-area: ttl;
  }
}
@media screen and (max-width: 767px) {
  .p-vision__item-ttl {
    padding: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
}
.p-vision__item-txt {
  padding: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-vision__item-txt {
    grid-area: txt;
  }
}
@media screen and (max-width: 767px) {
  .p-vision__item-txt {
    padding: 0;
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-vision__item-figure {
    grid-area: figure;
    align-self: start;
  }
}
@media screen and (min-width: 768px) {
  .p-vision__item:nth-of-type(odd) {
    grid-template: "figure ttl" "figure txt";
    grid-template-rows: auto 1fr;
    grid-template-columns: 30.375rem 1fr;
  }
}
.p-vision__item:nth-of-type(odd) .p-vision__item-figure {
  padding: 3.125rem 3.5625rem 3.75rem 3.625rem;
  margin: 0 2.5rem 0 2.5625rem;
  background: url("../images/profile/vision-item-bg-odd.png") top center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-vision__item:nth-of-type(odd) .p-vision__item-figure {
    padding: 2.25rem 2.625rem 2.75rem;
    margin: 0 1.75rem 1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-vision__item:nth-of-type(even) {
    grid-template: "ttl figure" "txt figure";
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr 30.375rem;
  }
}
.p-vision__item:nth-of-type(even) .p-vision__item-figure {
  padding: 0.90625rem 6.25rem 5.59375rem 3.3125rem;
  margin: 0.34375rem 1rem 0.03125rem 1.6875rem;
  background: url("../images/profile/vision-item-bg-even.png") top center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-vision__item:nth-of-type(even) .p-vision__item-figure {
    padding: 0.625rem 4.5rem 4rem 2.375rem;
    margin: 0.25rem 0.75rem 1rem 1.1875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-vision__item:not(:first-of-type) {
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .p-vision__item:not(:first-of-type)::before {
    position: absolute;
    top: -2rem;
    left: 50%;
    width: 71.25rem;
    height: 1rem;
    content: "";
    background: url("../images/profile/vision-item-separator.svg") top center/contain no-repeat;
    transform: translateX(-50%);
  }
}

/* =======================================================
workflow
======================================================= */
.l-workflow {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .p-workflow {
    width: min(calc(1300 / 1300 * 100vw), 1300px);
    padding: 0 min(calc(80 / 1300 * 100vw), 80px);
  }
}
.p-workflow .c-hgroup {
  margin-bottom: min(calc(40 / 1300 * 100vw), 40px);
}
@media screen and (max-width: 767px) {
  .p-workflow .c-hgroup {
    margin-bottom: 1.3125rem;
  }
}
.p-workflow__slide {
  display: flex;
  align-items: center;
  width: min(calc(330 / 1300 * 100vw), 330px);
  height: auto;
}
.p-workflow__slide-container {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-workflow__slide-container {
    width: 20.625rem;
    margin: 0 auto 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__slide {
    width: 20.625rem;
  }
}
.p-workflow__slide:not(:last-of-type) {
  margin-right: min(calc(18 / 1300 * 100vw), 18px);
}
@media screen and (min-width: 768px) {
  .p-workflow__slide:not(:last-of-type) {
    width: calc(min(calc(330 / 1300 * 100vw), 330px) + min(calc(59 / 1300 * 100vw), 59px));
    padding-right: min(calc(59 / 1300 * 100vw), 59px);
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__slide:not(:last-of-type) {
    margin-right: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-workflow__slide:not(:last-of-type)::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: min(calc(59 / 1300 * 100vw), 59px);
    height: min(calc(58 / 1300 * 100vw), 58px);
    content: "";
    background: url("../images/profile/workflow-arrow.svg") top center/contain no-repeat;
    transform: translateY(-50%);
  }
}
.p-workflow__slide-body {
  display: grid;
  grid-template-rows: repeat(3, auto) 1fr;
  gap: min(calc(18 / 1300 * 100vw), 18px);
  width: min(calc(330 / 1300 * 100vw), 330px);
  height: 100%;
  padding: min(calc(14 / 1300 * 100vw), 14px) min(calc(25 / 1300 * 100vw), 25px) min(calc(22 / 1300 * 100vw), 22px);
  background: linear-gradient(180deg, #9b51e0 70%, #bd7eda 100%);
  border-radius: min(calc(20 / 1300 * 100vw), 20px);
}
@media screen and (max-width: 767px) {
  .p-workflow__slide-body {
    gap: 1.125rem;
    width: 20.625rem;
    padding: 0.875rem 1.5625rem 1.375rem;
    border-radius: 1.25rem;
  }
}
.p-workflow__slide-num {
  font-size: min(calc(34 / 1300 * 100vw), 34px);
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-workflow__slide-num {
    font-size: 2.125rem;
  }
}
.p-workflow__slide-ttl {
  font-size: min(calc(22 / 1300 * 100vw), 22px);
  font-weight: 700;
  color: var(--color-sub);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-workflow__slide-ttl {
    font-size: 1.375rem;
  }
}
.p-workflow__slide-txt {
  font-weight: 700;
  color: var(--color-sub);
}
.p-workflow__slide-prev, .p-workflow__slide-next {
  width: min(calc(83 / 1300 * 100vw), 83px);
  height: min(calc(83 / 1300 * 100vw), 83px);
  margin-top: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-workflow__slide-prev, .p-workflow__slide-next {
    width: 5.1875rem;
    height: 5.1875rem;
  }
}
.p-workflow__slide-prev::after, .p-workflow__slide-next::after {
  display: none;
}
.p-workflow__slide-prev {
  left: max(calc(-68 / 1300 * 100vw), -68px);
  background: url("../images/profile/workflow-prev.svg") top center/contain no-repeat;
}
.p-workflow__slide-next {
  right: max(calc(-68 / 1300 * 100vw), -68px);
  left: auto;
  background: url("../images/profile/workflow-next.svg") top center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .p-workflow__swiper-pagination {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-workflow__swiper-pagination {
    position: absolute;
    bottom: -2.125rem !important;
    left: 50% !important;
    display: flex;
    gap: 0.625rem;
    align-items: center;
    justify-content: center;
    height: 1.125rem;
    transform: translateX(-50%);
  }
}
.p-workflow__swiper-pagination > span {
  display: block;
  width: min(calc(12 / 1300 * 100vw), 12px);
  height: min(calc(13 / 1300 * 100vw), 13px);
  margin: 0 !important;
  background: url("../images/common/pagination.svg") top center/contain no-repeat;
  border-radius: 0;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-workflow__swiper-pagination > span {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.p-workflow__swiper-pagination > span.swiper-pagination-bullet-active {
  background: url("../images/common/pagination-active.svg") top center/contain no-repeat;
}

@media screen and (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 1.625rem;
    height: 1.625rem;
    margin-top: 0;
    background: url("../images/common/swiper-arrow-sp.svg") top center/contain no-repeat;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .swiper-button-prev {
    left: -1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    right: -1.625rem;
    left: initial;
    transform: translateY(-50%) scale(-1, 1);
  }
}