/* ------------------------------------------
プロフィールパネルの画像とテキスト配置
   ------------------------------------------ */
.profile-item {
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 0 20px;
}
.image-profile {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0px 5px 12px #cad4e2, -6px -6px 12px #fff;
}
.profile-text {
  flex: 1;
  line-height: 1.6;
}

.profile-text p {
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.profile-text span {
  font-weight: 600;
}
/* PC表示用のスタイル（768px以上） */
@media screen and (min-width: 768px) {
  .profile-item {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 20px 20px;
    display: flex;
    justify-content: space-around;
    gap: 150px;
  }
  .image-profile {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0px 5px 12px #cad4e2, -6px -6px 12px #fff;
  }
  .profile-text {
    line-height: 1.8;
  }

  .profile-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
  }
}
/* たいせつにしていること */
.image-profile {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0px 5px 12px #cad4e2, -6px -6px 12px #fff;
}
.important-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.important-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.belief-img {
  width: 80px;
  height: 80px;
  margin-right: 20px;
}
.important-text p {
  font-size: 0.9rem;
  line-height: 1.6;
}
/* PC表示用のスタイル（768px以上） */
@media screen and (min-width: 768px) {
  .important-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 20px 20px;
    display: flex;
    justify-content: space-around;
  }
  .important-item {
    display: block;
    margin-bottom: 40px;
  }
  .belief-img {
    width: 200px;
    height: 200px;
    margin-right: 30px;
  }
  .important-text p {
    font-size: 1.1rem;
    line-height: 1.8;
  }
}
/* できること */

/* ===== Skills with Blue Stars ===== */

.skills-stars {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
.skill-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 6px;
  border-bottom: 2px solid #bababa;
}
.skill-item:last-child {
  border-bottom: none;
}

.skill-name {
  font-weight: 600;
  padding: 0 5px;
  font-size: 0.9rem;
}

.stars {
  font-size: 1rem;
  letter-spacing: 10px;
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
}

/* PC表示用のスタイル（768px以上） */
@media screen and (min-width: 768px) {
  .skills-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 20px 20px;
    display: flex;
    justify-content: space-around;
  }
  .skills-block {
    display: flex;
    justify-content: flex-start;
  }
  .skills-stars {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px 20px 20px;
  }

  .skill-name {
    font-weight: 600;
    padding: 0 50px 0 10px;
    font-size: 1.2rem;
  }
  .stars {
    font-size: 1.5rem;
    letter-spacing: 10px;
    color: var(--color-text);
    font-family: "Noto Sans JP", sans-serif;
  }
}
