/*--------------------------
breadcrumb
---------------------------*/
#breadcrumb {
  padding: 14px 0;
  background: #f7f7f7;
}
@media only screen and (max-width: 1024px) {
  #breadcrumb {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 768px) {
  #breadcrumb {
    display: none;
  }
}
#breadcrumb .container {
  width: 90%;
  max-width: 1500px;
  min-width: 920px;
  margin: 0 auto;
  padding: 0;
}
#breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#breadcrumb ul li {
  position: relative;
}
#breadcrumb ul li a {
  color: #00af97;
  font-size: 14px;
  font-weight: 400;
}
#breadcrumb ul li a:hover {
  text-decoration: underline;
}
#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: "\f105";
  position: relative;
  top: 1px;
  margin: 0 10px;
}
#breadcrumb ul li:last-child a {
  color: #666;
  pointer-events: none;
}
#breadcrumb ul li:last-child::after {
  content: none;
  margin: 0 10px;
}

/*--------------------------
Side Navi
---------------------------*/
.two_colum_container {
  width: 90%;
  max-width: 1500px;
  min-width: 920px;
  margin: 0 auto;
  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: 1280px) {
  .two_colum_container {
    width: 100%;
    max-width: 100%;
    min-width: 1024px;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 768px) {
  .two_colum_container {
    width: 100%;
    min-width: 100%;
    padding: 0 12px;
  }
}
.two_colum_container .main_colum {
  width: calc(100% - 400px);
}
@media only screen and (max-width: 1280px) {
  .two_colum_container .main_colum {
    width: calc(100% - 290px);
  }
}
@media only screen and (max-width: 768px) {
  .two_colum_container .main_colum {
    width: 100%;
  }
}
.two_colum_container #right_colum {
  width: 320px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1280px) {
  .two_colum_container #right_colum {
    width: 260px;
  }
}
@media only screen and (max-width: 768px) {
  .two_colum_container #right_colum {
    display: none;
  }
}
.two_colum_container #right_colum nav {
  top: 40px;
  overflow: auto;
}
.two_colum_container #right_colum h3 {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 18px;
  position: relative;
}
.two_colum_container #right_colum h3::after {
  content: "";
  display: block;
  background: #00a040;
  width: 100px;
  height: 4px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.two_colum_container #right_colum .side-navi {
  border-top: solid 1px #ccc;
}
.two_colum_container #right_colum .side-navi li a {
  line-height: 140%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 54px;
  padding: 10px 30px 10px 20px;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.two_colum_container #right_colum .side-navi li a::after {
  content: "\f105";
  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;
  color: #00af97;
  position: absolute;
  right: 10px;
}
.two_colum_container #right_colum .side-navi li a:hover {
  color: #00af97;
  background: #ebf6e7;
}
.two_colum_container #right_colum .side-navi li a.current {
  color: #00af97;
  background: #ebf6e7;
}
.two_colum_container #right_colum .side-navi li a.current_sub {
  font-weight: 500;
}
.two_colum_container #right_colum .side-navi li a.ac-title {
  position: relative;
  padding: 0 40px 0 20px;
}
.two_colum_container #right_colum .side-navi li a.ac-title::before, .two_colum_container #right_colum .side-navi li a.ac-title::after {
  position: absolute;
  content: "";
  background: #00af97;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.two_colum_container #right_colum .side-navi li a.ac-title::before {
  width: 13px;
  height: 1px;
  top: 50%;
  right: 10px;
}
.two_colum_container #right_colum .side-navi li a.ac-title::after {
  width: 1px;
  height: 13px;
  top: calc(50% - 6px);
  right: 16px;
}
.two_colum_container #right_colum .side-navi li a.ac-title.close::after {
  opacity: 0;
}
.two_colum_container #right_colum .side-navi li a.small {
  font-size: 15px;
}
.two_colum_container #right_colum .side-navi li ul {
  display: none;
}
.two_colum_container #right_colum .side-navi li ul li a {
  padding: 10px 30px 10px 40px;
  background: #f7f7f7;
  position: relative;
}
.two_colum_container #right_colum .side-navi li ul li a.current {
  color: #00af97;
  background: #ebf6e7;
}
.two_colum_container #right_colum .side-navi li ul li a::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: #00a040;
  margin-right: 10px;
  position: absolute;
  left: 20px;
}
.two_colum_container #right_colum .side-navi li.open a ul {
  display: block;
}

/*--------------------------
main_visual
---------------------------*/
#main_visual {
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  #main_visual {
    height: auto;
  }
}
@media only screen and (max-width: 450px) {
  #main_visual {
    height: auto;
  }
}
#main_visual .container {
  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;
  min-width: 1024px;
  height: 260px;
}
@media only screen and (max-width: 768px) {
  #main_visual .container {
    width: 100%;
    min-width: 100%;
    height: 120px;
  }
}
#main_visual h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  width: 640px;
  margin: 0 auto 60px;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 1280px) {
  #main_visual h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 768px) {
  #main_visual h1 {
    font-size: 22px;
    line-height: 135%;
    width: 55%;
    padding: 20px 0 14px;
    margin: 0 auto 25px;
  }
}
@media only screen and (max-width: 450px) {
  #main_visual h1 {
    font-size: 20px;
    width: 70%;
  }
}
#main_visual h1::before, #main_visual h1::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 10px;
  left: 50%;
  bottom: -20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ccc;
}
@media only screen and (max-width: 768px) {
  #main_visual h1::before, #main_visual h1::after {
    width: 64%;
    height: 5px;
    bottom: -4px;
  }
}
#main_visual h1::after {
  width: 200px;
  background-color: #00a040;
}
@media only screen and (max-width: 768px) {
  #main_visual h1::after {
    width: 40%;
  }
}
#main_visual .left_box {
  position: absolute;
  z-index: -1;
  top: -86px;
  left: -80px;
  -webkit-animation: 2s ani01;
          animation: 2s ani01;
}
@media only screen and (max-width: 1280px) {
  #main_visual .left_box {
    top: -70px;
  }
}
@media only screen and (max-width: 768px) {
  #main_visual .left_box {
    left: -50px;
    top: -38%;
  }
}
@media only screen and (max-width: 450px) {
  #main_visual .left_box {
    left: -32px;
    top: -8%;
  }
}
@media only screen and (max-width: 360px) {
  #main_visual .left_box {
    left: -28px;
    top: 0%;
  }
}
@media only screen and (max-width: 1280px) {
  #main_visual .left_box img {
    width: 380px;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  #main_visual .left_box img {
    width: 200px;
  }
}
@media only screen and (max-width: 450px) {
  #main_visual .left_box img {
    width: 140px;
  }
}
@media only screen and (max-width: 360px) {
  #main_visual .left_box img {
    width: 120px;
  }
}
#main_visual .right_box {
  position: absolute;
  z-index: -1;
  -webkit-animation: 2s ani02;
          animation: 2s ani02;
  right: -80px;
}
@media only screen and (max-width: 1280px) {
  #main_visual .right_box {
    right: -60px;
  }
}
@media only screen and (max-width: 768px) {
  #main_visual .right_box {
    right: -40px;
    top: -38%;
  }
}
@media only screen and (max-width: 450px) {
  #main_visual .right_box {
    right: -30px;
    top: -8%;
  }
}
@media only screen and (max-width: 360px) {
  #main_visual .right_box {
    right: -22px;
    top: 0%;
  }
}
@media only screen and (max-width: 1280px) {
  #main_visual .right_box img {
    width: 380px;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  #main_visual .right_box img {
    width: 200px;
  }
}
@media only screen and (max-width: 450px) {
  #main_visual .right_box img {
    width: 140px;
  }
}
@media only screen and (max-width: 360px) {
  #main_visual .right_box img {
    width: 120px;
  }
}
@-webkit-keyframes ani01 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes ani01 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes ani02 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes ani02 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@media only screen and (max-width: 768px) {
  #main_visual {
    margin-bottom: 0;
  }
}

/*--------------------------
section01
---------------------------*/
#section01 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 768px) {
  #section01 {
    padding-bottom: 30px;
  }
}
#section01 p.u-alignRight {
  text-align: right;
}
#section01 .box {
  padding: 30px 0;
}
#section01 .box:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
#section01 .box h3 {
  color: #00a040;
  font-size: 30px;
  font-weight: 500;
  line-height: 135%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #section01 .box h3 {
    font-size: 20px;
  }
}
#section01 .box h4 {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 135%;
  font-size: 22px;
  margin-bottom: 6px;
}
@media only screen and (max-width: 768px) {
  #section01 .box h4 {
    font-size: 18px;
    margin-bottom: 4px;
  }
}
#section01 .box ul.p-list {
  margin: 20px 0 0;
  padding-left: 12px;
}
#section01 .box li {
  line-height: 150%;
  position: relative;
  padding-left: 22px;
}
@media only screen and (max-width: 768px) {
  #section01 .box li {
    padding-left: 18px;
  }
}
#section01 .box li::before {
  content: "";
  display: block;
  background: #000;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  position: absolute;
  top: 9px;
  left: 6px;
}
#section01 .box li:not(:last-child) {
  margin-bottom: 12px;
}
#section01 .box p:not(:last-child) {
  margin-bottom: 16px;
}
#section01 .box p.indent {
  text-indent: -18px;
  padding-left: 16px;
}
@media only screen and (max-width: 768px) {
  #section01 .box p.indent {
    text-indent: -16px;
    padding-left: 14px;
  }
}
#section01 .box p small {
  display: block;
  font-size: 12px;
  line-height: 150%;
}