@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Caveat&display=swap");
img {
  height: auto;
  display: block;
}

html {
  scroll-behavior: smooth;
}

/* 共通
---------------------------------------------------------- */
figcaption {
  counter-reset: #1E1E1E;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  figcaption figcaption {
    font-size: 1.4rem;
  }
}

/* head-image
---------------------------------------------------------- */
.head-image {
  background-image: url(/kankyo/common/img/head-image.jpg);
  background-size: cover;
  background-position: center 60%;
  height: 150px;
}
@media screen and (min-width: 768px) {
  .head-image {
    height: 200px;
  }
}
.head-image h2 {
  font-size: 3rem;
  padding-top: 3em;
  font-weight: 900;
  color: #fff;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.65);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .head-image h2 {
    padding-top: 1.8em;
    font-size: 5rem;
  }
}

/* news
---------------------------------------------------------- */
.news {
  padding: 40px 15px;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 60px;
  border-top: 10px solid #E8F7DA;
  border-bottom: 10px solid #E8F7DA;
}
@media screen and (min-width: 768px) {
  .news {
    padding: 60px 20px;
  }
}

.news-info > * {
  display: inline-block;
  margin-right: 0.8em;
}

/* news_detail
---------------------------------------------------------- */
.l-article .article-ttl {
  color: #18a12f;
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 1em;
  border-bottom: 1px solid #afafaf;
}
@media screen and (min-width: 768px) {
  .l-article .article-ttl {
    font-size: 3rem;
  }
}
.l-article .news-section {
  padding: 30px 0;
}
.l-article h3 {
  color: #18a12f;
  font-weight: 500;
  padding-bottom: 1em;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .l-article h3 {
    font-size: 2.4rem;
  }
}
.l-article p {
  font-size: 1.5rem;
  line-height: 2;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .l-article p {
    font-size: 1.6rem;
  }
}
.l-article figure {
  text-align: center;
}

/* layout02,03 */
.l-img,
.r-img {
  display: grid;
  gap: 1em;
}
@media screen and (min-width: 768px) {
  .l-img,
  .r-img {
    grid-template-columns: auto auto;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}

/* layout04,05 */
.c-img figure {
  padding: 20px 0;
  max-width: 900px;
  margin: 0 auto;
}

.c-img figure:first-of-type {
  padding-top: 40px;
}

/* layout06 */
.thumb-img {
  padding: 20px 0;
  display: grid;
  grid-template-columns: auto auto;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

/* layout07 */
.file {
  padding: 0 0 0 16px;
  margin-bottom: 1em;
  font-weight: 500;
  position: relative;
}
.file::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: 8px solid #18a12f;
}
.file::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  margin-left: 8px;
  background-image: url(/kankyo/common/img/icon_file.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

/* news_detail　768px以下
========================================= */