/*--------------------------
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;
}

/*--------------------------
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: 40px;
}
@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: 30px;
}
#section01 h2 {
  color: #000;
  font-size: 30px;
  font-weight: 500;
  line-height: 135%;
  border-left: 8px solid #00a040;
  padding-left: 26px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #section01 h2 {
    font-size: 20px;
    padding-left: 10px;
    border-left: 4px solid #00a040;
  }
}
@media only screen and (max-width: 768px) {
  #section01 h2 {
    margin-bottom: 20px;
  }
}
#section01 h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 135%;
  padding-left: 16px;
  border-left: 6px solid #ccc;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #section01 h3 {
    font-size: 18px;
  }
}
#section01 .txt_box {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #section01 .txt_box {
    margin-bottom: 20px;
  }
}
#section01 .box01, #section01 .box02, #section01 .box03 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  #section01 .box01, #section01 .box02, #section01 .box03 {
    margin-bottom: 20px;
  }
}
#section01 .box01 h3, #section01 .box02 h3, #section01 .box03 h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 135%;
  padding-left: 16px;
  border-left: 6px solid #ccc;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #section01 .box01 h3, #section01 .box02 h3, #section01 .box03 h3 {
    font-size: 18px;
  }
}
#section01 .box01 .bg_box {
  padding: 40px 20px;
  background: #f7f7f7;
}
@media only screen and (max-width: 768px) {
  #section01 .box01 .bg_box {
    padding: 20px;
  }
}
#section01 .box01 .bg_box:not(:last-child) {
  margin-bottom: 20px;
}
#section01 .box01 .bg_box h4 {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 135%;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  #section01 .box01 .bg_box h4 {
    font-size: 18px;
  }
}
#section01 .box01 .bg_box small {
  font-size: 12px;
}
#section01 .box01 .bg_box dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  margin: 20px 0;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  #section01 .box01 .bg_box dl {
    padding: 10px 0;
  }
}
#section01 .box01 .bg_box dl:last-child {
  margin: 20px 0 0;
}
#section01 .box01 .bg_box dl dt, #section01 .box01 .bg_box dl dd {
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  padding: 10px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #section01 .box01 .bg_box dl dt, #section01 .box01 .bg_box dl dd {
    font-size: 18px;
  }
}
#section01 .box01 .bg_box dl dt {
  border-right: 1px solid #ccc;
}
#section01 .box01 .bg_box dl dd {
  color: #00a040;
}
#section01 .box02 .btn_box {
  margin-top: 40px;
}
#section01 .box02 .btn_box a {
  position: relative;
  color: #00af97;
  text-align: center;
  display: block;
  padding: 20px 0;
  border: solid 1px #00af97;
  border-radius: 6px;
  margin: 0 auto;
  width: 280px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  #section01 .box02 .btn_box a {
    margin: 16px auto 0;
  }
}
#section01 .box02 .btn_box a: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: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#section01 .box02 .btn_box a:hover {
  color: #fff;
  background: #00af97;
}
#section01 .box02 .btn_box a:hover:after {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #section01 .box02 .btn_box a {
    width: 100%;
    max-width: 280px;
  }
}
#section01 .box02 .btn_box a::after {
  font-size: 16px;
}
#section01 .box02 .bg_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* padding: 0 20px;
  background: $white; */
  padding: 40px 20px;
  background: #f7f7f7;
}
@media only screen and (max-width: 768px) {
  #section01 .box02 .bg_box {
    display: block;
    padding: 20px;
  }
}
#section01 .box02 .bg_box .icon_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #section01 .box02 .bg_box .icon_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  #section01 .box02 .bg_box .icon_list li {
    margin-bottom: 10px;
  }
}
#section01 .box02 .bg_box .icon_list li:not(:last-child) {
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  #section01 .box02 .bg_box .icon_list li:not(:last-child) {
    margin-right: 4px;
  }
}
#section01 .box02 .bg_box .icon_list li img {
  display: block;
  width: 68px;
  margin: 0 auto 3px;
}
@media only screen and (max-width: 768px) {
  #section01 .box02 .bg_box .icon_list li img {
    width: 46px;
  }
}
#section01 .box02 .bg_box .icon_list li p {
  font-size: 14px;
  text-align: center;
  line-height: 135%;
}
#section01 .box02 .bg_box .link_txt {
  position: relative;
  color: #00af97;
  text-align: center;
  display: block;
  padding: 20px 0;
  border: solid 1px #00af97;
  border-radius: 6px;
  margin: 0 auto;
  width: 280px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  #section01 .box02 .bg_box .link_txt {
    margin: 16px auto 0;
  }
}
#section01 .box02 .bg_box .link_txt: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: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#section01 .box02 .bg_box .link_txt:hover {
  color: #fff;
  background: #00af97;
}
#section01 .box02 .bg_box .link_txt:hover:after {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #section01 .box02 .bg_box .link_txt {
    width: 100%;
    max-width: 280px;
  }
}

.page_anchor_link {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .page_anchor_link {
    display: none;
  }
}
.page_anchor_link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: solid 1px #00af97;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.page_anchor_link ul li {
  width: 25%;
  border-right: solid 1px #00af97;
}
.page_anchor_link ul li:last-child {
  border-right: none;
}
.page_anchor_link ul li a {
  color: #00af97;
  line-height: 135%;
  text-align: center;
  display: block;
  height: 100%;
  padding: 16px 20px;
  position: relative;
}
.page_anchor_link ul li a: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: "\f107";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.page_anchor_link ul li a:hover {
  color: #fff;
  background: #00af97;
}
.page_anchor_link ul li a:hover:after {
  color: #fff;
}
.page_anchor_link ul li {
  width: 50%;
}
@media only screen and (max-width: 1600px) {
  .page_anchor_link ul li {
    width: 100%;
  }
}
.page_anchor_link ul li:first-child {
  border-bottom: solid 1px #00af97;
}
@media only screen and (max-width: 1600px) {
  .page_anchor_link ul li:first-child {
    border-right: none;
  }
}
.page_anchor_link ul li:nth-child(2) {
  border-right: none;
  border-bottom: solid 1px #00af97;
}
@media only screen and (max-width: 1600px) {
  .page_anchor_link ul li:nth-child(3) {
    border-right: none;
    border-bottom: solid 1px #00af97;
  }
}
.page_anchor_link ul li a {
  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;
  height: 60px;
}
@media only screen and (max-width: 1600px) {
  .page_anchor_link ul li a {
    height: auto;
    min-height: 60px;
  }
}

/*--------------------------
section02
---------------------------*/
#section02 {
  padding: 30px 0;
  padding: 30px 0 120px;
}
@media only screen and (max-width: 768px) {
  #section02 {
    padding: 30px 0;
  }
}
#section02 h2 {
  color: #000;
  font-size: 30px;
  font-weight: 500;
  line-height: 135%;
  border-left: 8px solid #00a040;
  padding-left: 26px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #section02 h2 {
    font-size: 20px;
    padding-left: 10px;
    border-left: 4px solid #00a040;
  }
}
@media only screen and (max-width: 768px) {
  #section02 h2 {
    margin-bottom: 20px;
  }
}
#section02 .txt_box:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box:not(:last-child) {
    margin-bottom: 20px;
  }
}
#section02 .txt_box .btn_box {
  margin-top: 40px;
}
#section02 .txt_box .btn_box a {
  position: relative;
  color: #00af97;
  text-align: center;
  display: block;
  padding: 20px 0;
  border: solid 1px #00af97;
  border-radius: 6px;
  margin: 0 auto;
  width: 400px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box .btn_box a {
    margin: 16px auto 0;
  }
}
#section02 .txt_box .btn_box a: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: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#section02 .txt_box .btn_box a:hover {
  color: #fff;
  background: #00af97;
}
#section02 .txt_box .btn_box a:hover:after {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box .btn_box a {
    width: 100%;
    max-width: 280px;
  }
}
#section02 .txt_box .btn_box a::after {
  font-size: 16px;
}
#section02 .txt_box .flex_box {
  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) {
  #section02 .txt_box .flex_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#section02 .txt_box .flex_box .left_box, #section02 .txt_box .flex_box .right_box {
  width: calc(50% - 20px);
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box .flex_box .left_box, #section02 .txt_box .flex_box .right_box {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box .flex_box .right_box {
    text-align: center;
    margin-bottom: 20px;
  }
}
#section02 .txt_box .float_box img {
  float: right;
  width: 35%;
  margin: 0 0 10px 10px;
}
#section02 .txt_box h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 135%;
  padding-left: 16px;
  border-left: 6px solid #ccc;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box h3 {
    font-size: 18px;
  }
}
#section02 .txt_box h4 {
  display: block;
  color: #00a040;
  font-size: 24px;
  font-weight: 500;
  line-height: 135%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box h4 {
    font-size: 20px;
  }
}
#section02 .txt_box h5 {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 135%;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box h5 {
    font-size: 18px;
  }
}
#section02 .txt_box small {
  display: block;
  font-size: 14px;
  line-height: 150%;
  margin: 16px 0;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box small {
    font-size: 12px;
  }
}
#section02 .txt_box p.sec02_pic03 {
  margin: 50px auto;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box p.sec02_pic03 {
    margin: 26px auto;
  }
}
#section02 .txt_box p.sec02_pic03 img {
  max-width: 600px;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box p.sec02_pic03 img {
    max-width: 100%;
  }
}
#section02 .txt_box .scroll_table {
  margin-bottom: 60px;
}
#section02 .txt_box .scroll_table .scroll_table_wrap {
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box .scroll_table .scroll_table_wrap {
    position: relative;
    width: 100%;
    overflow: auto;
  }
}
#section02 .txt_box .scroll_table .scroll_table_wrap table {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box .scroll_table .scroll_table_wrap table {
    min-width: 768px;
    max-width: 1000px;
  }
}
#section02 .txt_box .scroll_table .scroll_table_wrap table th, #section02 .txt_box .scroll_table .scroll_table_wrap table td {
  text-align: center;
  border: solid 1px #ccc;
  vertical-align: middle;
}
#section02 .txt_box .scroll_table .scroll_table_wrap table th a, #section02 .txt_box .scroll_table .scroll_table_wrap table td a {
  color: #00af97;
}
#section02 .txt_box .scroll_table .scroll_table_wrap table th a:hover, #section02 .txt_box .scroll_table .scroll_table_wrap table td a:hover {
  text-decoration: underline;
}
#section02 .txt_box .scroll_table .scroll_table_wrap table thead th {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 135%;
  text-align: center;
  background: #666;
  padding: 16px;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box .scroll_table .scroll_table_wrap table thead th {
    font-size: 12px;
    padding: 14px 10px;
  }
}
#section02 .txt_box .scroll_table .scroll_table_wrap table tbody th {
  font-weight: 400;
  line-height: 135%;
  padding: 16px;
  background: #f7f7f7;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box .scroll_table .scroll_table_wrap table tbody th {
    font-size: 12px;
    white-space: nowrap;
    padding: 14px 10px;
  }
}
#section02 .txt_box .scroll_table .scroll_table_wrap table tbody td {
  font-size: 14px;
  line-height: 135%;
  padding: 16px;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box .scroll_table .scroll_table_wrap table tbody td {
    font-size: 12px;
    padding: 14px 10px;
  }
}
#section02 .txt_box .scroll_table .scroll_table_wrap table tbody td.table_bg_green {
  background: #ebf6e7;
}
#section02 .txt_box .scroll_table .swipe {
  display: none;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box .scroll_table .swipe {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
  }
  #section02 .txt_box .scroll_table .swipe span {
    color: #fff;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 10;
  }
  #section02 .txt_box .scroll_table .swipe 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: "\e818";
    margin-left: 6px;
  }
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box .scroll_table {
    margin-bottom: 30px;
  }
}
#section02 .txt_box .scroll_table .scroll_table_wrap img {
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box .scroll_table .scroll_table_wrap img {
    min-width: 740px;
  }
}
#section02 .txt_box .scroll_table small {
  font-size: 14px;
  text-align: right;
  width: 100%;
  display: block;
}
@media only screen and (max-width: 768px) {
  #section02 .txt_box .scroll_table small {
    font-size: 12px;
  }
}
#section02 .bg_box {
  padding: 40px 20px;
  margin-bottom: 20px;
  background: #f7f7f7;
}
@media only screen and (max-width: 768px) {
  #section02 .bg_box {
    padding: 20px;
  }
}

/*--------------------------
section03
---------------------------*/
#section03 {
  padding: 30px 0 120px;
}
@media only screen and (max-width: 768px) {
  #section03 {
    padding: 30px 0;
  }
}
#section03 h2 {
  color: #000;
  font-size: 30px;
  font-weight: 500;
  line-height: 135%;
  border-left: 8px solid #00a040;
  padding-left: 26px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #section03 h2 {
    font-size: 20px;
    padding-left: 10px;
    border-left: 4px solid #00a040;
  }
}
@media only screen and (max-width: 768px) {
  #section03 h2 {
    margin-bottom: 20px;
  }
}
#section03 .txt_box {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #section03 .txt_box {
    margin-bottom: 20px;
  }
}
#section03 .txt_box .btn_box {
  margin-top: 20px;
}
#section03 .txt_box .btn_box a {
  position: relative;
  color: #00af97;
  text-align: center;
  display: block;
  padding: 20px 0;
  border: solid 1px #00af97;
  border-radius: 6px;
  margin: 0 auto;
  width: 280px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  #section03 .txt_box .btn_box a {
    margin: 16px auto 0;
  }
}
#section03 .txt_box .btn_box a: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: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#section03 .txt_box .btn_box a:hover {
  color: #fff;
  background: #00af97;
}
#section03 .txt_box .btn_box a:hover:after {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #section03 .txt_box .btn_box a {
    width: 100%;
    max-width: 280px;
  }
}
#section03 .bg_box {
  padding: 40px 20px;
  background: #f7f7f7;
}
#section03 .bg_box:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #section03 .bg_box {
    padding: 20px;
  }
}
#section03 .bg_box h3 {
  display: block;
  color: #00a040;
  font-size: 24px;
  font-weight: 500;
  line-height: 135%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #section03 .bg_box h3 {
    font-size: 20px;
  }
}
#section03 .bg_box .btn_box {
  margin-top: 20px;
}
#section03 .bg_box .btn_box a {
  position: relative;
  color: #00af97;
  text-align: center;
  display: block;
  padding: 20px 0;
  border: solid 1px #00af97;
  border-radius: 6px;
  margin: 0 auto;
  width: 280px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  #section03 .bg_box .btn_box a {
    margin: 16px auto 0;
  }
}
#section03 .bg_box .btn_box a: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: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#section03 .bg_box .btn_box a:hover {
  color: #fff;
  background: #00af97;
}
#section03 .bg_box .btn_box a:hover:after {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #section03 .bg_box .btn_box a {
    width: 100%;
    max-width: 280px;
  }
}
#section03 .bg_box .btn_box a::after {
  font-size: 16px;
}
#section03 .bg_box .link_txt {
  color: #00af97;
  position: relative;
  display: inline-block;
  padding-right: 60px;
  margin: 20px 0 60px;
}
@media only screen and (max-width: 768px) {
  #section03 .bg_box .link_txt {
    padding-right: 45px;
  }
}
#section03 .bg_box .link_txt::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: "\e818";
  font-size: 40px;
  position: absolute;
  top: -5px;
  right: 10px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #section03 .bg_box .link_txt::after {
    font-size: 30px;
  }
}
#section03 .bg_box .link_txt:hover::after {
  right: 0;
}
#section03 .bg_box h4 {
  color: #00a040;
  font-size: 30px;
  font-weight: 500;
  line-height: 135%;
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  #section03 .bg_box h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  #section03 .bg_box h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
#section03 .bg_box figure {
  text-align: center;
  padding: 0 8% 40px;
}
@media only screen and (max-width: 768px) {
  #section03 .bg_box figure {
    padding: 0;
  }
}
#section03 .bg_box figure img {
  width: 100%;
}

/*--------------------------
section04
---------------------------*/
#section04 {
  padding: 30px 0 0;
}
@media only screen and (max-width: 768px) {
  #section04 {
    padding: 30px 0;
  }
}
#section04 h2 {
  color: #000;
  font-size: 30px;
  font-weight: 500;
  line-height: 135%;
  border-left: 8px solid #00a040;
  padding-left: 26px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #section04 h2 {
    font-size: 20px;
    padding-left: 10px;
    border-left: 4px solid #00a040;
  }
}
@media only screen and (max-width: 768px) {
  #section04 h2 {
    margin-bottom: 20px;
  }
}
#section04 .box {
  padding: 30px 0;
}
#section04 .box:not(:last-child), #section04 .txt_box:not(:last-child) {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  #section04 .box:not(:last-child), #section04 .txt_box:not(:last-child) {
    margin-bottom: 30px;
  }
}
#section04 .box h3, #section04 .txt_box h3 {
  display: block;
  color: #00a040;
  font-size: 24px;
  font-weight: 500;
  line-height: 135%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #section04 .box h3, #section04 .txt_box h3 {
    font-size: 20px;
  }
}
#section04 .box .btn_box, #section04 .txt_box .btn_box {
  margin-top: 20px;
}
#section04 .box .btn_box a, #section04 .txt_box .btn_box a {
  position: relative;
  color: #00af97;
  text-align: center;
  display: block;
  padding: 20px 0;
  border: solid 1px #00af97;
  border-radius: 6px;
  margin: 0 auto;
  max-width: 280px;
}
@media only screen and (max-width: 768px) {
  #section04 .box .btn_box a, #section04 .txt_box .btn_box a {
    margin: 16px auto 0;
  }
}
#section04 .box .btn_box a:after, #section04 .txt_box .btn_box a: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: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#section04 .box .btn_box a:hover, #section04 .txt_box .btn_box a:hover {
  color: #fff;
  background: #00af97;
}
#section04 .box .btn_box a:hover:after, #section04 .txt_box .btn_box a:hover:after {
  color: #fff;
}
#section04 .box .flex_box, #section04 .txt_box .flex_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 20px;
  background: #f7f7f7;
}
@media only screen and (max-width: 768px) {
  #section04 .box .flex_box, #section04 .txt_box .flex_box {
    display: block;
    padding: 20px;
  }
}
#section04 .box .flex_box .left_box, #section04 .txt_box .flex_box .left_box {
  width: calc(70% - 20px);
}
@media only screen and (max-width: 768px) {
  #section04 .box .flex_box .left_box, #section04 .txt_box .flex_box .left_box {
    width: 100%;
    margin-bottom: 40px;
  }
}
#section04 .box .flex_box .right_box, #section04 .txt_box .flex_box .right_box {
  width: calc(30% - 20px);
}
@media only screen and (max-width: 768px) {
  #section04 .box .flex_box .right_box, #section04 .txt_box .flex_box .right_box {
    width: 100%;
  }
}
#section04 .box .flex_box .right_box figure, #section04 .txt_box .flex_box .right_box figure {
  text-align: center;
}
#section04 .box .flex_box .right_box figure figcaption, #section04 .txt_box .flex_box .right_box figure figcaption {
  margin-top: 8px;
}
#section04 .txt_box ul {
  margin: 24px 0;
}
@media only screen and (max-width: 768px) {
  #section04 .txt_box ul {
    margin: 14px 0;
  }
}
#section04 .txt_box ul li:not(:last-child) {
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  #section04 .txt_box ul li:not(:last-child) {
    margin-bottom: 10px;
  }
}
#section04 .txt_box ul li a {
  color: #00af97;
  position: relative;
  display: inline-block;
  padding-right: 60px;
}
@media only screen and (max-width: 768px) {
  #section04 .txt_box ul li a {
    padding-right: 45px;
  }
}
#section04 .txt_box ul li a::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: "\e818";
  font-size: 40px;
  position: absolute;
  top: -5px;
  right: 10px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #section04 .txt_box ul li a::after {
    font-size: 30px;
  }
}
#section04 .txt_box ul li a:hover::after {
  right: 0;
}
@media only screen and (max-width: 768px) {
  #section04 .txt_box ul li a {
    line-height: 135%;
  }
}

/*--------------------------
section05
---------------------------*/
#section05 {
  padding: 30px 0 0;
}
@media only screen and (max-width: 768px) {
  #section05 {
    padding: 30px 0;
  }
}
#section05 h2 {
  color: #000;
  font-size: 30px;
  font-weight: 500;
  line-height: 135%;
  border-left: 8px solid #00a040;
  padding-left: 26px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #section05 h2 {
    font-size: 20px;
    padding-left: 10px;
    border-left: 4px solid #00a040;
  }
}
@media only screen and (max-width: 768px) {
  #section05 h2 {
    margin-bottom: 20px;
  }
}
#section05 .box {
  padding: 30px 0;
}
#section05 .box:not(:last-child), #section05 .txt_box:not(:last-child) {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  #section05 .box:not(:last-child), #section05 .txt_box:not(:last-child) {
    margin-bottom: 30px;
  }
}
#section05 .box h3, #section05 .txt_box h3 {
  display: block;
  color: #00a040;
  font-size: 24px;
  font-weight: 500;
  line-height: 135%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #section05 .box h3, #section05 .txt_box h3 {
    font-size: 20px;
  }
}
#section05 .box .btn_box, #section05 .txt_box .btn_box {
  margin-top: 20px;
}
#section05 .box .btn_box a, #section05 .txt_box .btn_box a {
  position: relative;
  color: #00af97;
  text-align: center;
  display: block;
  padding: 20px 0;
  border: solid 1px #00af97;
  border-radius: 6px;
  margin: 0 auto;
  max-width: 280px;
}
@media only screen and (max-width: 768px) {
  #section05 .box .btn_box a, #section05 .txt_box .btn_box a {
    margin: 16px auto 0;
  }
}
#section05 .box .btn_box a:after, #section05 .txt_box .btn_box a: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: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#section05 .box .btn_box a:hover, #section05 .txt_box .btn_box a:hover {
  color: #fff;
  background: #00af97;
}
#section05 .box .btn_box a:hover:after, #section05 .txt_box .btn_box a:hover:after {
  color: #fff;
}
#section05 .box .flex_box, #section05 .txt_box .flex_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 20px;
  background: #f7f7f7;
}
@media only screen and (max-width: 768px) {
  #section05 .box .flex_box, #section05 .txt_box .flex_box {
    display: block;
    padding: 20px;
  }
}
#section05 .box .flex_box .left_box, #section05 .txt_box .flex_box .left_box {
  width: calc(70% - 20px);
}
@media only screen and (max-width: 768px) {
  #section05 .box .flex_box .left_box, #section05 .txt_box .flex_box .left_box {
    width: 100%;
    margin-bottom: 40px;
  }
}
#section05 .box .flex_box .right_box, #section05 .txt_box .flex_box .right_box {
  width: calc(30% - 20px);
}
@media only screen and (max-width: 768px) {
  #section05 .box .flex_box .right_box, #section05 .txt_box .flex_box .right_box {
    width: 100%;
  }
}
#section05 .box .flex_box .right_box figure, #section05 .txt_box .flex_box .right_box figure {
  text-align: center;
}
#section05 .box .flex_box .right_box figure figcaption, #section05 .txt_box .flex_box .right_box figure figcaption {
  margin-top: 8px;
}
#section05 .txt_box ul {
  margin: 24px 0;
}
@media only screen and (max-width: 768px) {
  #section05 .txt_box ul {
    margin: 14px 0;
  }
}
#section05 .txt_box ul li:not(:last-child) {
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  #section05 .txt_box ul li:not(:last-child) {
    margin-bottom: 10px;
  }
}
#section05 .txt_box ul li a {
  color: #00af97;
  position: relative;
  display: inline-block;
  padding-right: 60px;
}
@media only screen and (max-width: 768px) {
  #section05 .txt_box ul li a {
    padding-right: 45px;
  }
}
#section05 .txt_box ul li a::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: "\e818";
  font-size: 40px;
  position: absolute;
  top: -5px;
  right: 10px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #section05 .txt_box ul li a::after {
    font-size: 30px;
  }
}
#section05 .txt_box ul li a:hover::after {
  right: 0;
}
@media only screen and (max-width: 768px) {
  #section05 .txt_box ul li a {
    line-height: 135%;
  }
}