/* **************************************************************
MV
************************************************************** */
.mv__container {
  background-image: url("../img/mv-bg.jpg");
  background-size: cover;
  background-position: center;
}

.mv__img {
  background-image: url("../img/mv-img.jpg");
}

.mv__grid {
  box-shadow: 3px 8px 15px rgba(0, 0, 0, 0.55);
}

.numberLists {
  display: grid;
  gap: 2.5rem;
}

.numberList {
  counter-increment: num;
}

.numberList__headline {
  font-weight: var(--weight-b);
  color: var(--color-main1);
  font-size: var(--fz-headline-sm);
  display: flex;
  gap: 0.5em;
  align-items: center;
  margin-bottom: 1rem;
}

.numberList__headline::before {
  content: counter(num);
  color: var(--bg-color-white);
  background-color: var(--color-main1);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  width: 2em;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.number-techs {
  display: grid;
  gap: 3rem;
}

.number-tech {
  counter-increment: num;
}
.number-tech__headline {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1rem;
}
.number-tech__headline span {
  background-color: var(--color-main1);
  color: var(--bg-color-white);
  border-radius: 50%;
  display: block;
  text-align: center;
  aspect-ratio: 1 / 1;
  line-height: 1;
  padding: 1rem;
  font-size: 2rem;
}
.number-tech__headline span::after {
  content: counter(num, decimal-leading-zero);
  display: block;
  font-weight: bold;
}

.comp__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
.comp__title {
  text-align: center;
  padding: 0.5rem;
  color: var(--bg-color-white);
  background-color: var(--color-support1);
  font-weight: bold;
}

.comp__caution .comp__title {
  background-color: var(--color-main1);
}

@media (max-width: 768px) {
  .comp__row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* **************************************************************
.l-cv-block
************************************************************** */
.l-cv-block {
  background-image: url("../img/mv-bg.jpg");
}

.dev-faqs {
  display: grid;
  gap:60px;
}
.dev-faq__box{
  display: flex;
  gap:15px;
}
.dev-faq__name{
  flex-shrink: 0;
  font-weight: var(--weight-b);
  font-size: var(--fz-headline-xs);
}
.dev-faq__title {
  display: grid;
  grid-template-columns: auto 1fr;
  /* align-items: end; */
  /* align-items: flex-end; */
  align-items: first baseline;
  gap: 1rem;
  baseline-shift: baseline;
}
.dev-faq__title::before {
  display: inline-block;
  content: "Q";
  line-height: 1;
  color: var(--ft-color-main);
  font-size: var(--fz-headline-lg);
  font-weight: var(--weight-b);
}

.m-pagetop {
  bottom: 40px;
}