.faximo_flow .txt_link{
  color: #0000EE;
  text-decoration: underline;
}

/*----------------------------------------------------*/
/*                      flow_step                     */
/*----------------------------------------------------*/

.faximo_flow .flow_step_back {
  padding: 3px;
}
.faximo_flow.management_screen .flow_step li {
  border-bottom: none;
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  background-color: #fafafa;
  color: #526BCE;
}

/* -------------- PC表示 -------------- */
@media (min-width: 768px) {
  .faximo_flow h2{
    margin-bottom: 80px;
  }
  .faximo_flow .flow_step_back {
    background-color: #c6cdec;
  }
  .faximo_flow .flow_step {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
  }
  .faximo_flow.management_screen .flow_step li {
    display: flex;
    flex: 1;
    padding: 16px 16px;
    margin-right: -20px;
    clip-path: polygon(
      0 0,
      calc(100% - 24px) 0,
      100% 50%,
      calc(100% - 24px) 100%,
      0 100%,
      24px 50%
    );
  }
  .faximo_flow.management_screen .flow_step li:first-child {
    clip-path: polygon(
      0 0,
      calc(100% - 24px) 0,
      100% 50%,
      calc(100% - 24px) 100%,
      0 100%
    );
  }
  .faximo_flow.management_screen .flow_step li:last-child {
    margin-right: 0;
    clip-path: polygon(
      0 0,
      100% 0,
      100% 100%,
      0 100%,
      24px 50%
    );
  }
}

/* -------------- 携帯表示 -------------- */
@media (max-width: 768px) {
  .faximo_flow h2 {
    margin-bottom: 50px;
  }
  .faximo_flow .flow_step_back {
    background-color: #c6cdec;
  }
  .faximo_flow .flow_step {
    display: block;
  }
  .faximo_flow.management_screen .flow_step li {
    position: relative;
    margin-right: 0;
    margin-bottom: 20px;
    padding: 20px;
    min-height: 90px;
    background-color: #fafafa;
    clip-path: none;
  }

  .faximo_flow.management_screen .flow_step li::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 42px;
    height: 20px;
    background-color: #fafafa;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }

  .faximo_flow.management_screen .flow_step li:last-child {
    margin-bottom: 0;
  }

  .faximo_flow.management_screen .flow_step li:last-child::after {
    content: none;
  }

  .faximo_flow.management_screen .flow_step li p {
    margin: 0;
    width: 100%;
  }
}

/*----------------------------------------------------*/
/*                  flow_to_payment                   */
/*----------------------------------------------------*/
.flow_to_payment {
  margin-top: 30px;
  margin-bottom: 20px;
}

/*----------------------------------------------------*/
/*                   flow_contents                    */
/*----------------------------------------------------*/
.faximo_flow.management_screen .flow_contents li{
  border-bottom: none;
}
.faximo_flow .flow_contents h3{
  border-bottom: solid 1px #787878;
  padding-bottom: 10px;
}
.faximo_flow .flow_content{
  margin-bottom: 30px;
}
/* -------------- 携帯表示 -------------- */
@media (max-width: 768px) {
  .faximo_flow .flow_contents h3 {
    text-align: center;
    font-size: 22px;
  }
  .faximo_flow .flow_content{
    margin-bottom: 20px;
  }
}

/*----------------------------------------------------*/
/*                   autosend_mail                    */
/*----------------------------------------------------*/
.faximo_flow .autosend_mail .mail_row {
  display: flex;
  align-items: flex-start;
}
/* -------------- PC表示 -------------- */
@media (min-width: 768px) {
  .faximo_flow .autosend_mail .mail_label {
    width: 210px;
  }
}
/* -------------- 携帯表示 -------------- */
@media (max-width: 768px) {
  .faximo_flow .autosend_mail .mail_row {
    display: block;
  }
}


/*----------------------------------------------------*/
/*              identity_document_type                */
/*----------------------------------------------------*/
.faximo_flow.management_screen .identity_document_type li{
  padding: 0;
  margin-left: 20px;
}
.faximo_flow .identity_document_type .type_row {
  display: flex;
  align-items: flex-start;
}
/* -------------- 携帯表示 -------------- */
@media (max-width: 768px) {
  .faximo_flow .identity_document_type .type_row {
    display: block;
  }
}

/*----------------------------------------------------*/
/*                 identity_document                  */
/*----------------------------------------------------*/
.faximo_flow.management_screen .identity_document p {
  line-height: 1.8;
  font-size: 18px;
}
.faximo_flow.management_screen .identity_document .identity_document_list p {
  line-height: 2;
}

/*----------------------------------------------------*/
/*                     flow_end                       */
/*----------------------------------------------------*/
.faximo_flow .flow_end_message {
  font-size: 27px;
  line-height: 1.5;
}

/*----------------------------------------------------*/
/*                  flow_attention                    */
/*----------------------------------------------------*/
.faximo_flow .flow_attention {
  padding: 30px 60px;
  background-color: #FAFAFA;
}
.faximo_flow.management_screen .flow_attention_list li{
  display: grid;
  grid-template-columns: 2em 2em 1fr;
  justify-content: center;
  padding: 0;
}
.faximo_flow.management_screen .flow_attention_list p{
  font-weight: bold;
  line-height: 1.5;
}
.faximo_flow .locationCheck_title{
  font-size: 20px;
}

/* -------------- 携帯表示 -------------- */
@media (max-width: 768px) {
  .faximo_flow .flow_attention {
    padding: 20px;
  }
  .faximo_flow.management_screen .flow_attention_list li{
    grid-template-columns: 0 2em 1fr;
  }
  .faximo_flow .locationCheck_title{
    text-align: center;
    line-height: 1.5;
  }
}