@charset "UTF-8";
/*-----------------------------------

	header

-----------------------------------*/
#breadcrumb {
  width: 100%;
  background: #dcdcdc;
  padding: 10px 0;
}
#breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1;
}
#breadcrumb ul li:not(:last-of-type)::after {
  content: ">";
  margin: 0 10px;
}
@media screen and (max-width: 840px) {
  #breadcrumb ul {
    line-height: 1.4;
  }
}
@media screen and (max-width: 640px) {
  #breadcrumb ul {
    font-size: 11px;
  }
}
/*-----------------------------------

	headline

-----------------------------------*/
#headline {
  text-align: center;
  background: rgb(133, 176, 83);
  background: linear-gradient(90deg, rgba(133, 176, 83, 1) 0%, rgba(15, 178, 128, 1) 100%);
  padding: 50px 0;
}
#headline h1 {
  line-height: 1;
}
#headline h1 span {
  font-size: 16px;
  font-weight: 400;
  display: block;
  color: #fff;
  padding-top: 30px;
}
@media screen and (max-width: 640px) {
  #headline {
    padding: 30px 0;
  }
  #headline h1 span {
    font-size: 14px;
    padding-top: 5px;
  }
}