/* ---------------------------
    共通パーツ
----------------------------- */
.head .section__inner {
  padding: 90px 40px 60px;
}

@media screen and (max-width: 750px) {
  .head .section__inner {
    padding: 6rem 3.1rem 3rem;
  }
}

/* ---------------------------
    メインコンテンツ
----------------------------- */
.message {
  background-image: url(../images/company/bgPhilosophy01.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 65px 40px;
}

.message__texts {
  display: flex;
  flex-direction: column;
  gap: 50px;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1.3px;
}

.philosophy {
  padding: 60px 40px 120px;
}

.philosophy__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.philosophy__title {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-light-blue);
}

.philosophy__list {
  list-style: decimal;
  padding-left: 20px;
}

.philosophy__item,
.philosophy__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.7px;
}

.philosophy__layout {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 65px;
}
@media screen and (max-width: 750px) {
  .message {
    background-image: url(../images/company/bgPhilosophy01Sp.webp);
    padding: 6rem 1rem;
  }
  
  .message__texts {
    gap: 3rem;
    font-size: 1.6rem;
    letter-spacing: 0.08rem;
  }
  .philosophy{
    padding: 3rem 3rem 9rem;
  }
  .philosophy__inner {
    gap: 6rem;
  }
  .philosophy__title {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    padding-bottom: 1.5rem;
  }
  
  .philosophy__list {
    padding-left: 2rem;
  }
  
  .philosophy__item,
  .philosophy__text {
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
  }
  
  .philosophy__layout {
    grid-template-columns: repeat(1,1fr);
    gap: 6rem;
  }
}