@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  position: relative;
  color: #1c1b15;
  font-family: "Zen Maru Gothic", "YakuHanJP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-size: 1.8rem;
  line-height: 1.6;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg_before.png);
  background-repeat: repeat;
  background-position: center;
}

a {
  color: #1c1b15;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  color: #565341;
}

img {
  max-width: 100%;
  height: auto;
}

/* language
----------------------------------*/
.ja {
  font-family: "Zen Maru Gothic", "YakuHanJP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
}

.en {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.uppercase {
  text-transform: uppercase;
}

/* loader
----------------------------------*/
.loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-perspective: 100px;
          perspective: 100px;
  background-color: #fff;
}

.loader::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -31px;
  margin-left: -32px;
  width: 64px;
  height: 69px;
  -webkit-animation: rotate 2.5s linear infinite;
          animation: rotate 2.5s linear infinite;
  background: url(../img/loader.png) no-repeat center/contain;
}

.loader.off {
  display: none;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

/* font-size
----------------------------------*/
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fw {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#font_size {
  width: 120px;
}

#font_size ul {
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

#font_size ul li {
  width: 35px;
  min-width: inherit;
  text-align: center;
  line-height: 28px;
  height: 35px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  line-height: 35px;
  position: relative;
  cursor: pointer;
  border-left: 1px solid #dddddd;
  font-weight: 600;
}

#font_size ul li:first-of-type {
  border: none;
}

#font_size p {
  text-align: center;
  font-weight: 600;
  font-size: .87em;
  display: block;
  width: 100%;
  margin: 0 0 5px 0;
}

#font_size .current {
  background: #47b356;
  color: #fefefe;
}

/* p_nav_button
----------------------------------*/
.p_nav_button {
  margin-left: 2em;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  font-family: "Zen Maru Gothic", "YakuHanJP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  border: 2px solid #47b356;
  background-color: #fff;
  color: #47b356;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  border-radius: 50px;
}

.p_nav_button:hover {
  background-color: #47b356;
  color: #fff;
}

#change_css_back {
  display: none;
}

/* header
----------------------------------*/
#header {
  position: relative;
  z-index: 5;
  width: 100%;
  background-color: #fff;
}

#header #logo {
  font-size: 2.5rem;
  line-height: 1.3;
}

#header #logo span {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

#header .inner {
  margin: 0 auto;
  max-width: 1160px;
  min-width: 1024px;
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header #head_right {
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#header.is-fixed {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* navi
----------------------------------*/
#navi {
  padding-bottom: 16px;
}

#navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  max-width: 1160px;
  min-width: 1024px;
}

#navi li {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  text-align: center;
}

#navi li span {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
  color: #0a6e06;
}

#navi li::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #ccc;
  width: 1px;
  height: 100%;
}

#navi li:last-child::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #ccc;
  width: 1px;
  height: 100%;
}

#navi li a {
  display: block;
  font-weight: 600;
  line-height: 1.4;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 55px;
  right: 10px;
  z-index: 5;
}

#page-top a {
  display: inline-block;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  text-decoration: none;
  color: #1c1b15;
  font-size: 1.4rem;
  line-height: 80px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-font-feature-settings: "pkna";
          font-feature-settings: "pkna";
  font-weight: 600;
}

#page-top a:before {
  content: "";
  position: absolute;
  top: -15px;
  right: 0;
  left: 0;
  margin: auto;
  border-top: 1px solid #1c1b15;
  border-right: 1px solid #1c1b15;
  width: 15px;
  height: 15px;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#page-top a:hover:before {
  top: -20px;
}

/* footer
----------------------------------*/
#footer {
  background: url(../img/bg-footer.png) no-repeat center/cover;
}

#footer .inner {
  margin: 0 auto;
  max-width: 1160px;
  min-width: 1024px;
  padding: 100px 0;
}

#footer .foot_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer .foot_contents .foot_address {
  width: 50%;
}

#footer .foot_contents .foot_map {
  width: 45%;
}

#footer #flogo {
  margin-bottom: 20px;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
}

#footer #flogo span {
  display: block;
  font-size: 2.4rem;
}

#footer .link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

#footer .link_list li {
  width: 48%;
  margin-bottom: 8px;
}

#footer .link_list li a {
  position: relative;
  font-size: 1em;
  padding-left: 15px;
}

#footer .link_list li a:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

#footer .link_list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #1c1b15;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#footer .link_list li a::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #47b356;
}

.copyright {
  background-color: #47b356;
  color: #fff;
  padding: 8px;
  text-align: center;
  font-size: 1.5rem;
}

/* contact_list
----------------------------------*/
.contact_list {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}

.contact_list li {
  width: 40%;
  margin: 0 2%;
}

.contact_list li a {
  display: block;
  padding: 0.8em 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 5em;
}

.contact_list li a:before {
  margin-right: 10px;
}

.contact_list li a.tel_btn {
  background: #fff;
  color: #47b356;
}

.contact_list li a.tel_btn:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 900;
}

.contact_list li a.mail_btn {
  background: #47b356;
  color: #fff;
}

.contact_list li a.mail_btn:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}

/* sp_navi
----------------------------------*/
#sp_navi,
#humberger,
#drawernav {
  display: none;
}

/* slideshow
----------------------------------*/
#slideshow {
  position: relative;
  overflow: hidden;
}

#catch {
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  width: 650px;
  font-size: 2.3em;
  font-weight: 600;
  background-color: rgba(71, 179, 86, 0.8);
  border-radius: .1em;
  padding: 1rem;
  text-align: center;
}

#catch span {
  display: block;
  color: #fff;
}

.slide_contact {
  position: absolute;
  right: 0;
  bottom: 4%;
  z-index: 2;
  background: #fff;
  padding: 16px;
  border-radius: 10px 0 0 10px;
}

.slide_phone {
  font-size: 2.4em;
  font-weight: 600;
}

.slide_phone::before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 900;
  margin-right: .5em;
}

.swiper-slide {
  overflow: hidden;
  position: relative;
}

.slide-img {
  overflow: hidden;
  height: 70vh;
}

.slide-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

@media screen and (max-width: 1100px) {
  .slide-img {
    height: 35vh;
  }
}

.page_scroll {
  display: inline-block;
  position: absolute;
  right: 2%;
  bottom: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

.page_scroll::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.4);
}

.page_scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #fff;
  -webkit-animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotateY(0) rotateZ(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotateY(720deg) rotateZ(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

/* contents
----------------------------------*/
.single_01 {
  margin: 0 auto;
  max-width: 1160px;
  padding-bottom: 100px;
}

.single_02 {
  margin: 0 auto;
  max-width: 1024px;
  padding-bottom: 80px;
}

.single_03 {
  margin: 0 auto;
  max-width: calc(100% - 100px);
  padding-bottom: 80px;
}

.single_04 {
  margin: 0 auto;
  max-width: 768px;
  padding-bottom: 80px;
}

.single_05 {
  margin: 0 auto;
  max-width: 1160px;
}

.single_06 {
  margin: 0 auto;
  max-width: 1024px;
}

.single_07 {
  margin: 0 auto;
  max-width: calc(100% - 100px);
}

.single_08 {
  margin: 0 auto;
  max-width: 768px;
}

.single_09 {
  padding-bottom: 80px;
}

/* bg
----------------------------------*/
.bg_common {
  padding-top: 60px;
}

.bg_b {
  margin-bottom: 60px;
}

.bg_01 {
  position: relative;
}

.bg_01::before, .bg_01::after {
  content: "";
  position: absolute;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}

.bg_01::before {
  top: -10%;
  left: 0;
  background-image: url(../img/bg_01_before.png);
  width: 203px;
  height: 277px;
}

.bg_01::after {
  bottom: 10%;
  right: 0;
  background-image: url(../img/bg_01_after.png);
  width: 229px;
  height: 358px;
}

.bg_02 {
  position: relative;
  background-color: #fff;
}

.bg_03 {
  background-color: #f5f7d4;
}

.bg_04 {
  background-color: #f7f6ea;
}

.bg_05 {
  position: relative;
}

.bg_05::before, .bg_05::after {
  content: "";
  position: absolute;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}

.bg_05::before {
  top: -10%;
  left: 0;
  background-image: url(../img/bg_05_before.png);
  width: 350px;
  height: 493px;
}

.bg_05::after {
  bottom: -10%;
  right: 0;
  background-image: url(../img/bg_05_after.png);
  width: 195px;
  height: 310px;
}

.bg_06 {
  background-color: #47b356;
}

/* column
----------------------------------*/
.half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.half > .child {
  width: 50%;
}

.triple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.triple .child {
  width: 33.3%;
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -3%;
}

.column2 > .child {
  width: 48.44%;
  margin: 0 3% 3% 0;
}

.column2 > .child:nth-child(2n) {
  margin: 0 0 3% 0;
}

.column2.ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.column3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -3%;
}

.column3 > .child {
  width: 31.3%;
  margin: 0 3% 3% 0;
}

.column3 > .child:nth-child(3n) {
  margin: 0 0 3% 0;
}

.column4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -3%;
}

.column4 > .child {
  width: 22.7%;
  margin: 0 3% 3% 0;
}

.column4 > .child:nth-child(4n) {
  margin: 0 0 3% 0;
}

.column5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -2%;
}

.column5 > .child {
  width: 18.4%;
  margin: 0 2% 2% 0;
}

.column5 > .child:nth-child(5n) {
  margin: 0 0 2% 0;
}

.sec_wrap {
  background: url(../img/bg_04.jpg) no-repeat center 80%;
  background-size: cover;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec_wrap .sec_child {
  width: 50%;
  padding: 50px 25px;
  font-size: 1.6rem;
  font-weight: 600;
}

.sec_wrap .sec_child .sec_txt {
  max-width: 560px;
  margin: 0 auto;
}

.sec_wrap #sec_left {
  background: rgba(71, 179, 86, 0.8);
}

.sec_wrap #sec_right {
  background: rgba(0, 0, 0, 0.3);
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* mtitle
----------------------------------*/
.mtitle_page {
  position: relative;
  z-index: 1;
  font-size: 2.4em;
  font-weight: 600;
}

.mtitle_big {
  position: relative;
  margin-bottom: 32px;
  padding-left: 20px;
  font-size: 1.6em;
  font-weight: 600;
}

.mtitle_big::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #47b356;
  width: 5px;
  height: 100%;
}

.mtitle_middle {
  position: relative;
  border-bottom: 2px solid #a5a5a5;
  margin-bottom: 16px;
  padding-bottom: 5px;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.4;
}

.mtitle_middle:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 2px;
  background-color: #47b356;
}

.mtitle_middle span {
  margin-left: 1em;
  color: #47b356;
  font-size: 1.2rem;
}

.mtitle_small {
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 1.2em;
  padding: 15px 30px;
  margin-bottom: 20px;
}

.mtitle_small:before {
  position: absolute;
  top: 15%;
  left: 8px;
  width: 6px;
  height: 70%;
  content: "";
  background: #47b356;
}

.mtitle_small span {
  font-size: 0.8em;
}

.mtitle {
  position: relative;
  margin-bottom: 32px;
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1.8;
}

.mtitle span {
  display: inline;
  background: #eeedeb;
}

.mtitle_top {
  margin-bottom: 25px;
  color: #47b356;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
}

.mtitle_sub {
  margin-bottom: 8px;
  font-weight: 600;
}

.mtitle_point {
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}

.mtitle_point:after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #47b356;
  display: block;
  margin: 8px auto 0;
}

.mtitle_news {
  margin-bottom: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mtitle_ribon {
  position: absolute;
  top: -25px;
  left: -10px;
  width: 100%;
}

.mtitle_ribon span {
  display: inline-block;
  background: #47b356;
  color: #fff;
  font-size: 1.8rem;
  padding: 10px 30px;
}

.mtitle_ribon:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #2a6a33 transparent transparent;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.mtitle_greeting {
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}

.mtitle_greeting span {
  display: block;
  position: relative;
  color: #47b356;
  font-size: 1.2rem;
}

.mtitle_list {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 15px 0 22px;
  font-size: 2.4rem;
  text-align: center;
}

.mtitle_list span {
  display: block;
  color: #47b356;
  font-size: 1.2rem;
}

.mtitle_list:before, .mtitle_list:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  width: 24px;
  height: 28px;
  bottom: -6px;
}

.mtitle_list:before {
  right: 50%;
  -webkit-transform: skewY(30deg);
  transform: skewY(30deg);
}

.mtitle_list:after {
  left: 50%;
  -webkit-transform: skewY(-30deg);
  transform: skewY(-30deg);
}

.mtitle_balloon {
  font-size: 3.5rem;
  margin-bottom: 30px;
}

.mtitle_balloon span {
  position: relative;
  display: inline-block;
  padding-bottom: 24px;
  line-height: 1em;
  overflow: hidden;
  font-weight: 600;
}

.mtitle_balloon span:before, .mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 3px solid #1c1b15;
  position: absolute;
  width: 50%;
  bottom: 6px;
}

.mtitle_balloon span:before {
  left: -5px;
}

.mtitle_balloon span:after {
  right: -5px;
}

.mtitle_balloon span i {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #1c1b15;
  border-right: 3px solid #1c1b15;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}

.mtitle_foot {
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-weight: 600;
}

.mtext1 {
  font-size: 1.5em;
}

.mtext2 {
  font-size: 1.7em;
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  padding: 20px;
}

.mtext2::after {
  content: "";
  position: absolute;
  background: #47b356;
  height: 2px;
  width: 50px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.color1 {
  color: #47b356;
}

.l-h2 {
  line-height: 2;
}

/* btn
----------------------------------*/
.btn_common {
  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;
  position: relative;
  margin-top: 40px;
  padding: 1em 2em;
  max-width: 270px;
  -webkit-transition: .3s;
  transition: .3s;
  font-weight: 600;
}

.btn_common::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: -2em;
  -webkit-transform: translateY(calc(-50% - 2px)) rotate(30deg);
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn_common::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70px;
  height: 2px;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn_common:hover::before, .btn_common:hover::after {
  right: -2.5em;
}

.btn_auto {
  margin: 40px auto 0;
}

.a_btn {
  background-color: #fff;
  border: 1px solid #1c1b15;
  color: #1c1b15;
}

.a_btn::before, .a_btn::after {
  background-color: #1c1b15;
}

.a_btn:hover {
  color: #1c1b15;
}

.b_btn {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.b_btn::before, .b_btn::after {
  background-color: #fff;
}

.b_btn:hover {
  background-color: #fff;
  color: #555;
}

.b_btn:hover::before, .b_btn:hover::after {
  background-color: #555;
}

.btn01 a {
  background: #fefefe;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #47b356;
  display: block;
  padding: 8px 5px;
  font-weight: 600;
  border: 2px solid #47b356;
  border-radius: 35px;
}

.btn01 a:hover {
  background: #47b356;
  color: #fefefe;
}

.btn01.tel a {
  background: #fefefe;
}

.btn01.tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 900;
  margin-right: 5px;
}

.btn01.tel a:hover {
  background: #47b356;
  color: #fefefe;
}

.btn01.left a {
  margin: 15px auto 15px 0;
}

.btn01.mail {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.btn01.mail a {
  background: #47b356;
  margin: 15px auto 25px;
}

.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}

@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}

.btn02 {
  width: 300px;
  margin: 20px auto 20px;
}

.btn02.right {
  margin-right: 0;
}

.btn02.left {
  margin-left: 0;
}

.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #47b356;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  text-align: center;
  color: #ffffff;
}

.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn02 a:hover i {
  width: 34px;
}

@media all and (max-width: 639px) {
  .btn02 {
    width: 260px;
  }
  .btn02 a {
    font-size: 1.4rem;
  }
}

/* news
----------------------------------*/
.news-bl dt {
  padding: 4px;
  text-align: center;
  margin: 2px 0;
  background: #47b356;
  border-radius: 1em;
  max-width: 14em;
  color: #fff;
}

.news-bl dd {
  padding-bottom: 10px;
  margin: 8px 0 16px;
  border-bottom: 1px dotted #6e6e6e;
}

.news-bl dd:last-child {
  border-bottom: none;
}

.news_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news_box .news_title {
  width: 20%;
}

.news_box .news_list {
  width: 80%;
}

.news_list li {
  border-bottom: 1px solid #ccc;
}

.news_list li:first-child {
  border-top: 1px solid #ccc;
}

.news_list li a,
.news_list li .news_link {
  display: block;
  padding: 16px;
  color: #1c1b15;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news_list li a:hover,
.news_list li .news_link:hover {
  background-image: url(../img/bg_before.png);
  background-repeat: repeat;
  background-position: center;
}

.news_list li .news_date {
  font-size: 1.2rem;
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
  background-color: #fff;
}

.tbl th,
.tbl td {
  vertical-align: middle;
  padding: 15px;
  border: 1px solid #ccc;
}

.tbl th {
  background-color: #f7f6ea;
  font-weight: 600;
}

.tbl_new {
  width: 100%;
}

.tbl_new th,
.tbl_new td {
  vertical-align: middle;
  padding: 10px;
  border-bottom: 1px dotted #6e6e6e;
}

.tbl_new th {
  text-align: left;
  font-weight: 500;
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}

.company th,
.company td {
  padding: 10px;
  vertical-align: middle;
}

.company th {
  text-align: left;
  width: 25%;
  position: relative;
  background: #47b356;
  color: #fff;
  font-weight: 600;
}

.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #fcfcfc;
  border-width: 10px;
  border-left-color: #47b356;
  margin-top: -10px;
}

.company td {
  background: #fcfcfc;
  padding-left: 20px;
}

.tbl_company {
  width: 100%;
  font-size: 1.4rem;
}

.tbl_company th,
.tbl_company td {
  padding: 16px;
  vertical-align: middle;
}

.tbl_company th {
  border-bottom: 1px solid #47b356;
  font-weight: 500;
  text-align: left;
}

.tbl_company td {
  border-bottom: 1px solid #dcdcdc;
  line-height: 1.8em;
}

.cell_01 {
  width: 20%;
}

.cell_02 {
  width: 30%;
}

.cell_03 {
  width: 10%;
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 10px;
  padding-left: 1rem;
  margin-bottom: 10px;
  border-bottom: 1px dotted #ddd;
}

.list_half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list_half li {
  width: 50%;
}

.list_check li {
  position: relative;
  padding: 0 0 5px 1.5em;
}

.list_check li:before {
  position: absolute;
  top: 0;
  left: 1.5em;
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 900;
  content: "\f14a";
  margin: 0 5px 0 -1.5em;
  padding: 1px;
}

.list_note li {
  margin-bottom: 5px;
  padding-left: 1.5em;
}

.list_note li:last-child {
  margin-bottom: 0;
}

.list_note li:before {
  content: "※";
  margin: 0 5px 0 -1.5em;
  color: #ff0000;
}

.list_disc > li {
  margin-bottom: 5px;
  padding-left: 1.5em;
}

.list_disc > li:last-child {
  margin-bottom: 0;
}

.list_disc > li:before {
  content: "・";
  margin: 0 5px 0 -1em;
  color: #47b356;
}

.list_line li {
  position: relative;
  display: inline-block;
  padding-right: 10px;
}

.list_line li:after {
  position: absolute;
  right: 0;
  content: "/";
}

.list_line li:last-child:after {
  display: none;
}

.list_macker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
}

.list_macker li {
  width: 18.4%;
  margin: 0 2% 1% 0;
}

.list_macker li:nth-child(5n) {
  margin: 0 0 1% 0;
}

.rounded-list {
  counter-reset: li;
  padding-left: 1em;
  list-style: none;
}

.rounded-list li {
  position: relative;
  padding: 0.4em 0.4em 0.4em 2em;
  margin: 0.5em 0;
  background: #fafafa;
  border-radius: 0.3em;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.rounded-list li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: -1.3em;
  top: 50%;
  margin-top: -1.3em;
  background: #47b356;
  color: #fff;
  height: 3em;
  width: 3em;
  line-height: 2.4em;
  border: 0.3em solid #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 2em;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.drop_down {
  position: relative;
  cursor: pointer;
  padding-left: 15px;
}

.drop_down:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #47b356;
}

.list_child {
  display: none;
  margin-bottom: 15px;
}

.list_child li:before {
  content: "・";
  margin: 0 5px 0 -1em;
  color: #47b356;
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 70.25%;
  height: 0;
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ggmap.ggmap_02 {
  padding-bottom: 56.25%;
}

.ggcalendar {
  position: relative;
  padding-bottom: 76.25%;
  height: 0;
  overflow: hidden;
}

.ggcalendar iframe,
.ggcalendar object,
.ggcalendar embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe[style] {
  width: 100% !important;
}

/* article
----------------------------------*/
.article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-image: url(../img/bg_02.jpg);
  background-repeat: no-repeat;
  background-position: bottom right;
  color: #fff;
}

.article .article_image {
  width: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.article .article_detail {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 80px 0;
}

.article .article_detail .inner {
  margin: 0 auto;
  width: 70%;
}

.article.article_b {
  margin-bottom: 60px;
}

.article.article_white {
  background-image: none;
  background-color: #fff;
}

.article.article_01 .article_image {
  background-image: url(../img/system_04.jpg);
}

.article.article_02 .article_image {
  background-image: url(../img/drone_01.jpg);
}

.article.article_03 .article_image {
  background-image: url(../img/system_06.jpg);
}

.article.article_04 .article_image {
  background-image: url(../img/article_04.jpg);
}

.article.article_05 .article_image {
  background-image: url(../img/article_05.jpg);
}

.article.article_06 .article_image {
  background-image: url(../img/article_06.jpg);
}

.article.article_07 .article_image {
  background-image: url(../img/article_07.jpg);
}

.article.article_08 .article_image {
  background-image: url(../img/article_08.jpg);
}

.article.article_09 .article_image {
  background-image: url(../img/article_09.jpg);
}

.article.article_10 .article_image {
  background-image: url(../img/article_10.jpg);
}

.article.article_11 .article_image {
  background-image: url(../img/article_11.jpg);
}

/* top_blog
----------------------------------*/
.top_blog {
  display: block;
  position: relative;
  color: #1c1b15;
  padding-right: 7%;
  padding-bottom: 3%;
}

.top_blog:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #0a6e06;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.top_blog:hover {
  color: #1c1b15;
}

.top_blog:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.top_blog .inner {
  padding: 20px 30px 40px;
}

.date {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  color: #0a6e06;
  font-size: 1rem;
  letter-spacing: 0.15em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.date_entry {
  margin-bottom: 24px;
  font-size: 1.4rem;
}

.top_blog_title {
  margin: 10px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

.top_blog_txt {
  font-size: 1.3rem;
}

.blog_topics {
  font-size: 1.3rem;
}

.blog_topics li a {
  display: block;
  color: #1c1b15;
  padding: 15px;
  border-bottom: 1px dotted #ccc;
}

.blog_topics li a:hover {
  background-color: white;
  color: #1c1b15;
}

.blog_topics li a .topics_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog_topics li a .topics_detail .image {
  width: 10%;
}

.blog_topics li a .topics_detail .text {
  width: 80%;
  margin-left: 10px;
}

.blog_topics li a .time_date {
  width: 120px;
  font-size: 1.2rem;
}

/* blog
----------------------------------*/
.blog_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog_contents .blog_main {
  width: 65%;
}

.blog_contents .blog_side {
  width: 30%;
  background-image: url(../img/bg_before.png);
  background-repeat: repeat;
  background-position: center;
  padding: 30px;
}

.category_nav li {
  border-bottom: 1px dotted #ccc;
}

.category_nav li a {
  display: block;
  padding: 10px 15px;
}

.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-right: 5px;
  margin-right: 5px;
  color: #47b356;
}

.category_nav li a:hover {
  background-color: #fff;
}

.category_nav li:last-child a {
  border-bottom: none;
}

.blog_title {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 600;
}

.blog_title:before {
  margin-right: 5px;
  color: #47b356;
}

.blog_title.archive:before {
  font-family: "Font Awesome 5 Free";
  content: "\f187";
  font-weight: 900;
}

.blog_title.new:before {
  font-family: "Font Awesome 5 Free";
  content: "\f044";
  font-weight: 900;
}

.blog_article {
  padding: 0 30px 50px;
  background-color: #fff;
  margin-bottom: 50px;
}

.blog_article:last-child {
  margin-bottom: 0;
}

.blog_new {
  border-bottom: 1px dotted #47b356;
}

.blog_new:last-child {
  border-bottom: none;
}

.blog_new a {
  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;
  background-color: #fff;
  padding: 10px;
}

.blog_new a .image {
  width: 40%;
}

.blog_new a .detail {
  width: 50%;
}

.blog_new a .detail .entry_title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pages {
  overflow: hidden;
  margin-top: 50px;
}

.pages .page_next,
.pages .page_prev {
  display: inline-block;
}

.pages .page_next a,
.pages .page_prev a {
  display: block;
  padding: 10px 20px;
  background-color: #fff;
}

.pages .page_next {
  float: left;
}

.pages .page_prev {
  float: right;
}

/* gallery
----------------------------------*/
.gallery_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery_ul a {
  display: none;
  position: relative;
  overflow: hidden;
  height: 250px;
}

.gallery_ul a img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

.ie .gallery_ul a img {
  position: absolute;
  width: auto;
  height: auto;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.gallery_ul a:first-child {
  display: block;
}

.gallery_ul span {
  display: block;
  margin-top: 5px;
  text-align: center;
}

.gallery_ul.gallery_ul_01 li {
  width: 31.3%;
  margin: 0 3% 3% 0;
}

.gallery_ul.gallery_ul_01 li:nth-child(3n) {
  margin: 0 0 3% 0;
}

.gallery_ul.gallery_ul_02 li {
  width: 22.7%;
  margin: 0 3% 3% 0;
}

.gallery_ul.gallery_ul_02 li:nth-child(4n) {
  margin: 0 0 3% 0;
}

.gallery_ul.gallery_ul_03 li {
  width: 48.5%;
  margin: 0 3% 3% 0;
}

.gallery_ul.gallery_ul_03 li:nth-child(2n) {
  margin: 0 0 3% 0;
}

/* sns_list
----------------------------------*/
.sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

.sns_list li {
  width: 24%;
  margin-right: 1.2%;
}

.sns_list li:last-child {
  margin: 0;
}

.sns_btn {
  overflow: hidden;
  color: #fff;
  position: relative;
  display: block;
  border-radius: 100px;
  height: 60px;
  text-align: center;
  line-height: 60px;
}

.sns_btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sns_btn i {
  font-size: 2rem;
  position: relative;
  top: 3px;
  margin-right: 10px;
}

.sns_btn span {
  display: inline-block;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.sns_btn:hover {
  color: #fff;
}

.sns_btn:hover span {
  -webkit-transform: rotateX(360deg);
  transform: rotateX(360deg);
}

.facebook_btn {
  background: #4267b2;
}

.insta_btn {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}

.insta_btn:before {
  background: linear-gradient(15deg, #ffdb2c, #f9764c 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.line_btn {
  background: #00b82b;
}

.twitter_btn {
  background: #55acee;
}

/* top_news
----------------------------------*/
.top_news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* thumb_list
----------------------------------*/
.thumb_list {
  display: block;
  color: #1c1b15;
  font-size: 1.4rem;
}

.thumb_list .thumb_image {
  position: relative;
  margin-bottom: 5px;
  overflow: hidden;
  background: #f5f8f5;
}

.thumb_list .thumb_image img {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.thumb_list .thumb_image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.thumb_list .thumb_image:after {
  display: block;
  content: "";
  padding-top: 75%;
}

.thumb_list .thumb_image .detail_btn {
  opacity: 0;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: #fff;
  padding: 3px 10px;
  font-size: 1.2rem;
}

.thumb_list .thumb_image .detail_btn:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #47b356;
  margin-right: 5px;
}

.thumb_list .thumb_title {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: bold;
}

.thumb_list:hover {
  color: #1c1b15;
}

.thumb_list:hover .thumb_image img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.thumb_list:hover .thumb_image .detail_btn {
  opacity: 1;
}

.thumb_list:hover .thumb_image:before {
  opacity: 1;
}

/* page_bnr
----------------------------------*/
.page_bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -2%;
}

.page_bnr li {
  margin: 0 2% 2% 0;
}

.page_bnr li a {
  display: block;
  color: #1c1b15;
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 10px;
}

.page_bnr li a:hover {
  color: #47b356;
}

.page_bnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-right: 10px;
  color: #47b356;
}

.page_bnr.page_bnr_01 li {
  width: 49%;
}

.page_bnr.page_bnr_01 li:nth-child(2n) {
  margin: 0 0 2% 0;
}

.page_bnr.page_bnr_02 li {
  width: 32%;
}

.page_bnr.page_bnr_02 li:nth-child(3n) {
  margin: 0 0 2% 0;
}

/* feature
----------------------------------*/
.feature_image {
  position: relative;
  overflow: hidden;
  height: 250px;
  margin-bottom: 15px;
}

.feature_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

.feature_num {
  opacity: 0.5;
  margin: -10px 0 15px;
  color: #47b356;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1em;
}

.feature_num span {
  font-size: 5rem;
}

.point_num {
  display: block;
  position: relative;
  z-index: 2;
  left: -10px;
  bottom: -30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #0a6e06;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}

/* features_contents
----------------------------------*/
.features_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}

.features_contents .features_image {
  position: relative;
  width: 40%;
}

.features_contents .features_detail {
  width: 55%;
}

.features_num {
  position: absolute;
  left: -0.5em;
  top: -0.5em;
  z-index: 2;
  color: #47b356;
  font-size: 3.2rem;
  font-style: italic;
  line-height: 1;
}

.features_num:after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: 5px auto 0;
  background-color: #47b356;
}

.features_title {
  margin-bottom: 10px;
  color: #47b356;
  font-size: 2rem;
  font-weight: 600;
}

/* news
----------------------------------*/
.news {
  font-size: 1.3rem;
}

.news .child {
  border-top: 1px solid #ddd;
  padding-top: 30px;
}

.news a {
  color: #1c1b15;
}

.news a:hover {
  color: #1c1b15;
}

/* top_main
----------------------------------*/
.top_main {
  position: relative;
  padding: 8% 0;
}

.top_main:before {
  content: "";
  display: block;
  width: 55%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
  background-image: url(../img/top_main_image.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.top_main .inner {
  width: 42%;
  text-align: center;
  line-height: 2.4;
}

/* top_sub
----------------------------------*/
.top_sub {
  position: relative;
}

.top_sub:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 55%;
  height: 119%;
  overflow: hidden;
}

.top_sub:after {
  content: "";
  position: absolute;
  bottom: -60px;
  z-index: -1;
  background-color: #f7f6ea;
  width: 66%;
  height: 90%;
}

.top_sub .top_sub_inner {
  padding: 40px 0;
}

.top_sub .sub_detail {
  position: relative;
  z-index: 2;
  background: #fff;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
  width: 50%;
  padding: 90px 70px;
}

.top_sub.sub_right:before {
  left: 0;
}

.top_sub.sub_right:after {
  right: -60px;
}

.top_sub.sub_right .sub_detail {
  margin-left: auto;
}

.top_sub.sub_left:before {
  right: 0;
}

.top_sub.sub_left:after {
  left: -60px;
}

.top_sub.sub_left .sub_detail {
  margin-right: auto;
}

.top_sub.top_sub_01:before {
  background-image: url(../img/top_sub_01.jpg);
}

.top_sub.top_sub_02:before {
  background-image: url(../img/top_sub_02.jpg);
}

.top_sub.top_sub_03:before {
  background-image: url(../img/top_sub_03.jpg);
}

/* flex_type
----------------------------------*/
.flex_type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex_type_01 .flex_image {
  width: 45%;
}

.flex_type_01 .flex_image img {
  width: 100%;
}

.flex_type_01 .flex_detail {
  width: 50%;
}

.flex_type_01 .flex_detail p {
  line-height: 2;
}

.flex_type_01.type01 .flex_image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.flex_type_01.type01 .flex_detail {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.flex_type_02 .flex_image {
  width: 20%;
}

.flex_type_02 .flex_detail {
  width: 75%;
}

.order {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}

/* mbox
----------------------------------*/
.mbox {
  background-color: #fff;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
  padding: 90px 70px;
}

.sbox {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 40px;
}

/* faq
----------------------------------*/
.faq dt {
  position: relative;
  margin-bottom: 20px;
  background: #47b356;
  color: #fff;
  padding: 8px 16px 8px 36px;
  cursor: pointer;
}

.faq dt:before {
  content: "＋";
  position: absolute;
  top: -6px;
  left: -6px;
  font-size: 2rem;
  line-height: 35px;
  color: #fff;
  background: #2a6a33;
  width: 35px;
  height: 35px;
  text-align: center;
}

.faq dt:hover {
  background: #2a6a33;
}

.faq dd {
  position: relative;
  display: none;
  position: relative;
  margin-bottom: 24px;
  background: #fff;
  padding: 2em;
}

.faq dd:before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  line-height: 35px;
  color: #fff;
  background: #f7f6ea;
  width: 35px;
  height: 35px;
  text-align: cente;
}

.voice_faq {
  padding-top: 20px;
}

.voice_faq dl dt {
  position: relative;
  border-top: solid 1px #ddd;
  padding: 10px 0 25px 72px;
  font-size: 1.8rem;
  font-weight: 600;
}

.voice_faq dl dt span {
  position: absolute;
  left: 0;
  top: -20px;
  display: block;
  width: 56px;
  line-height: 56px;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  background: #47b356;
  font-weight: 100;
  letter-spacing: .05rem;
}

.voice_faq dl dd {
  position: relative;
  padding: 0 40px 45px 72px;
}

.voice_faq dl dd span {
  position: absolute;
  left: 15px;
  top: -10px;
  display: block;
  color: #0a6e06;
  font-size: 2rem;
  font-weight: 100;
  letter-spacing: .05rem;
}

/* flow
----------------------------------*/
.flow {
  padding-left: 120px;
  position: relative;
}

.flow::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #efefef;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
}

.flow > li {
  position: relative;
}

.flow > li:not(:last-child) {
  margin-bottom: 5vh;
}

.flow > li .icon {
  font-size: 12px;
  color: #fff;
  background-color: #47b356;
  padding: 8px 20px;
  display: block;
  position: absolute;
  top: 0;
  left: -120px;
  z-index: 2;
}

.flow > li .icon::after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #47b356;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flow > li dl {
  padding-left: 70px;
  position: relative;
}

.flow > li dl::before, .flow > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.flow > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #47b356;
  border-radius: 50%;
  left: -4px;
}

.flow > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}

.flow > li dl dt {
  font-size: 1.8rem;
  font-weight: 600;
  color: #47b356;
  margin-bottom: 1vh;
}

.flow-dl .flow-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
}

.flow-dl .flow-inner:not(:last-of-type) {
  margin-bottom: 10px;
  border-bottom: solid 1px #0a6e06;
}

.flow-dl .flow-inner dt {
  width: 10%;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  color: #0a6e06;
}

.flow-dl .flow-inner dt .eng {
  font-size: 2.5rem;
  color: #0a6e06;
  margin-left: 3px;
  display: block;
}

.flow-dl .flow-inner dd {
  width: 87%;
  border-left: 1px solid #0a6e06;
  padding-left: 20px;
}

@media all and (max-width: 639px) {
  .flow-dl .flow-inner {
    padding: 6px;
  }
  .flow-dl .flow-inner dt {
    font-size: 1.25rem;
  }
  .flow-dl .flow-inner dt .eng {
    font-size: 1.7rem;
  }
}

/* medical_link
----------------------------------*/
.medical_link {
  padding: 40px 20px;
  background-color: #fff;
}

/* belongs
----------------------------------*/
.belongs {
  position: relative;
  background: #fff;
  padding: 20px;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
  width: 90%;
  margin: -30px auto 0;
}

.belongs a {
  color: #1c1b15;
}

/* vertical_image
----------------------------------*/
.vertical_image {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.vertical_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

.top_image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.top_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

/* index_contents
----------------------------------*/
.index_contents {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.index_contents > div {
  width: 50%;
}

.index_contents .index_image {
  overflow: hidden;
}

.index_contents .index_image .animation-txt {
  overflow: hidden;
  height: 550px;
}

.index_contents .index_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

.index_contents .index_detail {
  background-image: url(../img/bg_index_detail.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 60px 3%;
  height: 550px;
}

/* about_box
----------------------------------*/
.about_box {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
          box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
}

.about_box .inner {
  position: relative;
  padding: 48px 24px 72px;
  font-size: 1.4rem;
  color: #1c1b15;
}

/* greeting_contents
----------------------------------*/
.greeting_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.greeting_contents .image {
  width: 59.72222%;
}

.greeting_contents .image img {
  display: block;
  width: 100%;
  height: 400px;
  font-family: "object-fit: cover; object-position: center;";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.greeting_contents .detail {
  position: relative;
  margin-left: -35px;
  width: 35%;
}

.greeting_contents .title {
  margin-bottom: 30px;
  color: #47b356;
  font-size: 3rem;
  font-weight: 600;
  line-height: 2;
}

.greeting_contents .txt {
  margin-bottom: 40px;
  line-height: 2;
}

/* slide_list
----------------------------------*/
.slide_list {
  position: relative;
}

.slide_list li {
  margin-right: 3%;
}

.slide_list li img {
  width: auto;
  height: 150px;
}

.slide_list li span {
  display: block;
  margin-top: 10px;
  text-align: center;
}

/* new_bnr
----------------------------------*/
.new_bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.new_bnr li {
  position: relative;
  overflow: hidden;
  width: 33.33333%;
  height: 320px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.new_bnr li .bg {
  position: absolute;
  z-index: 1;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 320px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all 3s ease-out;
  transition: all 3s ease-out;
  -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
          transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  will-change: transform;
}

.new_bnr li .bg.bg_new_01 {
  background-image: url(../img/bg_new_01.jpg);
}

.new_bnr li .bg.bg_new_02 {
  background-image: url(../img/bg_new_02.jpg);
}

.new_bnr li .bg.bg_new_03 {
  background-image: url(../img/bg_new_03.jpg);
}

.new_bnr li .bg.bg_new_04 {
  background-image: url(../img/bg_new_04.jpg);
}

.new_bnr li a {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: block;
}

.new_bnr li .text {
  position: absolute;
  z-index: 3;
  bottom: 50px;
  left: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
}

.new_bnr li .text span {
  display: block;
  font-size: 1.2rem;
}

.new_bnr li .btn {
  position: absolute;
  bottom: 58px;
  right: 50px;
  z-index: 1;
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transition: all 0.12s ease-in 0s;
  transition: all 0.12s ease-in 0s;
}

.new_bnr li .btn:before {
  position: absolute;
  z-index: 2;
  display: block;
  content: "";
  top: 25px;
  left: 24px;
  width: 6.5px;
  height: 6.5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.12s ease-in 0s;
  transition: all 0.12s ease-in 0s;
}

.new_bnr li:hover .bg {
  -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.95);
          transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.95);
}

.new_bnr li:hover .btn {
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  background-color: #47b356;
  border: 1px solid #47b356;
}

.new_bnr li:hover .btn:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.img_shadow {
  position: relative;
  -webkit-transition: all 0.5s ease-in 0s;
  transition: all 0.5s ease-in 0s;
}

.img_shadow:after {
  position: absolute;
  z-index: 2;
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(40%, rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, black 100%);
  opacity: 0.65;
  -webkit-transition: all 0.5s ease-in 0s;
  transition: all 0.5s ease-in 0s;
}

.img_shadow:hover :after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(40%, rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, black 100%);
  opacity: 0.85;
}

/* top_business
----------------------------------*/
.top_business {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top_business .explanation {
  width: 30%;
}

.top_business .detail {
  width: 66%;
}

/* list_top
----------------------------------*/
.list_top li {
  position: relative;
  padding: 20px 15px 20px 25px;
  background-color: #0a6e06;
  color: #fff;
}

.list_top li:before {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
}

.list_top li:nth-child(even) {
  background-color: #075104;
}

/* trouble
----------------------------------*/
.trouble li {
  position: relative;
  padding-bottom: 15px;
  padding-left: 3rem;
  margin-bottom: 15px;
  border-bottom: 1px dotted #bbb;
}

.trouble li:before {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../img/ico_trouble.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
}

/* p_idx_works_item
----------------------------------*/
.p_idx_works_item {
  position: relative;
  display: block;
}

.p_idx_works_item a > .hover::before {
  opacity: 0.4;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.p_idx_works_item a:hover > .hover::before {
  opacity: 1;
  pointer-events: auto;
}

.p_idx_works_item .hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6em;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.1rem;
}

.p_idx_works_item .hover:before {
  background-color: #47b356;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: multiply;
}

.p_idx_works_item .hover:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -0.8em;
  width: 4.6em;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(50%, #fff), color-stop(50%, #000), to(#000));
  background: linear-gradient(90deg, #fff 0%, #fff 50%, #000 50%, #000 100%);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.p_idx_works_item .title {
  position: relative;
  font-size: 1.6rem;
  font-weight: 600;
}

.p_idx_works_item .title span {
  display: block;
  font-size: 1rem;
}

.c-img_full {
  position: relative;
  overflow: hidden;
  height: 175px;
}

.c-img_full img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* top_contents
----------------------------------*/
.top_contents {
  background-image: url(../img/bg_top_contents.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 80px 0;
}

.top_contents .top_parent {
  overflow: hidden;
}

.top_contents .top_parent .top_detail {
  float: right;
  width: 50%;
}

.top_contents .top_parent .top_detail .inner {
  padding: 80px 56px;
  background: rgba(255, 255, 255, 0.8);
}

/* top_bnr
----------------------------------*/
.top_bnr .child {
  margin-bottom: 16px;
  background-color: #ffffff;
  text-align: center;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.top_bnr .child a {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px 0px;
  min-height: 168px;
  color: #1c1b15;
}

.top_bnr .child a .top_bnr_image {
  width: 50%;
  max-height: 168px;
  position: relative;
  overflow: hidden;
}

.top_bnr .child a .top_bnr_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.top_bnr .child a .top_bnr_detail {
  width: 50%;
  padding: 32px 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.top_bnr .child a .top_bnr_detail .top_bnr_ttl {
  margin-bottom: 16px;
}

.top_bnr .child a .top_bnr_detail .top_bnr_ttl span {
  display: block;
  color: #47b356;
  font-size: 1.2rem;
  font-weight: 500;
}

.top_bnr .child a .top_bnr_detail .top_bnr_btn {
  display: inline-block;
  width: 124px;
  padding: 8px 0;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  background-color: #47b356;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 5em;
}

.top_bnr .child a:hover .top_bnr_btn {
  background-color: #69c476;
}

/* transparent_box
----------------------------------*/
.transparent_box {
  position: relative;
  z-index: 1;
  border: 3px solid #fff;
  padding: 60px 40px 100px 60px;
  color: #fff;
}

.transparent_box .inner {
  width: 60%;
  margin-left: auto;
}

/* img_contents
----------------------------------*/
.img_contents {
  overflow: hidden;
  position: relative;
  padding-top: 80px;
  margin-bottom: 80px;
}

.img_contents .img_area {
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -270px;
  z-index: 1;
}

.img_contents .img_container {
  position: relative;
  z-index: 2;
}

.img_contents .img_container .txt_01 {
  line-height: 2.4;
}

/* top_pages
----------------------------------*/
.top_txt {
  margin-bottom: 20px;
  line-height: 2.4;
  text-align: center;
}

.works_list {
  color: #fff;
}

.works_list:hover {
  color: #fff;
}

.works_category {
  position: relative;
  margin-top: 8px;
  padding-left: 3em;
}

.works_category::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
}

.works_category_01::before {
  background-image: url(../img/works_category_01.png);
}

.works_category_02::before {
  background-image: url(../img/works_category_02.png);
}

.works_category_03::before {
  background-image: url(../img/works_category_03.png);
}

.works_category_04::before {
  background-image: url(../img/works_category_04.png);
}

.works_category_05::before {
  background-image: url(../img/works_category_05.png);
}

.works_category_06::before {
  background-image: url(../img/works_category_06.png);
}

/* catalog_list
----------------------------------*/
.catalog_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -1%;
}

.catalog_list > li {
  width: 31.3%;
  margin: 0 3% 1% 0;
}

.catalog_list > li:nth-child(3n) {
  margin: 0 0 1% 0;
}

.catalog_list > li a {
  position: relative;
  display: block;
  background-color: #fff;
  padding: 8px;
  color: #47b356;
  font-size: .9em;
  border: 1px solid #47b356;
  text-align: center;
}

.catalog_list > li a::after {
  position: absolute;
  top: 50%;
  right: 4%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
}

.catalog_list > li a:hover {
  background-color: #47b356;
  color: #fff;
}

.catalog_list > li a.accordion::after {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
}

.catalog_list > li a.accordion.close::after {
  font-family: "Font Awesome 5 Free";
  content: "\f106";
  font-weight: 900;
}

/* accordion
----------------------------------*/
.accordion_contents {
  display: none;
  margin-top: 40px;
}

/* is-animated
----------------------------------*/
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  overflow: hidden;
  position: relative;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #47b356;
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes zoomOutAnime {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  -webkit-animation: text_anime_on 3s ease-out forwards;
          animation: text_anime_on 3s ease-out forwards;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* etc
----------------------------------*/
.decoration {
  position: relative;
}

.decoration:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-image-source: repeating-linear-gradient(45deg, #fff, #fff 3px, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 6px);
  border-image-slice: 20;
  border-image-repeat: round;
  border-style: solid;
  border-width: 20px;
}

.font_ss {
  font-size: 1rem;
}

.font_s {
  font-size: 1.2rem;
}

.font_m {
  font-size: 1.4rem;
}

.font_l {
  font-size: 1.6rem;
}

.num {
  color: #0a6e06;
  font-size: 1.5em;
  margin: 0 5px;
}

.fly {
  display: block;
}

.fly figure {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.fly:hover figure {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.aesthetic {
  margin: 0 auto 20px;
  width: 70%;
}

.macker {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #fbff00));
  background-image: linear-gradient(left, transparent 50%, #fbff00 50%);
  background-repeat: repeat-x;
  background-size: 200% 0.3em;
  background-position: 0 1em;
  -webkit-transition: all 3.5s ease;
  transition: all 3.5s ease;
  font-style: normal;
  font-weight: bold;
  padding: 0 5px;
}

.macker.active {
  background-position: -100% 0.8em;
}

.cut {
  overflow: hidden;
  zoom: 1;
}

/* animation
----------------------------------*/
.txt_animation {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  -webkit-transition-property: -webkit-clip-path;
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}

.txt_animation.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

.zoomin {
  opacity: 0;
}

.zoomin.is-animated {
  -webkit-animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
          animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.fadeup {
  opacity: 0;
}

.fadeup:nth-child(odd).is-animated {
  -webkit-animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
          animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

.fadeup:nth-child(even).is-animated {
  -webkit-animation: fadebottom 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
          animation: fadebottom 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeup {
  0% {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes fadebottom {
  0% {
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadebottom {
  0% {
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.img_big {
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: calc(50% - 50vw);
}

.img_big .inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

.img_big .inner:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #f7f6ea;
  width: 690px;
  height: calc(100% + 100px);
  margin-left: 30px;
}

.img_big .inner div {
  position: relative;
  z-index: 1;
  max-width: 1035px;
  margin-right: 30px;
  margin-bottom: 60px;
  margin-left: auto;
}

.img_big .inner div img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@-webkit-keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes animation-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 101%;
  }
}

@keyframes animation-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 101%;
    width: 0;
  }
}

@-webkit-keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.animation.move .animation-bar:before {
  -webkit-animation: animation-bar 1s ease 0s 1 normal forwards;
  animation: animation-bar 1s ease 0s 1 normal forwards;
}

.animation.move .animation-txt {
  -webkit-animation: animation-txt 0s ease 0.5s 1 normal forwards;
  animation: animation-txt 0s ease 0.5s 1 normal forwards;
}

.animation .animation-box {
  display: block;
  text-align: center;
}

.animation .animation-bar {
  position: relative;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.animation .animation-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #0a6e06;
}

.animation .animation-txt {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.effect_fade {
  opacity: 0;
  -webkit-transform: translate(0, 45px);
          transform: translate(0, 45px);
  -webkit-transition: all 2s;
  transition: all 2s;
}

.effect_fade.effect_scroll {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* page_title_box
----------------------------------*/
.page_title_box {
  position: relative;
  background-color: #f7f6ea;
  overflow: hidden;
}

.page_title_box .inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  padding: 100px 0 150px;
  text-align: center;
}

.page_title_box .inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(../img/title.png) repeat-x center/contain;
}

/* breadcrumb_box
----------------------------------*/
.breadcrumb_box {
  color: #0a6e06;
  padding: 10px 0;
  overflow: hidden;
}

.breadcrumb_box .breadcrumb {
  width: 1160px;
  margin: 0 auto;
  padding-left: 0;
  font-size: 1.3rem;
}

.breadcrumb_box .breadcrumb li {
  display: inline;
}

.breadcrumb_box .breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}

.breadcrumb_box .breadcrumb li a {
  color: #0a6e06;
}

.breadcrumb_box .breadcrumb li .home:before {
  font-family: "Font Awesome 5 Free";
  content: "\f015";
  font-weight: 900;
}

/* form
----------------------------------*/
.form_dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px dotted #ccc;
  padding: 2% 1%;
}

.form_dl dt {
  width: 30%;
  background-color: #f7f6ea;
  padding: 1% 2% 1.5%;
}

.form_dl dd {
  width: 65%;
}

.form .required {
  position: relative;
  top: -1px;
  background: #47b356;
  color: #fff;
  padding: 0 5px;
  margin-right: 5px;
  font-size: 1.1rem;
}

.form .textarea,
.form textarea {
  border: none;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 5px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form .textarea {
  height: 40px;
}

.form .textarea_02 {
  width: 48.5%;
  margin-right: 3%;
}

.form .textarea_02:last-child {
  margin-right: 0;
}

.form .textarea_03 {
  width: 20%;
  margin: 0 1%;
}

.form .selectarea {
  border-radius: 0;
  background-color: #fff;
  border: 1px solid #eee;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
}

.form button {
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  font-family: "Zen Maru Gothic", "YakuHanJP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Meiryo", "メイリオ", sans-serif;
  font-size: 1.5rem;
  background-color: transparent;
  width: 270px;
}

.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding: 0 0 3px 20px;
  display: inline-block;
  line-height: 1.2;
}

.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 1px;
  top: 3px;
  content: "";
  z-index: 3;
}

.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 3px;
  top: 5px;
  background-color: #47b356;
  z-index: 1;
}

.form label.radio_text input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  -webkit-box-shadow: 20px -1px #fff;
          box-shadow: 20px -1px #fff;
}

.form label.radio_text input[type="radio"]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form label.radio_text input[type="radio"]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #eeebda;
          box-shadow: 20px -1px #eeebda;
}

.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding: 0 0 3px 25px;
  margin-right: 20px;
  overflow: hidden;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.2;
}

.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
}

.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #47b356;
  border-bottom: 3px solid #47b356;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}

.form label.checkbox_text input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  -webkit-box-shadow: 41px 0px #fff;
          box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

.form label.checkbox_text input[type="checkbox"]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form label.checkbox_text input[type="checkbox"]:checked:focus {
  -webkit-box-shadow: 40px 0px #666;
          box-shadow: 40px 0px #666;
  opacity: 0.1;
}

.form label.checkbox_text input[type="checkbox"]:focus {
  -webkit-box-shadow: 41px 0px #eee;
          box-shadow: 41px 0px #eee;
}

#ui-datepicker-div {
  z-index: 3 !important;
}

.efct {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.efct > li, .efct .child {
  -webkit-box-shadow: 0px 0px 15px rgba(52, 52, 52, 0.1);
          box-shadow: 0px 0px 15px rgba(52, 52, 52, 0.1);
  position: relative;
  background: #fefefe;
  width: 31%;
  margin: 0 calc(1.33% + (1.33% / 2)) 30px 0;
}

.efct > li:nth-child(3n), .efct .child:nth-child(3n) {
  margin-right: 0;
}

@media all and (max-width: 896px) {
  .efct > li, .efct .child {
    width: 48%;
    margin: 0 calc(1.33% + (1.33% / 2)) 50px 0;
  }
  .efct > li:nth-child(2n), .efct .child:nth-child(2n) {
    margin-right: 0;
  }
  .efct > li:nth-child(3n), .efct .child:nth-child(3n) {
    margin-right: 0;
  }
}

@media all and (max-width: 639px) {
  .efct > li, .efct .child {
    width: 95%;
    margin: 0 auto 50px;
  }
  .efct > li:nth-child(3n), .efct .child:nth-child(3n) {
    margin-right: auto;
  }
}

.efct > li a .img-box, .efct .child a .img-box {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.efct > li a .img-box img, .efct .child a .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.efct > li .txt-box, .efct .child .txt-box {
  padding: 20px 20px 40px;
  color: #333;
  position: relative;
}

.efct > li .txt-box::after, .efct .child .txt-box::after {
  content: "";
  background: #47b356;
  width: 0px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.efct > li .title, .efct .child .title {
  font-weight: 600;
  color: #333;
  text-align: center;
}

.efct > li .nmb, .efct .child .nmb {
  position: absolute;
  top: -13%;
  left: 2%;
  font-size: 6rem;
  font-family: "Quicksand", sans-serif;
  color: #47b356;
  text-shadow: 2px 2px #fefefe;
}

@media all and (max-width: 639px) {
  .efct > li .nmb, .efct .child .nmb {
    font-size: 5rem;
  }
}

.efct > li .btn, .efct .child .btn {
  position: absolute;
  right: 50%;
  bottom: -20px;
  width: 140px;
  height: 40px;
  border-radius: 20px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.efct > li .btn .inntx, .efct .child .btn .inntx {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-size: 14px;
  letter-spacing: 0.07em;
  border-radius: 20px;
}

.efct > li .btn .inntx span, .efct .child .btn .inntx span {
  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;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background-color: #47b356;
  -webkit-transition: background-color 400ms ease-out, color 400ms ease-out, font-weight 0ms;
  transition: background-color 400ms ease-out, color 400ms ease-out, font-weight 0ms;
}

.efct > li .btn .inntx::after, .efct .child .btn .inntx::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  top: 53%;
  right: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fefefe;
}

.efct > li:hover .img-box img, .efct .child:hover .img-box img {
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.efct > li:hover .txt-box::after, .efct .child:hover .txt-box::after {
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  width: 100%;
}

.efct > li:hover .btn .inntx span, .efct .child:hover .btn .inntx span {
  border: 2px solid #47b356;
  background: #fefefe;
  color: #47b356;
  border-radius: 20px;
}

.efct > li:hover .btn .inntx::after, .efct .child:hover .btn .inntx::after {
  color: #47b356;
}
