.aboutIntro h3 {
  padding-bottom: 50px;
}
.aboutIntroImg {
  background-image: url("../img/about/in01.jpg"); /* 背景画像を設定 */
  background-position: center; /* 背景画像の位置を中央に設定 */
}

.aboutThreeBlock {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}
.aboutThreeBlock div {
  width: 100%;
  padding-bottom: 50px;
  margin: auto;
}
.aboutThreeBlock div img {
  margin: auto;
}

.aboutUnderImg {
  background-image: url("../img/in02.jpg"); /* 背景画像を設定 */
  background-position: right bottom; /* 背景画像の位置を中央に設定 */
}

/*==================================================
Flex 横幅調整
==================================================*/
@media screen and (min-width:500px)and (max-width:749px) {
  .AboutThree {
    width: 90%;
    height: auto;
    display: flex;
    align-items: flex-start;
    gap: 0 30px;
  }
  .aboutThreeBlock {
    margin-top: 0;
  }
}
@media screen and (min-width:750px)and (max-width:960px) {
  .AboutThree {
    width: 80%;
    height: auto;
    display: flex;
    align-items: flex-start;
    gap: 0 20px;
  }
  .aboutThreeBlock {
    margin-top: 0;
  }
}
@media screen and (min-width:960px)and (max-width:1499px) {
  .AboutThree {
    width: 70%;
    height: auto;
    display: flex;
    align-items: flex-start;
    gap: 0 50px;
  }
  .aboutThreeBlock {
    margin-top: 0;
  }
}
@media screen and (min-width:1500px) {
  .AboutThree {
    width: 50%;
    height: auto;
    display: flex;
    align-items: flex-start;
    gap: 0 50px;
  }
  .aboutThreeBlock {
    margin-top: 0;
  }
}

/*==================================================
タブレット画面
==================================================*/
@media screen and (min-width:450px)and (max-width:960px) {
  .adjustment {
    width: 50%;
  }
}

/*==================================================
パソコン画面
==================================================*/
@media screen and (min-width:960px)and (max-width:1499px) {
  .adjustment {
    width: 30%;
  }
}

/*==================================================
パソコン大画面
==================================================*/
@media screen and (min-width:1500px) {

}