@charset "utf-8";
/* CSS Document */
/***********************
    main
***********************/
.flow li {
  width: 90%;
  text-align: center;
  background: #fff;
  margin: 0 auto 100px;
  padding: 30px 5px;
  border-radius: 10px;
  position: relative;
}
.flow li:last-child {
  margin-bottom: 60px;
}
.flow li:not(:last-child)::after {
  content: url("../img/flow/img_polygon.png");
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translate( -50% , -50% );
}
.abot_flow {
  margin-bottom: 120px;
  text-align: center;
}
section > .abot_flow:last-child {
  margin-bottom: 0;
}
.abot_flow dl {
  font-weight: 600;
  margin-bottom: 30px;
}
.abot_flow dd {
  display: inline-block;
  text-align: left;
  font-size: 1.125em;
  line-height: 1.6;
}
.abot_flow dd:has(a) {
  display: block;
  text-align: center;
}
.abot_flow a.info_link {
  display: inline-block;
  background: #F9DCDC;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  margin-top: 30px;
}

@media screen and (max-width: 480px) { 
/*　画面サイズが480px以下はここを読み込む　*/
  /***********************
      main
  ***********************/
}
@media screen and (min-width: 481px) { 
/*　画面サイズが481pxからはここを読み込む　*/
  /***********************
      main
  ***********************/
  .flow {
    margin-top: 12vw;
  }
  .flow li {
    width: clamp(300px, 50vw , 600px);
  }
}
@media screen and (min-width: 768px) { 
/*　画面サイズが768pxからはここを読み込む　*/
}
@media screen and (min-width: 961px) { 
/*　画面サイズが961pxからはここを読み込む　*/
}
@media screen and (min-width: 1601px) { 
/*　画面サイズが1601pxからはここを読み込む　*/
}