@charset "utf-8";
.glaph_wrap {
  position: relative;
  min-height: auto;
  /* background: whitesmoke; */
  padding: 0px 0 20px;
  border-radius: 20px;
  /* box-shadow: 0 1px 8px rgba(0,0,0,0.15); */
}
.glaph_caption {
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  top: 20%;
  left: 5%;
}
.glaph_caption > ul {
  position: relative;
  font-size: 0.9em;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: flex-start;
}
.glaph_caption > ul li {
  flex-basis: auto;
  margin-right: 0.4em;
}
.glaph_caption > ul li:last-child {
  font-size: 0.8em;
}
@media screen and (min-width: 520px){
  .glaph_wrap {
    padding: 80px 0 20px;
    padding: 0px 0 0px;
  }
  .glaph_caption {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
    position: relative;
    top: 0;
    left: 0;
  }
  .glaph_caption > ul {
    font-size: 0.8em;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
  }
}

.glaph_caption > ul li::before {
  content: '';
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.3em;
}
.glaph_caption > ul li:last-child::before {
  content: none;
  margin-right: 0;
}
.glaph_caption > ul li:nth-child(1)::before {
  background-color: #7E77CA;
}
.glaph_caption > ul li:nth-child(2)::before {
  background-color: #7690C7;
}
.glaph_caption > ul li:nth-child(3)::before {
  background-color: #6EA9C3;
}
.glaph_caption > ul li:nth-child(4)::before {
  background-color: #65C2C0;
}
.glaph_caption > ul li:nth-child(5)::before {
  background-color: #5DDBBC;
}
.rise {
  width: 65%;
  position: absolute;
  top: 2%;
  left: -1%;
}
@media screen and (min-width: 520px){
  .rise {
    width: 40%;
    position: absolute;
    top: 5%;
    left: 3%;
  }
}


.glaph_container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 450px;
  width: 100%;
  padding: 60px 10px 0px;
  margin: 0 auto 0;
  justify-content: center
}
.glaph_container > section {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 520px){
  .glaph_container {
    height: 600px;
    padding: 80px 40px 0;
  }
}
.barBase {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  width: 82%;
  margin: 0 auto;
}
/* .barBase:first-child {
  transform: scaleY(0.9);
  transform-origin: bottom center;
} */
.barBase div {
  width: 100%;
  flex: 0 0;
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 0 0.4em;
  font-size: 0.9em;
  overflow: hidden;
}
.glaph_container h1 {
  margin-top: 10px;
  font-size: 1.1em;
  text-align: center;
}
.glaph_container h1 span {
  font-size: 0.8em;
  display: block;
}
.bar1 {
  position: relative;
  /* width: 20%; */
  /* height: 100%; */
  background: #7E77CA;
  border-radius: 5px 5px 0 0;
}
.bar2 {
  position: relative;
  /* width: 20%; */
  /* height: 100%; */
  background: #7690C7;
}
.bar3 {
  position: relative;
  /* width: 20%; */
  /* height: 100%; */
  background: #6EA9C3;
}
.bar4 {
  position: relative;
  /* width: 20%; */
  /* height: 100%; */
  background: #65C2C0;
}
.bar5 {
  position: relative;
  /* width: 20%; */
  /* height: 100%; */
  background: #5DDBBC;
  border-radius: 0 0 3px 3px;
}
