/* **************************************************************
MV
************************************************************** */
.mv__container {
  background-image: url("../img/mv-bg.jpg");
  background-position: right center;
}

.mv__img {
  background-image: url("../img/mv-img.jpg");
}

.mv__grid {
  box-shadow: 3px 8px 15px rgba(0, 0, 0, 0.55);
}

/* **************************************************************
.l-cv-block
************************************************************** */
.l-cv-block {
  background-image: url("../img/mv-bg.jpg");
}

.title-tag {
  font-size: var(--fz-headline-md);
  font-weight: var(--weight-b);
}

.title-tag.title-tag--merit span {
  background-color: var(--color-main1);
}

.title-tag span {
  background-color: var(--ft-color-support);
  color: var(--bg-color-white);
  font-size: var(--fz-txt-lg);
  display: inline-block;
  padding: 0.3rem 0.7rem;
  margin-right: 1em;
  font-weight: normal;
}

.scenes {
  display: grid;
  gap: 5rem;
}
.scene {
  counter-increment: num;
}
.scene__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  min-width: 0;
  margin-bottom: 3rem;
}
.scene__head span {
  /* background: var(--color-main1); */
  /* color: var(--bg-color-white); */
  color: var(--ft-color-main);
  display: flex;
  flex-direction: row;
  line-height: 1;
  gap: 0.5rem;
  align-items: center;
  /* font-family: var(--font-en-R); */
  font-size: var(--fz-txt-lg);
  font-family: var(--font-mincho);
  font-weight: var(--weight-b);
  /* border-bottom: 3px solid var(--color-main1); */
  /* padding: 0.15em 0.5em; */
}
.scene__head span::after {
  content: counter(num, decimal-leading-zero);
  font-size: var(--theme-headline-lg);
  font-weight: var(--weight-b);
}
.scene__headline {
  font-size: var(--fz-headline-md);
  font-weight: var(--weight-b);
  font-family: var(--font-mincho);
}
.scene__imgs {
  display: flex;
  gap: 2rem;
}

.cf-imgs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.cf-imgs::after {
  content: "";
  display: block;
  background-image: url("../img/img-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  aspect-ratio: 1 / 1;
  width: 4em;
  flex-shrink: 0;
  order: 1;
}

.cf-img:nth-child(2) {
  order: 2;
}
/*----------------------------------------------------------
img__box
----------------------------------------------------------*/
.img__box01 {
  max-width: 850px;
  margin: auto;
}

.u-img-border {
  border: 1px solid #e0e0e0 !important;
}

@media (max-width: 786px) {
  .img__box01 {
    flex-direction: column;
    gap: 30px;
  }
  .img__box01::after {
    display: none;
  }
  .img__box01 .cf-img {
    position: relative;
  }
  .img__box01 .cf-img:first-of-type::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../img/img-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: rotate(90deg) translateX(-50%);
  }
}

@media (max-width: 768px) {
  .m-pagetop {
    bottom: 100px;
  }
}