.section-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.item-right {
  font-size: 2.8rem;
  line-height: 3.9rem;
  font-weight: bold;
  color: var(--red-light-1);
}

.phone-container {
  display: none;
}
.pc-container {
  display: flex;
}

@media screen and (max-width: 767px) {
  .phone-container {
    display: flex;
    flex-direction: column;
  }
  .pc-container {
    display: none;
  }
  .section-card {
    border-radius: 0.5rem;
  }
  .section-card:nth-child(2) {
    flex-direction: column;
    padding: 1rem;
    align-items: flex-start;
  }
  .phone-container .title {
    font-size: 0.7rem;
    line-height: 1rem;
  }
  .phone-container .subtitle {
    font-size: 0.6rem;
    line-height: 0.8rem;
    margin-top: 0;
  }
  .phone-container .subtitle span:first-child {
    margin-right: 0.75rem;
  }
  .item-right {
    font-size: 0.6rem;
    line-height: 0.8rem;
    font-weight: 400;
    padding: 0.5rem 0;
  }
  .section-card:nth-child(3){
    margin-top: 0.75rem;
    padding: 1rem 0.75rem;
  }
  .mce-content{
    font-size: 0.65rem;
    line-height: 1rem;
    overflow: hidden;
  }
  .mce-content p span{
    overflow: hidden !important;
    white-space: pre-wrap !important;
  }
}
