@charset "UTF-8";

.news-blc {
  position: relative;
}

.news-blc .news-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-blc .news-cont > .ttl-blc {
  min-width: 300px;
  width: 30%;
  line-height: 1.2;
  font-size: 180%;
  font-weight: 600;
  color: #1a5b27;
}

.news-blc .news-cont > .ttl-blc > .sub {
  line-height: 1;
  font-size: 50%;
  font-weight: lighter;
  color: #1d1d1f;
}

.news-blc .news-cont > .list-blc {
  width: 69%;
}

.news-blc .news-cont > .list-blc > a {
  text-decoration: none;
}

.news-blc .news-cont > .list-blc > a > .list {
  display: none;
  justify-content: flex-end;
  flex-wrap: wrap;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.news-blc .news-cont > .list-blc > a > .list:nth-child(1) , .news-blc .news-cont > .list-blc > a > .list:nth-child(2) , .news-blc .news-cont > .list-blc > a > .list:nth-child(3) {
  display: flex;
  height: auto;
  opacity: 1;
  visibility: visible;
}

.news-blc .news-cont > .list-blc > a > .list > dt,
.news-blc .news-cont > .list-blc > a > .list > dd {
  /* font-weight: lighter; */
  border-bottom: 1px solid #e0e4e7;
  padding: 20px 5px;
  box-sizing: border-box;
}

.news-blc .news-cont > .list-blc > a > .list > dt {
  width: 200px;
  font-size: 90%;
  color: #86868b;
  font-weight: lighter;
  letter-spacing: .8px;
}

.news-blc .news-cont > .list-blc > a > .list > dd {
  width: calc(100% - 220px);
}

@media screen and (max-width: 1200px) {
  .news-blc .news-cont > .ttl-blc {
    min-width: 150px;
    width: 20%;
  }
  .news-blc .news-cont > .list-blc {
    width: 79%;
  }
}

@media screen and (max-width: 1000px) {
  .news-blc .news-cont > .list-blc > a > .list > dt,
  .news-blc .news-cont > .list-blc > a > .list > dd {
    padding: 10px 5px;
  }
  .news-blc .news-cont > .list-blc > a > .list > dt {
    width: 150px;
  }
  .news-blc .news-cont > .list-blc > a > .list > dd {
    width: calc(100% - 170px);
  }
}

@media screen and (max-width: 767px) {
  .news-blc .news-cont > .ttl-blc {
    min-width: 100px;
    width: 15%;
  }
  .news-blc .news-cont > .list-blc {
    width: 84%;
  }
  .news-blc .news-cont > .list-blc > a > .list > dt {
    width: 100px;
  }
  .news-blc .news-cont > .list-blc > a > .list > dd {
    width: calc(100% - 120px);
  }
}

@media screen and (max-width: 640px) {
  .news-blc .news-cont {
    flex-wrap: wrap;
  }
  .news-blc .news-cont > .ttl-blc {
    width: 100%;
    margin-bottom: 15px;
  }
  .news-blc .news-cont > .list-blc {
    width: 100%;
  }
  .news-blc .news-cont > .list-blc > a > .list > dt {
    width: 100px;
  }
  .news-blc .news-cont > .list-blc > a > .list > dd {
    width: calc(100% - 120px);
  }
}

@media screen and (max-width: 480px) {
  .news-blc .news-cont > .list-blc > a > .list > dt {
    width: 100%;
    border-bottom: none;
  }
  .news-blc .news-cont > .list-blc > a > .list > dd {
    width: 100%;
    padding-top: 0;
  }
}

.about-blc,
.recruit-blc {
  position: relative;
}

.about-blc {
  background-image: url('../img/top/bg-about.png');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 80px 0;
}

.recruit-blc {
  padding: 80px 4%;
}

.about-blc > .box,
.recruit-blc > .box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding-bottom: 60px;
}

.about-blc > .box:nth-last-child(1),
.recruit-blc > .box:nth-last-child(1) {
  padding-bottom: 0;
}

.about-blc > .box > .img,
.about-blc > .box > .cont,
.recruit-blc > .box > .img,
.recruit-blc > .box > .cont {
  box-sizing: border-box;
}

.about-blc > .box > .img,
.recruit-blc > .box > .img {
  width: 55%;
  min-height: 30vw;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.about-blc > .box > .cont,
.recruit-blc > .box > .cont {
  width: 45%;
  padding: 0 2%;
}

.about-blc > .box:nth-child(2n+2) > .img,
.recruit-blc > .box:nth-child(2n+2) > .img {
  order: 2;
}

.about-blc > .box:nth-child(2n+2) > .txt,
.recruit-blc > .box:nth-child(2n+2) > .txt {
  order: 1;
}

@media screen and (max-width: 1000px) {
  .about-blc > .box,
  .recruit-blc > .box {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .about-blc {
    padding: 40px 0;
  }
  .recruit-blc {
    padding: 40px 4%;
  }
  .about-blc > .box,
  .recruit-blc > .box {
    display: block;
    padding-bottom: 20px;
  }
  .about-blc > .box > .img,
  .recruit-blc > .box > .img {
    width: 100%;
    height: 55vw;
    min-height: 200px;
    margin-bottom: 20px;
  }
  .about-blc > .box > .cont,
  .recruit-blc > .box > .cont {
    width: 100%;
  }
}