@charset "UTF-8";

/* 注釈 */
.serviceAnnotation {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #BEBEBE;
}
.flowCard .serviceAnnotation {
  text-align: left;
}
/* download */
.download {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #3E3E3E;
}

@media (width >=769px) {
  .download {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.downloadWrapper {
  display: grid;
  gap: 3rem;
}

@media (width >=769px) {
  .downloadWrapper {
   grid-template-columns: minmax(30rem, 43rem) minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(3rem, 5vw, 8rem);
  }
}

.downloadImage {
  text-align: center;
}

@media (width >=769px) {
  .downloadImage {
    text-align: left;
  }
}

@media (width >=769px) {
  .downloadImage img {
    max-width: 43rem;
  }
}

.downloadText {
  color: #fff;
  text-align: left;
}

.downloadText h2 {
  color: var(--main-color);
  font-weight: 700;
  --min-size: 32;
  --max-size: 40;
  font-size: var(--clamp-size);
  line-height: 1.4;
  text-align: center;
}
@media (width >=769px) {
  .downloadText {
    display: flex;
    flex-direction: column;
  }
  .downloadText h2 {
    text-align: left;
  }
}
.downloadText p {
  margin-top: 2rem;
}

@media (width >=769px) {
  .downloadText p {
    margin-top: 3rem;
  }
  .downloadText .serviceBtn {
     margin-top: clamp(3rem, 5vw, 6rem);
  }
}

/* serviceBtn */
.serviceBtn {
  display: grid;
  grid-template-columns: 3.2rem 1fr 1.6rem;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 33rem;
  margin-top: 3rem;
  margin-inline: auto;
  padding: 1.3rem 2rem;
  background: #fff;
  border-radius: 999px;
  color: #3E3E3E;
  font-weight: 700;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  min-height: 7.2rem;
  transition: opacity .3s ease;
}
.serviceBtn:hover {
  opacity: 0.85;
}

@media (width >=769px) {
  .serviceBtn {
    margin-inline: 0;
    margin-top: 4rem;
  }
}

.serviceBtnIcon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.serviceBtnIcon img {
  width: 2.4rem;
}

.serviceBtnText {
  text-align: center;
}

.serviceBtnArrow {
  position: relative;
  width: 1.6rem;
  height: 1.2rem;
}

.serviceBtnArrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.4rem;
  height: .2rem;
  background: var(--main-color);
  transform: translateY(-50%);
  transition: transform .3s ease;
}

.serviceBtnArrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: .8rem;
  height: .8rem;
  border-top: .2rem solid var(--main-color);
  border-right: .2rem solid var(--main-color);
  transform: translateY(-50%) rotate(45deg);
  transition: transform .3s ease;
}

.serviceBtn:hover .serviceBtnArrow::before {
  transform: translate(.4rem, -50%);
}

.serviceBtn:hover .serviceBtnArrow::after {
  transform: translate(.4rem, -50%) rotate(45deg);
}

/* cta */
.cta {
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: transparent linear-gradient(270deg, #58A1F7 0%, #6C00FF 100%) 0% 0% no-repeat padding-box;
}

@media (width >=769px) {
  .cta {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.ctaLead {
  color: #fff;
  font-weight: 700;
  --min-size: 20;
  --max-size: 28;
  font-size: var(--clamp-size);
  line-height: 1.8;
  text-align: center;
}

.ctaLead > span {
  display: block;
  --min-size: 32;
  --max-size: 40;
  font-size: var(--clamp-size);
}

.ctaLead > span > span {
  color: #FFFF00;
}

.ctaBtns {
  display: grid;
}

@media (width >=769px) {
  .ctaBtns {
    grid-template-columns: repeat(2, minmax(0, 33rem));
    justify-content: center;
    gap: 10rem;
  }
}

/* CTA用ボタン差分 */
.serviceBtn._contact {
  background: var(--main-color);
  color: #fff;
}

.serviceBtn._contact .serviceBtnArrow::before {
  background: #fff;
}

.serviceBtn._contact .serviceBtnArrow::after {
  border-color: #fff;
}

.serviceBtn._tel {
  background: #fff;
  color: #6C00FF;
}

.serviceBtn._tel .serviceBtnText {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.serviceBtn._tel .serviceBtnText > span {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  --min-size: 18;
  --max-size: 24;
  font-size: var(--clamp-size);
  letter-spacing: .16em;
}

.serviceBtn._tel .serviceBtnText {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}

.serviceBtn._tel .serviceBtnText small {
  margin-top: .4rem;
  font-size: clamp(1.3rem, 1.226rem + 0.2vw, 1.4rem);
  font-weight: 400;
}

.serviceBtn._tel .serviceBtnArrow::before {
  background: #6C00FF
}

.serviceBtn._tel .serviceBtnArrow::after {
  border-color: #6C00FF;
}

/* FV */
.serviceFV {
  padding-top: 12rem;
  padding-bottom: 6rem;
  background: url("../images/service/servise-fv-bg.webp") center / cover no-repeat;
  overflow: hidden;
}

@media (width >=769px) {
  .serviceFV {
    padding-top: 17rem;
    padding-bottom: 8rem;
    background: url("../images/service/servise-fv-bg_pc.webp") center / cover no-repeat;
  }
}

.serviceFVInner {
  display: block;
}

@media (width >=769px) {
  .serviceFVInner {
    position: relative;
  }
}

.serviceFVContent {
  position: relative;
  z-index: 2;
}

@media (width >=769px) {
  .serviceFVContent {
    position: static;
    width: 78%;
  }
}

.serviceFVLead {
  position: relative;
  z-index: 3;
  font-weight: 700;
  --min-size: 16;
  --max-size: 22;
  font-size: var(--clamp-size);
  line-height: 1.6;
}

@media (width >=769px) {
  .serviceFVLead {
    line-height: 2;
  }
}

.serviceFVTitle {
  position: relative;
  z-index: 3;
  margin-top: 1.5rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  --min-size: 48;
  --max-size: 64;
  font-size: var(--clamp-size);
  line-height: 1.4;
  color: var(--main-color);
  letter-spacing: 0.02em;
}

@media (width >=769px) {
  .serviceFVTitle {
    /* margin-top: 3rem; */
    white-space: nowrap;
  }
}
.serviceFVTitle._small {
  --min-size: 36;
  --max-size: 52;
}

.serviceFVTitle + p {
  font-weight: 700;
  --min-size: 18;
  --max-size: 22;
  font-size: var(--clamp-size);
  margin-top: 1rem;
}
@media (width >=769px) {
  .serviceFVTitle + p {
    margin-top: 2rem;
  }
}

/* 社内ツールの導入・運用改善のみ */
.service-internal-tools-support .serviceFVContent {
  display: flex;
  flex-direction: column;
}

.service-internal-tools-support .serviceFVContent > p {
  order: 1;
  color: var(--main-color);
  margin-top: 0;
  margin-bottom: 1rem;
}

.service-internal-tools-support .serviceFVTitle {
  order: 2;
  color: #3E3E3E;
  margin-top: 0;
}

.service-internal-tools-support .serviceFVImage {
  order: 3;
}

.service-internal-tools-support .serviceFVPoints {
  order: 4;
}

.service-internal-tools-support .serviceBtn._fv {
  order: 5;
}

.serviceFVImage {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  text-align: right;
}

@media (width >=769px) {
  .serviceFVImage {
    position: absolute;
    top: 4rem;
    right: 0;
    width: 62%;
    margin-top: 0;
    text-align: right;
    pointer-events: none;
    z-index: 1;
  }
  .service-site-migration-support .serviceFVImage {
    top: 6rem;
    width: 32%;
  }
  .service-consulting .serviceFVImage {
    top: 7rem;
    width: 36%;
  }
  .service-wel-maintenance .serviceFVImage {
    top: 6rem;
    width: 38%;
  }
  .service-internal-tools-support .serviceFVImage {
    top: 5rem;
    width: 38%;
  }
  .service-seo .serviceFVImage {
    top: 6rem;
    width: 35%;
  }
  .service-eccube-to-shopify .serviceFVImage {
    top: 5.5rem;
  }
  .service-ga4-analysis .serviceFVImage {
    top: 5rem;
    width: 34%;
  }
  .service-php-upgrade .service-ga4-analysis .serviceFVImage {
    top: 5rem;
  }
}

.serviceFVImage img {
  width: 100%;
  max-width: 20rem;
  margin-left: auto;
}

@media (width >=769px) {
  .serviceFVImage img {
    position: relative;
    width: 100%;
    max-width: 48rem;
    transform: translateY(-4rem);
  }
.service-eccube-to-shopify .serviceFVImage img {
  max-width: 60rem;
}
.service-php-upgrade .serviceFVImage img {
  max-width: 52rem;
}
}

.serviceFVPoints {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 3rem;
}

@media (width >=769px) {
  .serviceFVPoints {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
    width: 84%;
  }
}

.serviceFVPoints li {
  display: block;
  text-align: center;
  width: 100%;
  padding: .9rem 1.4rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 .3rem .6rem rgba(0, 0, 0, 0.16);
  font-weight: 700;
  --min-size: 13;
  --max-size: 14;
  font-size: var(--clamp-size);
}

@media (width >= 769px) {
  .serviceFVPoints li {
    display: flex; 
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 9rem;
    padding: 1.5rem 1.6rem;
  }
}

.serviceFVPoints span {
  color: var(--main-color);
  font-weight: 700;
  --min-size: 16;
  --max-size: 17;
  font-size: var(--clamp-size);
}

@media (width >=769px) {
  .serviceFVPoints span {
    display: block;
  }
}

.serviceBtn._fv {
  position: relative;
  z-index: 3;
  margin-top: 3rem;
  background: transparent linear-gradient(270deg, #58A1F7 0%, #6C00FF 100%) 0% 0% no-repeat padding-box;
}

@media (width >=769px) {
  .serviceBtn._fv {
    max-width: 33rem;
    margin-top: 6rem;
    margin-inline: 0;
  }
}


/* trouble */
.trouble {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fff;
}

@media (width >=769px) {
  .trouble {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.trouble .serviceHeading span {
  color: var(--main-color);
}

.troubleWrapper {
  display: grid;
  gap: 3rem;
  margin-top: 4rem;
}

@media (width >=769px) {
  .troubleWrapper {
    grid-template-columns: 24rem 1fr;
    align-items: center;
    gap: 8rem;
    max-width: 90rem;
    margin-inline: auto;
  }
}

.troubleImage {
  text-align: center;
}

.troubleImage img {
  width: 100%;
  max-width: 20rem;
}

@media (width >=769px) {
  .troubleImage img {
    max-width: 24rem;
  }
}

.troubleList {
  display: grid;
  gap: 1.6rem;
}

.troubleList li {
  position: relative;
  padding-left: 3rem;
  font-weight: 700;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  line-height: 1.7;
}

.troubleList li::before {
  content: "";
  position: absolute;
  top: .35em;
  left: 0;
  width: 2rem;
  height: 2rem;
  background: url("../images/service/icon-check.png") center / contain no-repeat;
}

/* solve */
.solve {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #FAFAFA;
}

@media (width >=769px) {
  .solve {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.solveLead {
  font-weight: 700;
  --min-size: 20;
  --max-size: 28;
  font-size: var(--clamp-size);
  line-height: 1.6;
  text-align: center;
}

.solveLead > span {
  display: block;
  --min-size: 32;
  --max-size: 40;
  font-size: var(--clamp-size);
}

.solveLead > span > span {
  color: var(--main-color);
}

.solveCards {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

@media (width >=769px) {
  .solveCards {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }

  .solveCards.is-2cols {
    display: flex;
    justify-content: center;
  }
  .solveCards.is-2cols .solveCard {
    width: calc((100% - 4rem * 2) / 3); 
    flex-shrink: 0;
  }
}



.solveCard {
  padding: 2.4rem;
  background: #fff;
  box-shadow: 0 .3rem .6rem rgba(0, 0, 0, 0.16);
  text-align: center;
  border-radius: 1rem;
}
@media (width >=769px) {
  .solveCard {
    display: flex;
    flex-direction: column;
  }
}

.solveCard p {
  font-weight: 700;
  --min-size: 15;
  --max-size: 17;
  font-size: var(--clamp-size);
  line-height: 1.8;
}
@media (width >=769px) {
  .solveCard p {
    min-height: 9rem;
  }
}
.solveCard p span {
  --min-size: 20;
  --max-size: 28;
  font-size: var(--clamp-size);
  color: var(--main-color);
}

.solveCard img {
  display: block;
  width: 100%;
  max-width: 20rem;
  margin: 2.4rem auto 0;
}
@media (width >=769px) {
  .solveCard img {
    margin: auto auto 0;
  }
}
/* solution */
.solution {
  position: relative;
  padding-top: 6rem;
  background: #F2F2F2;
  overflow: hidden;
}

@media (width >=769px) {
  .solution {
    min-height: 58rem;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.solutionText {
  position: relative;
  z-index: 2;
}

@media (width >=769px) {
  .solutionText {
    max-width: 54rem;
  }
}

.solutionLead {
  --min-size: 14;
  --max-size: 16;
  font-size: var(--clamp-size);
  font-weight: 700;
  text-align: center;
}

@media (width >=769px) {
  .solutionLead {
    text-align: left;
  }
}

.solution .serviceHeading {
  margin-top: 1.6rem;
  text-align: center;
  color: var(--main-color);
}

.solution .serviceHeading + p {
  margin-top: 4rem;
  text-align: left;
}

@media (width >=769px) {
  .solution .serviceHeading {
    text-align: left;
  }
}

.solutionDesc {
  margin-top: 3rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}

@media (width >=769px) {
  .solutionDesc {
    text-align: left;
  }
}

.solutionDesc span {
  position: relative;
  z-index: 1;
  color: var(--main-color);
  --min-size: 17;
  --max-size: 19;
  font-size: var(--clamp-size);
}

.solutionDesc span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: .08em;
  z-index: -1;
  width: 100%;
  height: 30%;
  background: rgba(40, 191, 25, 0.2);
}

.solutionImage {
  margin-top: 3rem;
  margin-left: auto;
  width: min(100%, 52rem);
}

@media (width >=769px) {
  .solutionImage {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 62.5vw;
    max-width: 90rem;
    margin-top: 0;
  }
}

.solutionImage img {
  display: block;
  width: 100%;
}

/* detail */
.detail {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: url("../images/service/detail-bg.webp") center / cover no-repeat;
}

.detailBg {
  /* padding: 4rem 2rem; */
  background: url("../images/service/detail-text-bg.png") center / cover no-repeat;
}


@media (width >=769px) {
  .detail {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.detailText {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.72);
  border: .1rem solid rgba(255, 255, 255, 0.9);
  border-radius: 2rem;
  backdrop-filter: blur(1.6rem);
  -webkit-backdrop-filter: blur(1.6rem);
  box-shadow: 0 .8rem 3.2rem rgba(0, 0, 0, 0.12);
}

@media (width >=769px) {
  .detailText {
    padding: 8rem 6rem;
  }
}

.detail .heading {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  --min-size: 40;
  --max-size: 60;
  font-size: var(--clamp-size);
  line-height: 1.2;
  text-align: center;
  color: var(--main-color);
}
.detail .heading._small  {
  --min-size: 32;
  --max-size: 44;
}

.detailLead {
  margin-top: 4rem;
  font-weight: 700;
  --min-size: 20;
  --max-size: 28;
  font-size: var(--clamp-size);
  line-height: 1.8;
}

@media (width >=769px) {
  .detailLead {
    text-align: center;
  }
}

.detailLead span {
  color: var(--main-color);
}

.detailDesc {
  margin-top: 4rem;
  line-height: 2;
}

@media (width >=769px) {
  .detailDesc {
    text-align: center;
  }
}

.serviceMarker {
  /* position: relative; */
  z-index: 1;
  background: linear-gradient(transparent 70%, rgba(40, 191, 25, 0.2) 70%);
  display: inline;
}

/* .serviceMarker::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: .08em;
  z-index: -1;
  width: 100%;
  height: 30%;
  background: rgba(40, 191, 25, 0.2);
} */

/* lpStrength */
.lpStrength {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #FAFAFA;
}

@media (width >=769px) {
  .lpStrength {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.lpStrength .serviceHeading > span {
  color: var(--main-color);
}

.lpStrength .serviceHeading > span > span {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  --min-size: 40;
  --max-size: 60;
  font-size: var(--clamp-size);
}

.lpStrengthItems {
  display: grid;
  gap: 3rem;
  margin: 4rem 2rem 0;
}

.lpStrengthItem {
  display: grid;
}

@media (width >=769px) {
  .lpStrengthItem {
    grid-template-columns: 34rem 1fr;
    gap: 7rem;
  }

  .lpStrengthItem:nth-child(even) {
    grid-template-columns: 1fr 34rem;
  }

  .lpStrengthItem:nth-child(even) .lpStrengthImage {
    order: 2;
  }

  .lpStrengthItem:nth-child(even) .lpStrengthText {
    order: 1;
  }
}

.lpStrengthImage {
  text-align: center;
}

.lpStrengthImage img {
  width: 100%;
  max-width: 28rem;
}

@media (width >=769px) {
  .lpStrengthImage img {
    max-width: 34rem;
  }
}

.lpStrengthNumber {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--main-color);
  --min-size: 18;
  --max-size: 24;
  font-size: var(--clamp-size);
}

.lpStrengthText h3 {
  margin-top: 1.5rem;
  font-weight: 700;
  --min-size: 22;
  --max-size: 28;
  font-size: var(--clamp-size);
  line-height: 1.5;
}

.lpStrengthDesc {
  margin-top: 3rem;
}

.lpStrengthDesc p {
  --min-size: 14;
  --max-size: 16;
  font-size: var(--clamp-size);
  line-height: 1.9;
}

.lpStrengthDesc p + p {
  margin-top: 1.5rem;
}

/* member */
/* member */
.member {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fff;
  overflow: hidden;
}

@media (width >=769px) {
  .member {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.member .serviceHeading span {
  color: var(--main-color);
}

.memberSlider {
  position: relative;
  width: 100vw;
  margin-top: 4rem;
  margin-left: calc(50% - 50vw);
  overflow: visible;
}

@media (width >=769px) {
  .memberSlider {
    width: 1100px;
    margin-left: 0;
  }
}

.memberTrack {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.memberTrack::-webkit-scrollbar {
  display: none;
}

.member .memberItems {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 2rem;
  width: max-content;
  margin-top: 0;
  padding: 0 4vw 1rem;
}

@media (width >=769px) {
  .member .memberItems {
    gap: 3rem;
    padding: 0 0 1rem;
  }
}

.member .memberItem {
  display: flex !important;
  flex: 0 0 85vw;
   width: 85vw;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: var(--base-color);
  border-radius: 2rem;
  min-height: calc(12rem + 4rem + 1em);
}

@media (width >=769px) {
  .member .memberItem {
    flex: 0 0 calc((1100px - 6rem) / 3);
    width: calc((1100px - 6rem) / 3);
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    text-align: center;
  }
}

.member .memberThumb {
  flex-shrink: 0;
}

.member .thumb {
  width: 100%;
  max-width: 10rem;
  border-radius: .5rem;
}

@media (width >=769px) {
  .member .thumb {
    max-width: 13rem;
    margin-bottom: 1rem;
  }
}

.member .textArea {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
}

.member .role {
  font-size: 1.2rem;
  color: #BEBEBE;
}

.member .name {
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}

@media (width >=769px) {
  .member .name {
    font-size: 2.2rem;
  }
}

.member .desc {
  margin-top: 1rem;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #666;
  text-align: left;
}

.memberPrev,
.memberNext {
  display: none;
}

@media (width >=769px) {
  .memberPrev,
  .memberNext {
    display: block;
    position: absolute;
    top: 50%;
    width: 5.6rem;
    height: 5.6rem;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 .3rem .6rem rgba(0, 0, 0, 0.16);
    transform: translateY(-50%);
    z-index: 20;
    transition: opacity .3s ease, visibility .3s ease;
  }

  .memberPrev {
    left: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .memberPrev.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .memberNext {
    right: 0;
    transform: translate(50%, -50%);
  }

  .memberNext.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .memberPrev::before,
  .memberNext::before {
    content: "";
    position: absolute;
    top: 50%;
    width: .6rem;
    height: .6rem;
    border-top: .15rem solid #3E3E3E;
    border-right: .15rem solid #3E3E3E;
  }

  .memberPrev::after,
  .memberNext::after {
    content: "";
    position: absolute;
    top: 50%;
    width: .9rem;
    height: .15rem;
    background: #3E3E3E;
  }

  .memberPrev::before {
    left: 48%;
    transform: translate(-50%, -50%) rotate(-135deg);
  }

  .memberPrev::after {
    left: 52%;
    transform: translate(-50%, -50%);
  }

  .memberNext::before {
    left: 52%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .memberNext::after {
    left: 48%;
    transform: translate(-50%, -50%);
  }
}

.memberProgress {
  width: 24rem;
  height: .4rem;
  margin-top: 2rem;
  margin-left: auto;
  background: #E3E3E3;
  border-radius: 999px;
  overflow: hidden;
}

@media (width >=769px) {
  .memberProgress {
    width: calc((1100px - 6rem) / 3);
  }
}

.memberProgress span {
  display: block;
  width: 25%;
  height: 100%;
  background: #3E3E3E;
  border-radius: 999px;
}
/* price */
.price {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #F2F2F2;
}
@media (width >=769px) {
.price {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
}

.enTitle {
  margin-top: 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  color: var(--main-color);
  text-align: center;
}

.serviceHeading {
  --min-size: 32;
  --max-size: 40;
  font-size: var(--clamp-size);
  text-align: center;
  color: #3E3E3E;
}

.serviceHeading + p {
  margin-top: 4rem;
  text-align: center;
}

.priceCards {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

.priceCard {
  width: 100%;
  max-width: 60rem;
  margin-inline: auto;
  border-radius: 1rem;
  overflow: hidden;
}

.priceCard h3 {
  padding: 1rem 1.5rem;
  background: var(--main-color);
  color: #fff;
  font-weight: 700;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  text-align: center;
}

.priceCardBody {
  padding: 2.5rem 2rem;
  background: #fff;
  text-align: center;
}


.priceCard p {
  color: #333; 
  font-weight: 700;
  --min-size: 24;
  --max-size: 28;
  font-size: var(--clamp-size);
  line-height: 1.2;
}


.priceCard p span.num {
  color: var(--main-color);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  --min-size: 40;
  --max-size: 50;
  font-size: var(--clamp-size);
  margin-left: .5rem;
}

.priceCard p span.unit {
  color: var(--main-color);
}


.priceCard ul {
  display: grid;
  gap: 1.2rem;
  padding-left: 2rem;
}

.priceCard li {
  position: relative;
  width: fit-content;
  padding-left: 2.2rem;
  font-weight: 700;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);

}

@media (width >=769px) {
  .priceCard ul {
  padding-left: 0;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
   gap: 2rem 6rem;
}
}

.priceCard li::before {
  content: "";
  position: absolute;
  top: .5em;
  left: 0;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--main-color);
  border-radius: 50%;
}

.priceCardSingle ul {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  gap: 1.2rem;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding-left: 0;
}

.priceCardSingle li {
  width: 100%;
  text-align: left;
}

@media (width >=769px) {
  .priceCardSingle ul {
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 1.2rem;
  }
}
.priceCardSupport {
  max-width: 60rem;
}

.priceSupportLayout {
  display: grid;
  gap: .1rem;
  align-items: stretch;
}

.priceSupportBlock {
  display: grid;
  grid-template-rows: auto 1fr;
}

.priceSupportBlock .priceCardBody {
  height: 100%;
}

.priceSupportLabel {
  color: #333;
  font-weight: 700;
  --min-size: 18;
  --max-size: 22;
  font-size: var(--clamp-size);
  /* padding-right: 14rem; */
  margin-bottom: 1rem;
}
@media (width >=769px) {
  .priceSupportLabel {
    text-align: left;
  }
}
.priceSupportAmount {
  margin-top: 0;
  white-space: nowrap;
}

.priceSupportAmount .unit {
  white-space: nowrap;
}

.priceCardSupport ul {
  grid-template-columns: 1fr;
  width: fit-content;
  margin-inline: auto;
  padding-left: 0;
}

.priceCardSupport li {
  width: 100%;
  text-align: left;
}

@media (width >=769px) {

  .priceSupportLayout {
    grid-template-columns: 1fr .1rem 1fr;
    gap: 0;
  }

  .priceSupportBlock:first-child {
    grid-column: 1;
  }

  .priceSupportBlock:last-child {
    grid-column: 3;
  }

  .priceCardSupport .priceCardBody {
    min-height: 20rem;
  }

  .priceSupportBlock:first-child .priceCardBody {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 4rem;
  }

  .priceSupportBlock:last-child .priceCardBody {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
/* flow */
.flow {
  padding-top: 6rem;
  background: #FAFAFA;
}

@media (width >=769px) {
  .flow {
    padding-top: 8rem;

  }
}

.serviceAnnotation {
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #757373;
  text-align: center;
}

.flowItems {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

@media (width >=769px) {
  .flowItems {
    max-width: 90rem;
    margin-inline: auto;
  }
}

.flowItem {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

@media (width >=769px) {
  .flowItem {
    gap: 2rem;
  }
}

.flowItem img {
  width: 100%;
  max-width: 7rem;
  flex-shrink: 0;
}

@media (width >=769px) {
  .flowItem img {
    max-width: 12rem;
  }
}

.flowCard {
  width: 100%;
  padding: 1.6rem;
  background: #fff;
  border: .2rem solid var(--main-color);
  border-radius: 2rem;
  text-align: left;
}

@media (width >=769px) {
  .flowCard {
    padding: 3.2rem;
  }
}

.flowCardHead {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.flowCardHead span {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--main-color);
  --min-size: 22;
  --max-size: 30;
  font-size: var(--clamp-size);
  line-height: 1;
}

.flowCardHead h3 {
  font-weight: 700;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
}

.flowCard p {
  margin-top: 1rem;
}

@media (width >=769px) {
  .flowCard p {
    margin-top: 2rem;
  }
}

/* faq */
.faq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #FAFAFA;
}

@media (width >=769px) {
  .faq {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.faqHeading {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  --min-size: 42;
  --max-size: 62;
  font-size: var(--clamp-size);
  color: var(--main-color);
}

.faqHeading span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  --min-size: 14;
  --max-size: 16;
  font-size: var(--clamp-size);
  color: #BEBEBE;
}

.faqList {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
}

.faqItem {
  padding: 2rem;
  background-color: #F2F2F2;
  border-radius: 1rem;
  overflow: hidden;
}

.faqQuestion {
  display: flex;
   align-items: flex-start;
  width: 100%;
  padding: 1rem;
  cursor: pointer;
  position: relative;
  text-align: left;
}

.qLabel {
  flex-shrink: 0;
  margin-right: 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--main-color);
  --min-size: 20;
  --max-size: 24;
  font-size: var(--clamp-size);
   line-height: 1.2;
}

.qText {
  flex: 1;
  font-weight: 700;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  line-height: 1.5;
}

.toggleIcon {
  display: inline-block;
  position: relative;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  margin-left: 1rem;
  border: .1rem solid #3E3E3E;
  border-radius: 50%;
  transition: background-color .3s ease, border-color .3s ease;
}

.toggleIcon::before,
.toggleIcon::after {
  content: "";
  position: absolute;
  background: #3E3E3E;
  transition: background-color .3s ease;
}

.toggleIcon::before {
  top: 50%;
  left: 50%;
  width: 2rem;
  height: .2rem;
  transform: translate(-50%, -50%);
}

.toggleIcon::after {
  top: 50%;
  left: 50%;
  width: .2rem;
  height: 2rem;
  transform: translate(-50%, -50%);
}

.faqAnswer {
  display: flex;
  align-items: flex-start;
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height .3s ease, padding .3s ease;
}

.faqQuestion[aria-expanded="true"] + .faqAnswer {
  max-height: 1000px;
  padding: 1rem;
  border-top: .1rem solid #E3E3E3;
}

.aLabel {
  flex-shrink: 0;
  margin-top: 1rem;
  margin-right: 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #BEBEBE;
  --min-size: 20;
  --max-size: 24;
  font-size: var(--clamp-size);
    line-height: 1.2;
}

.faqAnswer p {
  flex: 1;
  margin: 1rem 0 1.5rem;
  --min-size: 15;
  --max-size: 17;
  font-size: var(--clamp-size);
}

.faqQuestion[aria-expanded="true"] .toggleIcon {
  /* background-color: #3E3E3E; */
  border-color: #3E3E3E;
}

/* .faqQuestion[aria-expanded="true"] .toggleIcon::before {
  background-color: #fff;
} */

.faqQuestion[aria-expanded="true"] .toggleIcon::after {
  background-color: transparent;
}

/* appeal */
.appeal {
  width: min(82%, 89rem);
  margin-inline: auto;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 2rem;
  text-align: center;
  margin-bottom: 6rem;
}

@media (width >=769px) {
  .appeal {
    padding: 6rem 8rem;
    margin-bottom: 10rem;
  }
}

.appeal p:first-child {
  font-weight: 700;
  --min-size: 20;
  --max-size: 28;
  font-size: var(--clamp-size);
  line-height: 1.8;
}

.appeal p:first-child span {
  color: var(--main-color);
}

.appeal p:last-child {
  margin-top: 2rem;
  --min-size: 15;
  --max-size: 17;
  font-size: var(--clamp-size);
}

.appeal p:last-child span {
  color: var(--main-color);
  font-weight: 700;
}


.appeal p.appeal-highlight {
  margin-top: 2rem;
  --min-size: 15;
  --max-size: 17;
  font-size: var(--clamp-size);
}

.appeal p.appeal-highlight span {
  color: var(--main-color);
  font-weight: bold;
}

/* welcartAbout */
.welcartAbout {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fff;
}

@media (width >=769px) {
  .welcartAbout {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.welcartAbout .serviceHeading {
 color: var(--main-color); 
}
.welcartAboutWrapper {
  display: grid;
  gap: 3rem;
}

@media (width >=769px) {
  .welcartAboutWrapper {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10rem;
  }

  .welcartAbout .serviceHeading {
    text-align: left;
    white-space: nowrap;
  }
}
.welcartAboutLead {
  font-weight: 700;
  --min-size: 22;
  --max-size: 28;
  font-size: var(--clamp-size);
}

.welcartAboutLead + p {
  margin-top: 1.5rem;
}

.welcartAboutLead + p + p {
  margin-top: 1rem;
}
.welcartAboutText span {
  color: var(--main-color);
  font-weight: 700;
}

/* useScene */
.useScene {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fff;
  margin-top: 2rem;
}

@media (width >=769px) {
  .useScene {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.useSceneWrapper {
  display: grid;
  gap: 4rem;
}

@media (width >=769px) {
  .useSceneWrapper {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
  }
}

.useSceneLead {
  font-weight: 700;
}

.useScene .serviceHeading {
  margin-top: 1rem;
  color: var(--main-color);
}

@media (width >=769px) {
  .useScene .serviceHeading {
    text-align: left;
  }
}

.useSceneList {
  display: grid;
  gap: 1.2rem;
  margin-top: 3rem;
  padding: 2rem;
  border: .1rem solid var(--main-color);
  border-radius: 1rem;
}
@media (width >=769px) {
  .useSceneList {
    max-width: 42rem;
    padding-left: 4rem;
  }
}
.useSceneList li {
  position: relative;
  padding-left: 2.2rem;
  font-weight: 700;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
}

.useSceneList li::before {
  content: "";
  position: absolute;
  top: .5em;
  left: 0;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--main-color);
  border-radius: 50%;
}
@media (width >=769px) {
  .useSceneList li {
    white-space: nowrap;
  }
}
.useSceneImage {
  text-align: center;
}

@media (width >=769px) {
  .useSceneImage {
    text-align: right;
  }
}

.useSceneImage img {
  width: 100%;
  max-width: 55.5rem;
}