@charset "UTF-8";

.Title {
  font: 500 2rem / 1.2 var(--font-family-sans);
  margin: 2rem auto;
  width: fit-content;
}

@media screen and (min-width: 768px) {
  .Title {
    font-size: 2.5rem;
  }
}

.Flow {
  margin: 0 0 6rem 0;
}

.Flow_List {
  margin: 0;
  padding: 0 15px;
}

.Flow_Item {
  margin: 0 auto;
  max-width: 900px;
  padding: 0;
}

.Flow_Step {
  display: flex;
  justify-content: center;
  position: relative;
}

.Flow_Order {
  text-align: center;
  background-color: #fff;
  height: fit-content;
  left: 0;
  padding: .0625rem 5px 0 5px;
  position: absolute;
  top: 0;
}

.Flow_OrderLabel {
  color: var(--color-gray);
  font: 500 1rem / 1 var(--font-family-sans);
  margin: 0;
}

.Flow_Number {
  color: #4FA6E8;
  font: 300 2rem / 1 var(--font-family-sans);
  margin: 0;
  position: relative;
  top: -.2rem;
}

.Flow_StepContent {
  background-color: #C8E7F9;
  display: block;
  padding: .9375rem 15px 1.4375rem 15px;
  width: 100%;
}

.Flow_StepName {
  background-color: var(--color-background);
  font: 500 1.25rem / 1.5 var(--font-family-sans);
  height: fit-content;
  margin: 0 auto 1.25rem auto;
  min-width: 150px;
  padding: .3125rem 10px .3125rem 10px;
  text-align: center;
  width: fit-content;
}

.Flow_StepName.StepName-Narrow {
  display: block;
}

.Flow_StepName.StepName-Width {
  display: none;
}

.Flow_StepDetails {
  margin: 0;
  max-width: 600px;
}

.Flow_StepOutline {
  font: 400 .9rem / 1.5 var(--font-family-sans);
  margin: 0;
}

.Flow_StepExternalLink {
  color: #ff5b29;
}

.Flow_StepExternalLink::after {
  content: '\f35d';
  font: 700 .7rem / 1 var(--font-awesome-5);
  padding: 0 0 0 .2rem;
}

.Flow_StepExternalLink:hover {
  color: var(--color-orange-light);
}

.Arrow {
  color: var(--color-gray-dark);
  height: 27px;
  margin: 10px auto 15px auto;
  position: relative;
  width: 20px;
}

.Arrow_Down {
  background: currentColor;
  height: 24px;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  position: absolute;
  width: 4px;
}

.Arrow_Edge {
  bottom: 0;
  height: 13px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  width: 22px;
}

.Arrow_Edge::before {
  aspect-ratio: 1 / 1;
  border-bottom: 4px solid currentColor;
  border-right: 4px solid currentColor;
  content: '';
  display: block;
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -85%) rotate(45deg);
  transform-origin: 50% 50%;
  width: 15px;
}

@media screen and (min-width: 768px) {
  .Flow_Order {
    padding: .0625rem 10px 0 10px;
    position: static;
  }

  .Flow_OrderLabel {
    font-size: 1.2rem;
  }

  .Flow_Number {
    font-size: 2.5rem;
  }

  .Flow_StepContent {
    display: flex;
    padding: 1.875rem 20px 1.25rem 20px;
  }

  .Flow_StepName {
    margin: -.625rem 19.8px 0 0;
    padding: .625rem 10px;
  }

  .Flow_StepName.StepName-Narrow {
    display: none;
  }

  .Flow_StepName.StepName-Width {
    display: flex;
    flex-direction: column;
  }

  .Flow_StepDetails {
    max-width: unset;
    margin: 0;
  }

  .Flow_StepOutline {
    font-size: 1.25rem;
  }

  .Arrow {
    margin: 25px auto 30px auto;
  }
}

.Contents {
  margin: 0 0 2.5rem 0;
  padding: 0 15px;
}

.Contents_Title {
  font: 500 2rem / 1.2 var(--font-family-sans);
  margin: 0 auto 1rem auto;
  width: fit-content;
}

.Contents_Container {
  align-items: center;
  border: 3px solid #69ace2;
  display: flex;
  font: 300 1rem / 1.5 var(--font-family-sans);
  justify-content: center;
  margin:  0 auto;
  max-width: 900px;
  min-height: 100px;
  padding: 1.5rem 15px;
}

.Contents_Text {
  margin: 0;
  padding: 0;
  width: fit-content;
}

.Contents_List {
  list-style: inside;
  margin: 0;
  padding: 0;
  width: fit-content;
}

@media screen and (min-width: 768px) {
  .Contents_Title {
    font-size: 2.5rem;
    margin: 0 auto 1.5rem auto;
  }

  .Contents_Container {
    font-size: 1.25rem;
    padding: 1.875rem 15px;
  }
}