body {
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    font-size: 15px;
}

.fade-in {
  opacity: 0;
  transform: translateY(50px); /* 下から上にフェードイン */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


img {
    width: 100%;
}

.Forsp {
    display: none;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
    cursor: pointer;
    font-weight: bold;
}
a:hover {
    opacity: .8;
}
section {
    padding: 120px 0;
}
.inner_box {
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
}
h2 {
    font-size: 25px;
    color: #7FAE55;
    text-align: center;
    margin-bottom: 30px;
}
h2 span {
    font-size: 20px;
    color: #333333;
}
h3,h4 {
    font-weight: 500;
}
.explain_text {
    font-size: 15px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 50px;
}
.inner_box ul li {
    position: relative;
    text-indent: -1em;
    padding-left: 1em;
    font-size: 15px;
    margin-top: 5px;
}
.inner_box ul li::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background: #333;
    top: 10px;
    left: 5px;
}
/* header */
header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 5px rgb(0 0 0 / 10%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}
.header-contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0 12px;
}
.header-contents .header-btn-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-contents .header-logo {
    width: 230px;
    margin-bottom: -10px;
}
.header-btn-area li {
    padding: 2px 4px;
    border-radius: 50px;
}
.header-btn-area li a {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
}

.g-nav-menu .circle_btn {
    width: fit-content;
    padding: 10px 17px;
    border-radius: 50px;
}
.g-nav-menu .circle_btn a {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
}
.g-nav-menu .consultation {
    background: #FD6832;
    border: double 5px #ffffff;
}
.g-nav-menu .information {
    background: #7FAE55;
    border: double 5px #ffffff;
}
.g-nav-menu .bpo {
    background: #fff;
    border: 2px solid #7FAE55;
    padding: 10px 17px;
    text-align: center;
    line-height: 1.2;
}
.g-nav-menu .bpo a {
    color: #7FAE55;
}

header #g-navi {
    display: flex;
    width: 900px;
    margin: 0 auto;
    justify-content: space-around;
}

header .g-nav-menu {
    display: flex;
    width: 710px;
    margin: 0 auto;
    justify-content: space-around;
    font-size: 14px;
    align-items: center;
    font-weight: bold;
}

/* fv */
#fv {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
#fv .fv_box {
    position: absolute;
    width: 1150px;
    z-index: 100;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#fv .fv_box .fv_img {
  position: absolute;
  width: 250px;
  top: -110px;
  left: -10px;
}
#fv h1,#fv p {
  color: #fff;
  text-shadow: 2px 1px 8px #1B9F20;
}
#fv h1 {
  font-size: 50px;
}
#fv p {
  font-size: 25px;
  font-weight: bold;
  margin-top: 10px;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

#message {
  background: #F8FFEE;
  position: relative;
}
#message::after {
  content: '';
  display: inline-block;
  width: -webkit-fill-available;
  height: 160px;
  background-size: contain;
  vertical-align: middle;
  top: 100px;
  left: 14px;
  transform: translateY(-50%);
  position: absolute;
  background-image: url(../img/message.png);
}
#message .inner_box p {
  line-height: 1.9;
}
#message .sign_img {
  width: 400px;
  margin: 20px 0 0 auto;
}
#about {
  position: relative;
}
#about::after {
  content: '';
  display: inline-block;
  width: -webkit-fill-available;
  height: 150px;
  background-size: contain;
  vertical-align: middle;
  top: 100px;
  left: 14px;
  transform: translateY(-50%);
  position: absolute;
  background-image: url(../img/about.png);
}
#about::before {
  content: '';
  display: inline-block;
  width: 108px;
  height: 120px;
  background-size: contain;
  vertical-align: middle;
  bottom: 0;
  right: 0;
  position: absolute;
  background-image: url(../img/opacity_logo.png);
}
#about p {
  line-height: 1.9;
}
#about .about_box {
  display: flex;
  margin-top: 40px;
}
#about .about_box .about_text {
  flex: 6;
}
#about .about_box .about_img {
  flex: 4;
  margin-right: 20px;
}
#service {
  background: #F8FFEE;
  position: relative;
}
.h2_under {
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}
#service h2 {
  margin-bottom: 20px;
}
#service::after {
  content: '';
  display: inline-block;
  width: -webkit-fill-available;
  height: 155px;
  background-size: contain;
  vertical-align: middle;
  top: 100px;
  left: 14px;
  transform: translateY(-50%);
  position: absolute;
  background-image: url(../img/service.png);
}
#service::before {
  content: '';
  display: inline-block;
  width: 158px;
  height: 190px;
  background-size: contain;
  vertical-align: middle;
  bottom: 0;
  left: 0;
  position: absolute;
  background-image: url(../img/opacity_logo.png);
}
#service .service_title {
  text-align: center;
  margin: 50px auto 20px;
  color: #7FAE55;
  font-weight: bold;
  font-size: 20px;
}
#service .service_box {
  width: 100%;
  display: flex;
  margin: auto;
  justify-content: space-around;
}

#service div.service_s_box {
  height: auto;
  margin-right: 10px;
  margin-left: 10px;
  background-color: #fff;
  padding: 30px;
  text-indent: 0!important;
  width: 44%;
  z-index: 1;
}
#service .service_box .service_s_box h3 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}

#service div.service_s_box p {
  line-height: 1.9;
}
#service div.service_s_box div {
  margin: 10px auto;
}
#service .slick-prev:before,
#service .slick-next:before {
  color: black;
}

#service .slick-dots {
  left: 50%;
  transform: translateX(-50%);
}
#service .service_box .service_s_box a {
  color: #659200;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  padding: 10px 17px;
  border-radius: 50px;
  background: #fff;
  border: solid 2px #659200;
  margin: 20px auto 0;
  display: block;
  width: 90%;
  position: relative;
}
#service .service_box .service_s_box a::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: contain;
  vertical-align: middle;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  position: absolute;
  background-image: url(../img/service_btn_img.png);
}
#company {
  position: relative;
}
#company::after {
  content: '';
  display: inline-block;
  width: -webkit-fill-available;
  height: 165px;
  background-size: contain;
  vertical-align: middle;
  top: 100px;
  left: 14px;
  transform: translateY(-50%);
  position: absolute;
  background-image: url(../img/company.png);
}
#company::before {
  content: '';
  display: inline-block;
  width: 200px;
  height: 220px;
  background-size: contain;
  vertical-align: middle;
  top: 0;
  right: 0;
  position: absolute;
  background-image: url(../img/opacity_logo.png);
}
#company table {
  width: 100%;
  padding: 40px;
}
#company tbody {
  width: 70%;
  margin: 0 auto;
  display: block;
}
#company tbody tr {
  border-bottom: 1px solid #BDBDBD;
  display: block;
}
#company tbody tr td:first-child {
  width: 200px;
  vertical-align: baseline;
}
#company tbody tr td {
  padding: 20px;
  font-size: 18px;
  font-weight: 500;
}
#company tbody tr td a {
  font-weight: 500;
}
#company .certification_box {
  width: 70%;
  margin: 0 auto;
  padding: 0 50px;
  font-size: 15px;
}
#company .certification_box .certification_s_box {
  display: flex;
  align-items: center;  
  margin-top: 20px;
  gap: 20px;
}
#company .certification_box .certification_s_box div {
  display: flex;
  justify-content: space-around;
  gap: 10px;
}
#company .certification_box .certification_s_box div img {
  width: 60px;
}
#company .certification_box .certification_s_box p {
  font-size: 14px;
}
#recruit {
  background: #F8FFEE;
  position: relative;
}
#recruit::after {
  content: '';
  display: inline-block;
  width: -webkit-fill-available;
  height: 130px;
  background-size: contain;
  vertical-align: middle;
  top: 100px;
  left: 14px;
  transform: translateY(-50%);
  position: absolute;
  background-image: url(../img/recruit.png);
}
#news {
  position: relative;
}
#news::after {
  content: '';
  display: inline-block;
  width: -webkit-fill-available;
  height: 130px;
  background-size: contain;
  vertical-align: middle;
  top: 100px;
  left: 14px;
  transform: translateY(-50%);
  position: absolute;
  background-image: url(../img/news.png);
}
#news a.news_btn,
#news_detail a.news_btn,
#news_list a.news_btn {
  color: #659200;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  padding: 10px 17px;
  border-radius: 50px;
  background: #fff;
  border: solid 2px #659200;
  margin: 40px auto 0;
  display: block;
  width: 200px;
}
#data-container #loading-text {
  text-align: center;
}
#data-container div a{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #C3DBA3;
  width: 80%;
  margin: 0 auto 15px;
  padding-bottom: 10px;
}
#data-container div a .news_text p {
  background: #C3DBA3;
  padding: 2px 8px;
  border-radius: 30px;
  width: fit-content;
  display: block;
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 5px;
}
#detail-container h3 {
  font-weight: 600;
}
#news_detail .inner_box {
  width: 60%;
}
#detail-container .news_detail .news_text p {
  background: #C3DBA3;
  padding: 2px 8px;
  border-radius: 30px;
  width: fit-content;
  display: block;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 5px;
}
#detail-container #loading-text {
  text-align: center;
}
#detail-container .news_contents {
  margin-top: 50px;
}
#detail-container .news_detail {
  display: flex;
  justify-content: space-between;
}
#form {
  background: #F8FFEE;
  position: relative;
}
#form::after {
  content: '';
  display: inline-block;
  width: -webkit-fill-available;
  height: 130px;
  background-size: contain;
  vertical-align: middle;
  top: 100px;
  left: 14px;
  transform: translateY(-50%);
  position: absolute;
  background-image: url(../img/contact.png);
}
#form .inner_box {
  width: 50%;
}
/* footer */
footer {
    background: #7FAE55;
    padding: 65px 0 40px;
  }
footer .footer-box {
    display: flex;
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    justify-content: space-between;
    align-items: end;
}
footer .footer-txt {
    font-size: 36px;
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 20px;
}
footer .footer-logo {
    width: 340px;
}
footer .footer-link-box {
    display: flex;
    width: 490px;
    justify-content: space-between;
}
footer .footer-link-box ul.footer-s-link {
  font-family: "Noto Sans JP", sans-serif;
}
footer .footer-link-box ul.footer-s-link li {
    font-size: 15px;
    margin-bottom: 10px;
}
footer .footer-link-box ul.footer-s-link a {
    margin-top: 0;
    text-align: left;
    color: #fff;
    font-weight: bold;
}
footer small {
    text-align: center;
    color: #fff;
    display: block;
    margin-top: 60px;
}

@media screen and (max-width: 750px){
  #company .certification_box .certification_s_box {
    display: block;
  }
  #company .certification_box .certification_s_box div{
    width: 50%;
    margin: 0px auto 10px;
  }
  #company .certification_box {
    width: 90%;
    padding: 0;
  }
    section {
        padding: 70px 0;
        overflow: hidden;
    }
    .Forpc {
        display: none!important;
    }
    .Forsp {
        display: block!important;
    }
    .header-sp {
        position: fixed;
        background: rgba(255, 255, 255, 0.699);
        box-shadow: inherit;
      }
    .header-sp .cta_area {
        box-shadow: none;
    }
    .header-sp .cta_area .cta_area_box div a {
        width: 90%;
    }
      .header-sp .header__inner {
        width: 100%;
        position: relative;
        z-index: 10;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #ffffff57;
        padding: 5px 10px 2px;
      }
      .header-sp .header-logo {
        width: 170px;
      }
      .header-sp .header__menu {
        position: fixed;
        z-index: 50000;
        top: 50px;
        background: #fff;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease;
        right: 0;
      }
      .header-sp .header__inner.active .header__menu {
        opacity: 1;
        visibility: visible;
        position: absolute;
        top: 0;
        z-index: -1;
        height: fit-content;
        padding: 5rem 10px;
        width: 80%;
      }
      .header-sp .menu__item {
        border-bottom: 1px solid #7FAE55;
      }
      .header-sp .menu__link {
        display: block;
        padding: 13px 20px;
        color: #7FAE55;
        font-size: 15px;
        font-weight: bold;
      }
      .header-sp .header__menu-btn {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: end;
        width: 30px;
        height: 38px;
        cursor: pointer;
      }
      .header-sp .header__menu-btn span:nth-child(-n + 3) {
        position: absolute;
        display: block;
        width: 30px;
        height: 2px;
        background: #7FAE55;
      }
      .header-sp .header__menu-btn span:nth-child(1) {
        top: 10px;
        transition: all 0.2s ease;
      }
      .header-sp .header__inner.active .header__menu-btn span:nth-child(1) {
        top: 20px;
        transform: rotate(45deg);
      }
      .header-sp .header__menu-btn span:nth-child(2) {
        top: 18px;
        transition: opacity 0.2s ease;
      }
      .header-sp .header__inner.active .header__menu-btn span:nth-child(2) {
        opacity: 0;
      }
      .header-sp .header__menu-btn span:nth-child(3) {
        top: 26px;
        transition: all 0.2s ease;
      }
      .header-sp .header__inner.active .header__menu-btn span:nth-child(3) {
        top: 20px;
        transform: rotate(-45deg);
      }
      .header-sp .header__menu-btn span:nth-child(4) {
        font-size: 10px;
        color: #f5675b;
      }
      .inner_box {
        width: 90%;
        margin: 0 auto;
      }
      .cta_area .cta_area_box {
        display: block;
        width: 100%;
      }
      .cta_area .cta_area_box .consultation_box a {
        margin-bottom: 20px;
        background: #FD6832;
        border: double 5px #ffffff;
        width: 90%!important;
        padding: 10px 17px;
        border-radius: 50px;
        color: #fff;
        display: block;
        margin: 0 auto;
      }
      .cta_area .cta_area_box h3 {
        font-size: 15px;
      }
      h2 {
        font-size: 25px;
      }
      h2 span {
        font-size: 15px;
      }
    .header-cta {
        text-align: center;
    }
    .header-cta .consultation_box a {
        background: #FD6832;
    }
    .header-cta .freelance_box {
        background: #fff;
        border: 2px solid #7FAE55;
        width: 90%;
        margin: 20px auto 0;
        border-radius: 50px;
        padding: 10px 0;
    }
    .header-cta .freelance_box a {
        color: #7FAE55!important;
        padding: 5px 0!important;
        margin: 0!important;
        text-align: center!important;
        width: 100%!important;
    }
    #fv .fv_box {
      width: 90%;
    }
    #fv .fv_box .fv_img {
      width: 130px;
      top: -50px;
    }
    #fv h1 {
      font-size: 30px;
    }
    #fv p {
      font-size: 20px;
    }
    #fv .fv_box {
      top: 210px;
    }
    #message::after,
    #about::after,
    #service::after,
    #company::after,
    #recruit::after,
    #form::after,
    #news::after {
      height: 50px;
      top: 50px;
      width: 200px;
    }
    #about::after {
      height: 40px;
    }
    #company::after {
      height: 60px;
    }
    #message .sign_img {
      width: 220px;
    }
    h2 {
      font-size: 23px;
    }
    #about .about_box,
    #service .service_box,
    footer .footer-box,
    footer .footer-link-box {
      display: grid;
    }
    footer .footer-link-box {
      width: 95%;
      margin: 0 auto 30px;
      display: block;
      padding: 20px 10px;
    }
    #about .about_box .about_img {
      margin: 0 auto;
    }
    .readmore {
      position: relative;
      margin: 50px auto 0;
      padding: 0 0 75px;
    }
    
    .readmore label {
      position: absolute;
      display: table;
      left: 50%;
      bottom: 0;
      margin: 0 auto;
      width: 200px;
      padding: 10px 0;
      color: #fff;
      text-align: center;
      border-radius: 5px;
      background-color: #659200;
      transform: translateX(-50%);
      cursor: pointer;
      z-index: 1;
    }
    .readmore label::before{
      content: '続きを見る';
    }
    
    .readmore input[type="checkbox"]:checked ~ label::before {
      content: '元に戻す';
    }
    
    .readmore input[type="checkbox"]{
      display: none!important;
    }
    
    .readmore-content {
      position: relative;
      height: 200px;
      overflow: hidden;
    }
    
    .readmore input[type="checkbox"]:checked ~ .readmore-content {
      height: auto;
    }
    .readmore-content::before {
      position: absolute;
      display: block;
      content: "";
      bottom: 0;
      left: 0;
      width: 100%;
      height: 75px;
      background: linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, #fff 100%);
    }
    
    .readmore input[type="checkbox"]:checked ~ .readmore-content::before {
      display: none;
    }
    #service div.service_s_box {
      width: 100%;
      margin: 0 auto 30px;
    }
    #service div.service_s_box:last-child {
      margin-bottom: 0;
    }
    #service .service_box .service_s_box a {
      width: 90%;
    }
    #service::before {
      width: 108px;
      height: 120px;
    }
    #company::before {
      width: 70px;
      height: 80px;
    }
    #company table {
      padding: 20px;
    }
    #company tbody {
      width: 100%;

    }
    #company tbody tr td:first-child {
      width: 100px;
    }
    #company tbody tr td {
      font-size: 15px;
      padding: 10px;
    }
    #form .inner_box {
      width: 90%;
    }
    #data-container div a {
      width: 100%;
    }
    #news_detail .inner_box {
      width: 90%;
    }
    #detail-container .news_detail,
    #data-container div a {
      display: block;
    }
    #news h3,
    #data-container h3,
    #detail-conteiner h3 {
      font-size: 16px;
    }
}