@charset "utf-8";
/* CSS Document */
.under_mv{
  background: url(../../img/mv.png) no-repeat center;
  background-size: cover;
}
.pro_inner {
  gap: 50px;
  max-width: 1024px;
  width: 90%;
  margin: 50px auto;
}
.pro_flow {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pro_flow li {
  display: flex;
  gap: 30px;
}
.pro_flow--num {
  --size: 60px;
  width: var(--size);
  height: var(--size);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  background: var(--red);
  color: #FFF;
  font-size: var(--fs-18);
  line-height: 1;
}
.pro_flow--numbig {
  font-size: var(--fs-24);
}
.pro_textbox {
  width: 100%;
}
.pro_title {
  font-size: 1.8rem;
  font-weight: bold;
  min-height: 60px;
  border-bottom: 1px solid #000;
  width: 100%;
  display: flex;
  align-items: center;
}
.pro_text {
  margin-top: 20px;
  line-height: 2;
}
.pro_lastbox {
  text-align: center;
  padding: 30px 5%;
  margin-top: 50px;
  background: #FFEEED;
  p {
    font-size: var(--fs-24);
    font-weight: bold;
    line-height: 2;
  }
}
@media screen and ( max-width: 1023px ) {
}
@media screen and ( max-width: 767px ) {
  .pro_flow {
    gap: 30px;
  }
  .pro_flow li {
    gap: 15px;
  }
  .pro_flow--num {
    --size: 50px;
  }
  .pro_title {
    min-height: 50px;
  }
  .pro_text {
    margin-top: 10px;
  }
}
