@charset "UTF-8";

.p-philosophy__content{
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}

.p-philosophy__item{
  margin-top: 40px;
}

.p-philosophy__item:first-of-type{
  margin-top: 0;
}

.p-philosophy__item-title{
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  width: fit-content;
  border-bottom: solid 1px var(--color-primary);
  padding: 0 15px 10px 0;
}

.p-philosophy__item-text{
  line-height: 1.8;
  margin-top: 10px;
}

@media (max-width: 768px) {

  .p-philosophy__content{
    flex-direction: column;
    margin-top: 40px;
    gap: 50px;
  }

  .p-philosophy__item{
    margin-top: 30px;
  }

  .p-philosophy__item-title{
    font-size: 1.6rem;
    padding: 0 10px 5px 0;
  }
  
}