@charset "UTF-8";
/* CSS Document */
.developer-section {
  text-align: center;
  padding: 60px 20px;
  font-family: 'MS Mincho', 'Hiragino Mincho Pro', 'IPA Mincho', serif;
}
.icon-container {
  margin-bottom: 20px;
}
.icon-image {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border: 2px solid black;
}
.developer-name {
  font-size: 2em;
  margin: 40px 0 40px;
}
.developer-description {
  font-size: 1em;
  line-height: 2.0;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}
/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .icon-image {
    width: 280px;
    height: 280px;
  }
  .developer-name {
    font-size: 1.4em;
  }
  .developer-description {
    font-size: 0.7em;
    line-height: 2.0;
  }
}