#breadcrumb {
  padding: 20px 2.5%;
}
@media only screen and (max-width: 768px) {
  #breadcrumb {
    padding: 12px;
  }
}
#breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#breadcrumb ul li {
  position: relative;
  font-size: 14px;
  margin: 0 0 5px;
}
#breadcrumb ul li::after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e806";
  margin: 0 6px;
}
#breadcrumb ul li:last-child::after {
  content: none;
}
@media only screen and (max-width: 768px) {
  #breadcrumb ul li {
    font-size: 10px;
  }
}
#breadcrumb ul li a {
  font-weight: 500;
}
#breadcrumb ul li a:hover {
  color: #007dc4;
}

/*--------------------------
main_visual
---------------------------*/
#main_visual {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 300px;
  padding: 0 12px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url(/asset/image/management/method/method_visual.jpg);
}
@media only screen and (max-width: 768px) {
  #main_visual {
    height: 140px;
  }
}
@media only screen and (max-width: 380px) {
  #main_visual {
    height: 120px;
  }
}
#main_visual h1 {
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  #main_visual h1 {
    font-size: 22px;
  }
}

/*--------------------------
section01
---------------------------*/
#section01 {
  position: relative;
  padding: 60px 0 120px;
}
@media only screen and (max-width: 768px) {
  #section01 {
    padding: 40px 0 80px;
  }
}
#section01::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background: #f7f7f7;
  z-index: -1;
}
#section01 .container .lead_box {
  text-align: center;
  margin: 0 0 40px;
}
@media only screen and (max-width: 768px) {
  #section01 .container .lead_box {
    margin: 0 0 20px;
  }
}
#section01 .container .lead_box p {
  font-weight: 500;
}
#section01 .container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  #section01 .container ul {
    display: block;
  }
}
#section01 .container ul li {
  width: calc(33.3333333333% - 20px);
}
@media only screen and (max-width: 768px) {
  #section01 .container ul li {
    width: 100%;
  }
  #section01 .container ul li:not(:last-child) {
    margin: 0 0 40px;
  }
}
#section01 .container ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
#section01 .container ul li a figure {
  position: relative;
  margin: 0 0 16px;
}
@media only screen and (max-width: 768px) {
  #section01 .container ul li a figure {
    margin: 0 0 8px;
  }
}
#section01 .container ul li a figure .pic {
  position: relative;
  display: block;
  overflow: hidden;
}
#section01 .container ul li a figure .pic::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  opacity: 0.25;
}
#section01 .container ul li a figure .pic img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
#section01 .container ul li a figure figcaption {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  padding: 0 20px 30px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #section01 .container ul li a figure figcaption {
    padding: 0 12px 16px;
  }
}
#section01 .container ul li a figure figcaption h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 768px) {
  #section01 .container ul li a figure figcaption h3 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 380px) {
  #section01 .container ul li a figure figcaption h3 {
    font-size: 14px;
  }
}
#section01 .container ul li a .txt_box {
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  #section01 .container ul li a .txt_box {
    margin: 0 0 16px;
  }
}
#section01 .container ul li a .btn_box {
  margin: auto 0 0;
}
#section01 .container ul li a .btn_box p {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 240px;
  height: 60px;
  font-weight: 500;
  color: #fff;
  background: #007dc4;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  margin: 0 auto;
}
@media only screen and (max-width: 1170px) {
  #section01 .container ul li a .btn_box p {
    height: 50px;
  }
}
@media only screen and (max-width: 768px) {
  #section01 .container ul li a .btn_box p {
    width: 100%;
    max-width: 220px;
    height: 40px;
    font-size: 12px;
    margin: 0 auto;
  }
}
#section01 .container ul li a .btn_box p span {
  position: relative;
  padding: 0 0 0 25px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #section01 .container ul li a .btn_box p span {
    padding: 0 0 0 10px;
  }
}
#section01 .container ul li a .btn_box p span::after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e800";
  margin: 0 0 0 20px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 1170px) {
  #section01 .container ul li a .btn_box p span::after {
    margin: 0 0 0 12px;
  }
}
#section01 .container ul li a .btn_box p:hover {
  background: #00cdff;
}
#section01 .container ul li a .btn_box p:hover span {
  margin: 0 0 0 4px;
}
@media only screen and (max-width: 1170px) {
  #section01 .container ul li a .btn_box p:hover span {
    margin: 0 0 0 2px;
  }
}
#section01 .container ul li a .btn_box p:hover span::after {
  margin: 0 0 0 24px;
}
@media only screen and (max-width: 1170px) {
  #section01 .container ul li a .btn_box p:hover span::after {
    margin: 0 0 0 14px;
  }
}
#section01 .container ul li a .btn_box p[target=_blank] span::after {
  content: "\f08e" !important;
}
#section01 .container ul li a:hover figure .pic::after {
  opacity: 0.5;
}
#section01 .container ul li a:hover figure .pic img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#section01 .container ul li a:hover .btn_box p {
  background: #00cdff;
}
#section01 .container ul li a:hover .btn_box p span {
  margin: 0 0 0 4px;
}
@media only screen and (max-width: 1170px) {
  #section01 .container ul li a:hover .btn_box p span {
    margin: 0 0 0 2px;
  }
}
#section01 .container ul li a:hover .btn_box p span::after {
  margin: 0 0 0 24px;
}
@media only screen and (max-width: 1170px) {
  #section01 .container ul li a:hover .btn_box p span::after {
    margin: 0 0 0 14px;
  }
}