@charset "UTF-8";
.env_top_blocks {
  box-sizing: border-box;
  padding: 1px 80px 80px;
  border-radius: 30px;
  background: #fff;
  border: 10px solid #0378e6;
}
.env_top_blocks.padding_min {
  padding: 1px 50px 35px;
}

.qualifications-container {
  width: 100%;
  margin-top: 40px;
  border-top: 1px solid #ccc; /* 行の区切り線を追加 */
}

.qualifications-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ccc; /* 行の区切り線を追加 */
}

.qualification {
  box-sizing: border-box;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-right: 1px solid #ccc; /* 資格情報間の縦線を追加 */
}

.qualifications-row .qualification:nth-child(odd) {
  padding: 20px 40px 20px 0; /* 左側の資格 */
}

.qualifications-row .qualification:nth-child(even) {
  padding: 20px 0 20px 40px; /* 右側の資格 */
}

.qualification:last-child {
  border-right: none; /* 最後の資格情報に縦線を表示しない */
}

.title {
  text-align: left;
  font-size: 22px;
  flex: 1;
  line-height: 1em;
}

.number {
  font-size: 65px;
  color: #0378e6;
  background: linear-gradient(to right, #0378e6, #0054a7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 10px;
  font-weight: bold;
}

.number span {
  font-size: 16px; /* 「名」の文字サイズを調整 */
  color: #000;
}

#other_data {
  text-align: center;
}
#other_data p {
  font-size: 30px;
}
#other_data .bold {
  margin-bottom: -15px;
  padding-top: 15px;
}

.pink {
  color: coral;
}

.niju {
  color: #00a1ec;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  .env_top_blocks {
    padding: 1px 35px 35px;
  }
  .env_top_blocks .qualifications-row {
    flex-direction: column;
  }
  .env_top_blocks .qualification {
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
  .env_top_blocks .qualifications-row .qualification:nth-child(odd),
  .env_top_blocks .qualifications-row .qualification:nth-child(even) {
    padding: 20px 0;
  }
  .env_top_blocks .qualification:last-child {
    border-bottom: none;
  }
  .r_cont .env_top_blocks {
    margin-top: 50px;
  }
}/*# sourceMappingURL=env.css.map */