/*料金表(ここから)*/
.price-list-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px;
  border-top: 1px solid;
}
.price-list-item1 h4 {
  border-bottom: solid 1px;
}
.price-list-item2 img {
  max-width: 450px;
  border: solid 1px;
  width: 100%;

  margin-top: 12px;
}
iframe {
  display: block;
  margin: 6px auto;
  border: solid 1.5px;
  width: 900px;
  height: 300px;
}
/*ウェブ制作(ここから)*/
/*ウェブ制作(ここまで)*/
/*料金表(ここまで)*/
/*スマホ表示(ここから)*/
@media screen and (max-width: 780px){
  .flow-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 横に2列 */
    /*grid-template-rows: repeat(4, 1fr);    /* 縦に4行 */
    gap: 12px; /* アイテム間のスペースを調整する場合 */
    justify-items: center; /* アイテムを中央揃え */
    align-items: center;   /* 垂直方向に中央揃え */
  }
  .flow-item {
    width: 165px;
  }
  iframe {
    width: 96%;
  }
}
/*スマホ表示(ここまで)*/