.mv {
  width: 100%
}

.doctor-recommendation {
  background-color: #fff;
  box-shadow: 0px 8px 20px 0px rgba(31, 114, 208, .2)
}

@media print,
screen and (min-width: 768px) {
  .doctor-recommendation {
    padding: 40px 88px 56px
  }
}

@media screen and (max-width: 767.98px) {
  .doctor-recommendation {
    padding: 24px 20px
  }
}

.doctor-recommendation__heading {
  --color: #06408c;
  text-align: center
}

@media print,
screen and (min-width: 768px) {
  .doctor-recommendation__text {
    margin-top: 32px
  }
}

@media screen and (max-width: 767.98px) {
  .doctor-recommendation__text {
    margin-top: 16px
  }
}

@media print,
screen and (min-width: 768px) {
  .doctor-recommendation__cards {
    margin-top: 32px
  }
}

@media screen and (max-width: 767.98px) {
  .doctor-recommendation__cards {
    margin-top: 20px
  }
}

.doctor-recommendation__note-container {
  text-align: right
}

@media print,
screen and (min-width: 768px) {
  .doctor-recommendation__note-container {
    margin-top: 24px
  }
}

@media screen and (max-width: 767.98px) {
  .doctor-recommendation__note-container {
    margin-top: 12px
  }
}

.doctor-recommendation-card {
  display: flex;
  width: 100%;
  background-color: #f5f8fa;
  border-radius: 8px
}

@media print,
screen and (min-width: 768px) {
  .doctor-recommendation-card {
    flex-direction: column;
    align-items: center;
    column-gap: 20px;
    padding: 0 24px 30px;
    margin-top: 40px
  }
}

@media screen and (max-width: 767.98px) {
  .doctor-recommendation-card {
    align-items: flex-start;
    column-gap: 12px;
    padding: 16px 12px
  }
}

.doctor-recommendation-card__image {
  flex-shrink: 0
}

@media print,
screen and (min-width: 768px) {
  .doctor-recommendation-card__image {
    width: 140px;
    height: 140px;
    transform: translateY(-40px)
  }
}

@media screen and (max-width: 767.98px) {
  .doctor-recommendation-card__image {
    width: 72px;
    height: 72px
  }
}

.doctor-recommendation-card__title {
  font-weight: bold;
  color: #005bac
}

@media print,
screen and (min-width: 768px) {
  .doctor-recommendation-card__title {
    text-align: center;
    font-size: 1.0625rem
  }
}

@media screen and (max-width: 767.98px) {
  .doctor-recommendation-card__title {
    text-align: left;
    font-size: .875rem
  }
}

@media print,
screen and (min-width: 768px) {
  .doctor-recommendation-card__description {
    margin-top: 12px;
    font-size: 1rem
  }
}

@media screen and (max-width: 767.98px) {
  .doctor-recommendation-card__description {
    margin-top: 8px;
    font-size: .875rem
  }
}

.doctor-recommendation-card__personality {
  margin-top: 4px;
  text-align: right;
  font-size: .8125rem
}


.mv {
  position: relative;
}

.mv .movie {
  position: relative;
  font-size: 0;
}

.mv .movie video {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.mv .movie .movie-txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}

.mv .movie .movie-txt h2 {
  width: 100%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.mv .movie .movie-txt h2 img {
  width: 85vw;
}

.mv .p-page-lead__button {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: calc(100% - 30px);
}


@media print,
screen and (min-width: 768px) {

  .mv .movie video {
    aspect-ratio: 16 / 9;
    height: 450px;
  }

  .mv .movie .movie-txt h2 img {
    width: 600px;
  }

  .mv .p-page-lead__button {
    bottom: 25px;
    left: calc(50% - 168px);
  }
}