@charset "UTF-8";
main {
  padding: 0 0 80px;
}
@media screen and (min-width: 1024px) {
  main {
    padding-bottom: 120px;
  }
}

.pageTtl {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .pageTtl .inner {
    max-width: 1120px;
  }
}
@media screen and (min-width: 1024px) {
  .pageTtl {
    padding: 32px 0;
    margin-bottom: 80px;
  }
}

.articleHeader {
  margin-bottom: 80px;
}
.articleHeader__ttl {
  width: 100%;
  height: 60px;
  margin-bottom: 30px;
  border-radius: 8px;
  background-color: #3A9927;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.articleHeader__nav .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px 12px;
}
.articleHeader__nav .list a {
  width: 100%;
  height: 64px;
  background-color: #F3F5F6;
  border-radius: 8px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.16);
  color: #3A9927;
  font-size: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.articleHeader__nav .list a.current {
  background-color: #3A9927;
  color: #fff;
  font-weight: 700;
}
.articleHeader__nav .list a:hover {
  background-color: #E9EDEF;
  font-weight: 500;
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .articleHeader__nav .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .articleHeader__nav .list a {
    width: 176px;
  }
}
@media screen and (min-width: 1024px) {
  .articleHeader {
    margin-bottom: 100px;
  }
  .articleHeader__ttl {
    height: 80px;
    margin-bottom: 40px;
    font-size: 32px;
  }
  .articleHeader__nav .list {
    grid-gap: 12px;
  }
}

.section:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .section:not(:last-child) {
    margin-bottom: 110px;
  }
}
.section__ttl {
  padding-bottom: 1em;
  border-bottom: 1px solid #DBDBDB;
  color: #3A9927;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.section__ttl::before {
  content: "・";
}
@media screen and (min-width: 1024px) {
  .section__ttl {
    font-size: 24px;
  }
}
.section__blk {
  padding: 24px 0;
  border-bottom: 1px solid #DBDBDB;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 20px;
}
.section__blk .txtWrap {
  width: 100%;
}
.section__blk .txtWrap .ttl {
  margin-bottom: 1.09em;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8182;
}
.section__blk .txtWrap .txt {
  font-size: 14px;
  letter-spacing: 0.032em;
  line-height: 1.7778;
}
.section__blk .img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .section__blk {
    flex-direction: row;
    align-items: center;
  }
  .section__blk .img {
    width: 34%;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px) {
  .section__blk {
    padding: 45px 0;
    grid-gap: 96px;
  }
  .section__blk .txtWrap .ttl {
    font-size: 22px;
  }
  .section__blk .txtWrap .txt {
    font-size: 18px;
  }
}













/*add240628*/


.sectionBody .navBlk__list {
  display: grid;
  grid-gap: 16px;
  justify-content: center;
margin-top:90px;
}
.sectionBody .navBlk a {
  width: 248px;
  height: 46px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sectionBody .navBlk a::after {
  content: "";
  width: 28px;
  height: 28px;
  margin: auto 0;
  background: url(../re_img/common/icon_arrow-circle.svg) center/contain no-repeat;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
}
.sectionBody .navBlk a.environment {
  background-color: #3A9927;
}
.sectionBody .navBlk a.society {
  background-color: #0D64AE;
}
.sectionBody .navBlk a.governance {
  background-color: #830025;
}


  .sectionBody > .inner {
    width: calc(100% - 48px);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

@media screen and (min-width: 769px) {
  .sectionBody > .inner {
    max-width: 928px;
  }
  .sectionBody .navBlk__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .sectionBody .navBlk__list a {
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .sectionBody .navBlk__list {
    grid-template-columns: repeat(3, 248px);
    justify-content: space-between;
  }
  .sectionBody .navBlk__list a {
    width: 100%;
    height: 64px;
  }
}