@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  持ち物

---------------------------------*/
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------

  受診の流れ

---------------------------------*/
.flowBlock {}
.flowBlock .contentsTxt ._wavy {
  color: var(--col-re);
  font-size: 1.1em;
  font-weight: 700;
}
.flowBlock .contentsTxt ol {
  list-style: none;
  max-width: 88rem;
  margin: 0;
  padding: 0;
}
.flowBlock .contentsTxt ol li {
  border: 1px solid #ddd;
  border-radius: 1rem;
  margin-top: 3rem;
  padding: 3rem;
  position: relative;
}
.flowBlock .contentsTxt ol li:not(:last-child)::after {
  content: '';
  background: #ddd;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2.5rem;
  width: 50px;
  height: 25px;
}
.flowBlock .contentsTxt ol li h3 {
  background: #f9f7f5;
  border-radius: .5rem;
  margin: 0 0 2rem;
  padding: .5rem 2rem;
}
.flowBlock .contentsTxt ol li .wrap {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
.flowBlock .contentsTxt ol li ._txt {}
.flowBlock .contentsTxt ol li figure {
  flex: 0 0 30rem;
  margin: 0;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .flowBlock .contentsTxt ol li .wrap {
    flex-direction: column;
    gap: 1.5rem;
  }
  .flowBlock .contentsTxt ol li figure {
    flex: none;
    margin: 0;
  }
}
@media screen and (max-width: 480px) {
  .flowBlock .contentsTxt ol li {
    margin-top: 3rem;
    padding: 1rem;
  }
  .flowBlock .contentsTxt ol li ._txt {
    padding: 0 1rem;
  }
}