.p-flow h2 {
  font-size: 42px;
  text-align: center;
  color: #633418;
}

.decoration1 {
  width: 500px;
  height: 500px;
  background-color: #F7F3E9;
  border-radius: 50%;
  position: absolute;
  top: 200px;
  left: -20px;
  z-index: 0;
}

.decoration2 {
  width: 300px;
  height: 300px;
  background-color: #F7F3E9;
  border-radius: 50%;
  position: absolute;
  top: 600px;
  right: 40px;
  z-index: 0;
}

.decoration3 {
  width: 200px;
  height: 200px;
  background-color: #F7F3E9;
  border-radius: 50%;
  position: absolute;
  bottom: -300px;
  left: 20px;
  z-index: 0;
}

.contents {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.flow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1;
}

.flow img {
  width: 150px;
  height: auto;
}

.flow .flow-title {
  font-size: 24px;
}

.flow .flow-p {
  font-size: 16px;

}



/* ===========================スマホサイズ============================ */
@media screen and (max-width: 768px) {

  .decoration1 {
  width: 300px;
  height: 300px;
  background-color: #F7F3E9;
  border-radius: 50%;
  position: absolute;
  top: 200px;
  left: -20px;
  z-index: 0;
}

.decoration2 {
  width: 200px;
  height: 200px;
  background-color: #F7F3E9;
  border-radius: 50%;
  position: absolute;
  top: 600px;
  right: 40px;
  z-index: 0;
}

.decoration3 {
  width: 150px;
  height: 150px;
  background-color: #F7F3E9;
  border-radius: 50%;
  position: absolute;
  bottom: -300px;
  left: 50px;
  z-index: 0;
}


  .contents {
    grid-template-columns: 1fr;
  }

  .p-flow h2 {
  font-size: 32px;
}

.flow {
  padding: 0 60px;
}

  .flow img {
  width: 100px;
  height: auto;
}

.flow .flow-title {
  font-size: 20px;
}

.flow .flow-p {
  font-size: 14px;
}

}