@charset "utf-8";
/*==================================================
cmn
==================================================*/
/* ローディング全体 */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* 背景色（任意） */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
/* ローディングが終了した時に消す */
#loading.loaded {
  opacity: 0;
  visibility: hidden;
}
/* シンプルな丸いスピナー */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ddd;
  border-top-color: #4CAF50; /* 緑系に変更可能 */
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.load {
  opacity: 0;
  transition: 0.6s;
}
.load.loaded {
  opacity: 1;
}
body {
  background: #fff;
  color: #333;
  font-size: 1.8rem;
  line-height: 2em;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}
.font-en {
  font-family: "Averia Serif Libre", serif;
  font-weight: 400;
  font-style: normal;
}
.font-mincho {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.wrap-f {
  padding: 0 6rem;
}
.wrap {
  padding: 0;
  margin: 0 auto;
  box-shadow: none;
  max-width: 120rem;
  width: 100%;
  z-index: 1;
  position: relative;
}
.wrap-m {
  padding: 0;
  margin: 0 auto;
  box-shadow: none;
  max-width: 100rem;
  width: 100%;
  z-index: 1;
  position: relative;
}
.wrap-s {
  padding: 0;
  margin: 0 auto;
  box-shadow: none;
  max-width: 90rem;
  width: 100%;
  z-index: 1;
  position: relative;
}
/*==================================================
head
==================================================*/
.site-header::after {
  content: "";
  display: block;
  clear: both;
  z-index: 999;
}
.site-header {
  width: 100%;
  z-index: 300;
  padding: 0 0 0 4rem;
  transition: .4s;
  position: absolute;
  z-index: 900;
}
.site-header .head-box {
  height: 14rem;
}
.site-header .site-title img {
  width: 12rem;
}
.site-header .site-title .txt {
  display: block;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1em;
  margin-top: 1.2rem;
  font-size: 87.5%;
}
.button-toggle {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 998;
  line-height: 0;
  cursor: pointer;
}
.animsition {
  position: relative;
  width: 100%;
}
.menu_btn {
  width: 10rem;
  height: 10rem;
  position: relative;
  border-radius: 100%;
  vertical-align: middle;
  background: #008949;
}
.menu_btn .hamburger {
  width: 2.6rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 900;
  display: block;
  margin-left: auto;
}
.menu_btn .hamburger_bar {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  background: #fff;
  transition: 0.1s;
}
.menu_btn .hamburger_bar:nth-child(1) {
  top: 0;
}
.menu_btn .hamburger_bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu_btn .hamburger_bar:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}
.sb-active .menu_btn .hamburger .hamburger_bar:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}
.sb-active .menu_btn .hamburger .hamburger_bar:nth-child(2) {
  opacity: 0;
}
.sb-active .menu_btn .hamburger .hamburger_bar:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}
#sb-site, .site-header {
  transform: translate(0) !important;
}
.sb-slidebar {
  width: 100%;
  background: #009b5b;
  color: #fff;
  text-align: center;
  z-index: 901;
  display: block;
  transform: translateX(0);
  transition: 0s;
  opacity: 0;
  visibility: hidden;
}
.sb-slidebar.sb-active {
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
.sb-slidebar .out {
  display: table;
  height: 100vh;
  width: 100%;
}
.sb-slidebar .inner {
  display: table-cell;
  vertical-align: middle;
}
.sb-slidebar .gnavi li {
  margin-bottom: 2rem;
  width: 50%;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 2em;
  letter-spacing: 0.1em;
}
.sb-slidebar .gnavi li a {
  display: block;
  padding: 1rem;
}
/*==================================================
foot
==================================================*/
.site-footer {
  text-align: center;
}
.site-footer section {
  padding-bottom: 0;
  position: relative;
}
.site-footer .site-title {
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 8rem;
}
.site-footer .site-title img {
  width: 15rem;
  margin-right: 2rem;
}
.sdgs-block {
  justify-content: center;
}
.sdgs-block .sdgs-box {
  margin: 0;
}
.sdgs-block .sdgs-box li {
  max-width: 16rem;
}
.sdgs-block .txt-box {
  text-align: left;
  margin-left: 4rem;
}
.sdgs-block .txt-box p {
  font-size: 112.5%;
  line-height: 2em;
}
.site-footer .bg01 {
  background: url(../img/cmn/bg_foot01.svg) no-repeat bottom center;
  background-size: 120rem;
  padding-bottom: 10rem;
  position: relative;
}
.site-footer .bg02 {
  background: url(../img/cmn/bg_green.jpg) repeat;
  background-size: auto;
  padding: 5rem 0 3rem;
}
.fnavi ul {
  justify-content: center;
  font-size: 87.5%;
}
.fnavi ul li:after {
  content: "｜";
  padding: 0 1rem;
}
.fnavi ul li:last-child:after {
  display: none;
}
.site-footer address {
  font-style: normal;
  font-size: 80%;
  margin-top: 3rem;
}
.site-footer .g {
  position: absolute;
}
.site-footer .g02 {
  width: 31.2rem;
  top: 0;
  right: 50%;
  transform: translateX(-54rem);
}
.site-footer .g03 {
  width: 46.2rem;
  top: 0;
  left: 50%;
  transform: translateX(52rem);
}
.site-footer .g04 {
  width: 11.3rem;
  bottom: -4rem;
  right: 50%;
  transform: translateX(-63rem);
}
.site-footer .g05 {
  width: 11.3rem;
  bottom: -4rem;
  left: 50%;
  transform: translateX(63rem);
}
/*==================================================
content
==================================================*/
span.pin {
  position: relative;
  top: -80px;
  display: block;
}
section {
  padding: 15rem 0;
  position: relative;
}
.tit01 {
  text-align: center;
  margin-bottom: 8rem;
}
.tit01 .icon {
  display: block;
  margin: 0 auto 6rem;
  max-width: 40.8rem;
  height: 17.5rem;
  background: url("../img/cmn/tit_icon.svg") no-repeat center;
  background-size: contain;
  position: relative;
}
.tit01 .icon .font-en {
  line-height: 1em;
  font-size: 3.4rem;
  color: #009b5b;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.tit01 .font-jp .font-en {
  font-size: 120%;
  vertical-align: -0.05em;
}
.tit01 .font-jp {
  display: block;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.8em;
  letter-spacing: 0.1em;
}
.tit02 {
  font-size: 10rem;
  line-height: 1.8em;
}
.bg-green {
  background: #009b5b;
  color: #fff;
}
.bg-gray-l {
  background: #f8f6ef;
}
.txt-green {
  color: #009b5b;
}
.txt-white {
  color: #fff;
}
.pad-t00 {
  padding-top: 0 !important;
}
.pad-t10 {
  padding-top: 10rem !important;
}
.pad-b00 {
  padding-bottom: 0 !important;
}
.pad-b10 {
  padding-bottom: 10rem !important;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left !important;
}
.txt-right {
  text-align: right !important;
}
/*カラム*/
.col-re {
  flex-direction: row-reverse;
}
.col-mid {
  align-items: center;
}
.col-bottom {
  align-items: flex-end;
}
/*ボタン*/
/*youtube*/
.youtube-link {
  cursor: pointer;
}
.youtube-link:hover {
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  opacity: 0.6;
}
/*google map*/
.gmap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg-side01 {
  position: absolute;
  top: 10rem;
  right: -5rem;
  width: 27.1rem;
}
.bg-side02 {
  position: absolute;
  top: 35rem;
  left: -5rem;
  width: 28rem;
}
/*==================================================
index
==================================================*/
.main-sec {
  padding: 6rem 0 0;
  overflow: hidden;
  background: #009b5b;
}
.main-sec .item {
  position: relative;
  z-index: 2;
  padding-bottom: 15rem;
}
.main-sec .circle-box {
  max-width: 86rem;
  width: 100%;
  height: 86rem;
  margin: 0 auto;
  background: url("../img/top/main_circle_bg.png") no-repeat center;
  background-size: 95%;
  display: table;
  position: relative;
}
.main-sec .circle-box .circle-txt {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.main-sec .circle-box .circle-txt img {
  animation: 60s linear infinite rotation;
  display: block;
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.main-sec .circle-box .co2-main-txt {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  z-index: 2;
  position: relative;
}
.main-sec .circle-box .co2-main-txt h2 {
  font-weight: bold;
  font-size: 8rem;
  line-height: 1.57em;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
  margin-top: 3rem;
}
.co2-main-txt {
  text-align: center;
}
.co2-main-txt dl {
  margin-bottom: 1rem;
}
.co2-main-txt dt {
  font-size: 2.5rem;
  line-height: 1em;
  background: #009b5b;
  color: #fff;
  text-align: center;
  max-width: 24rem;
  width: 100%;
  margin: 0 auto;
  border-radius: 100px;
  padding: 1.5rem 1rem;
  margin-bottom: 1rem;
}
.co2-main-txt dt .font-en {
  font-size: 128%;
  vertical-align: -0.05em;
  margin-right: 0.4rem;
}
sub {
  font-size: 80%;
}
.co2-main-txt dd {
  font-size: 9rem;
  line-height: 1em;
}
.co2-txt {
  color: #009b5b;
}
.co2-txt .font-jp {
  font-size: 40%;
  font-weight: 700;
  margin-right: 0.5rem;
  vertical-align: 0.1em;
}
.co2-txt sub {
  margin-left: 0.1em;
}
.co2-txt .num {
  letter-spacing: 0;
}
.co2-main-txt .txt-box p {
  font-size: 87.5%;
  line-height: 2em;
  margin-bottom: 0;
}
.co2-main-txt .txt-box p.txt-s {
  font-size: 66.6666667%;
  line-height: 2em;
}
.main-g .g01 {
  max-width: 28rem;
  width: 100%;
  position: absolute;
  top: 22rem;
  right: 50%;
  transform: translateX(-55rem);
}
.main-g .g02 {
  max-width: 47.6rem;
  width: 100%;
  position: absolute;
  top: 16rem;
  left: 50%;
  transform: translateX(35rem);
}
.main-g .g03 {
  max-width: 9.5rem;
  width: 100%;
  position: absolute;
  top: 54rem;
  left: 0;
}
.main-g .g04 {
  max-width: 10rem;
  width: 100%;
  position: absolute;
  top: 57rem;
  right: 0;
}
.main-g .g05 {
  max-width: 27rem;
  width: 100%;
  position: absolute;
  bottom: 0rem;
  right: 50%;
  transform: translateX(-45rem);
}
.main-g .g06 {
  max-width: 24.3rem;
  width: 100%;
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translateX(45rem);
}
.main-sec .bg-white {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}
.about-sec {
  text-align: center;
  padding: 10rem 0 25rem;
  position: relative;
}
.about-sec p {
  font-size: 2.4rem;
  line-height: 3.3em;
  letter-spacing: 0.1em;
}
.sdgs-box {
  justify-content: center;
  margin: 10rem 0 5rem;
}
.sdgs-box li {
  width: 22rem;
  border: 1rem solid #fff;
  margin: 0 1.5rem;
}
.btn-box {
  margin-top: 8rem;
  max-width: 90rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.btn-box a {
  display: block;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  line-height: 1.45em;
  padding: 4rem 1rem;
  border-radius: 200px;
  background-color: #f5dd2e;
  background-image: url("../img/cmn/arrow01.svg");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: auto 66.6666667%;
}
.about-sec .g01 {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  max-width: 130rem;
  width: 100%;
  transform: translateX(-50%);
  z-index: 2;
}
.about-sec .g02 {
  max-width: 10rem;
  width: 100%;
  position: absolute;
  bottom: 25rem;
  left: 0;
}
.about-sec .g03 {
  max-width: 9.5rem;
  width: 100%;
  position: absolute;
  bottom: 25rem;
  right: 0;
}
.about-sec .txt-posi {
  color: rgba(255, 255, 255, 0.1);
  font-size: 11rem;
  letter-spacing: 0;
  line-height: 1em;
}
.about-sec .txt-posi.posi01 {
  writing-mode: vertical-rl;
  position: absolute;
  top: 5rem;
  left: -2rem;
}
.about-sec .txt-posi.posi02 {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: absolute;
  top: 5rem;
  right: -2rem;
}
.about-sec:after {
  content: "";
  width: 100%;
  height: 17rem;
  background: url("../img/cmn/bg_green.jpg") repeat;
  background-size: auto;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.partner-logo-block {
  aspect-ratio: 1 / 1;
  background: #fff;
  position: relative;
}
.partner-logo-block.slide {
  margin: 1rem;
}
/* ▼ ロゴブロック全体（正方形） */
.partner-logo-block {
  position: relative;
  aspect-ratio: 1 / 1; /* 正方形固定 */
  width: 100%;
  overflow: hidden;
}
/* ▼ 内側リンク（中央配置） */
.partner-logo-block .inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center; /* 縦中央 */
  justify-content: center; /* 横中央 */
  padding: 3.5rem;
  box-sizing: border-box;
}
/* ▼ 画像設定 */
.partner-logo-block .inner img {
  width: 100%;
  height: auto;
  object-fit: contain; /* はみ出さない */
  display: block;
}
.slider-logo02 {
  direction: rtl;
}
.achievement-sec .bg-side02 {
  top: 65rem;
}
.achievement-sec .wrap {
  max-width: 130rem;
  width: 100%;
}
.achievement-sec .tit-box {
  width: 23%;
}
.achievement-sec .content-box {
  width: 77%;
}
.achievement-sec .tit-box h2 {
  writing-mode: vertical-lr;
  line-height: 1em;
}
.achievement-sec .tit-box h2 .font-en {
  display: block;
  font-size: 15rem;
  line-height: 1em;
  margin-top: -1rem;
  margin-left: -2rem;
  letter-spacing: 0;
}
.achievement-sec .tit-box h2 .font-jp {
  display: block;
  font-size: 6rem;
  line-height: 1em;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.achievement-block:first-child {
  border-top: 1px solid #ddd;
}
.achievement-block {
  border-bottom: 1px solid #ddd;
  padding: 3rem 0;
}
.achievement-block .content {
  width: 52%;
}
.achievement-block .partner-logo-block {
  width: 30.7%;
}
.achievement-block .partner-logo-block .inner {
  padding: 2rem;
}
.achievement-block .content .tit {
  width: 62%;
}
.post-data {
  line-height: 1em;
  color: #bbbbbb;
}
.achievement-block .content .tit .post-data {
  margin-bottom: 1rem;
}
.achievement-block .content .tit .achievement-tit {
  font-size: 2rem;
  font-weight: 700;
}
.achievement-block .reduction {
  width: 45%;
}
.achievement-block .reduction dt {
  width: 33%;
  position: relative;
  font-weight: 600;
  text-align: center;
}
.achievement-block .reduction dt p {
  text-align: center;
  line-height: 1.2em;
  font-size: 2rem;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.achievement-block .reduction dt p .font-en {
  font-size: 120%;
}
.achievement-block .reduction dd {
  width: 63%;
  font-size: 6rem;
}
.scroll-txt {
  white-space: nowrap;
  margin-bottom: 12rem;
}
.scroll-txt li {
  flex: 0 0 auto;
  white-space: nowrap;
  display: inline-block;
  width: 110%;
  line-height: 0em;
}
.scroll-txt li:nth-child(odd) {
  animation: loop 60s -30s linear infinite;
}
.scroll-txt li:nth-child(even) {
  animation: loop2 60s linear infinite;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.btn-box-s {
  margin-top: 5rem;
  max-width: 44rem;
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.btn-box-s a {
  display: block;
  border: 2px solid #009b5b;
  color: #009b5b;
  font-weight: 700;
  padding: 2rem 1rem;
  border-radius: 100px;
  background-color: #fff;
  background-image: url("../img/cmn/arrow02.svg");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: auto 50%;
}
.btn-box-s.border a {
  background-color: #009b5b;
  border-color: #fff;
  color: #fff;
  background-image: url("../img/cmn/arrow03.svg");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: auto 50%;
}
.btn-box-s.txt-left a {
  padding-left: 4rem;
}
.btn-list {
  justify-content: center;
  margin-top: 10rem;
}
.btn-list li {
  margin: 0 1rem;
}
.faq-box {
  margin-bottom: 2rem;
  background: #fff;
}
.faq-box:last-child {
  margin-bottom: 0;
}
.faq-box .icon {
  width: 8rem;
  height: 8rem;
  background: #009b5b;
  color: #fff;
  text-align: center;
  border-radius: 100%;
  display: table;
  margin-right: 3rem;
  font-size: 3rem;
}
.faq-box .icon.a {
  color: #009b5b;
  border: 2px solid #009b5b;
  background: none;
}
.faq-box .icon .inner {
  display: table-cell;
  vertical-align: middle;
}
.faq-box .txt {
  flex: 1;
  padding-top: 0.5rem;
}
.faq-box .tit {
  padding: 3rem 8.5rem 3rem 3rem;
  cursor: pointer;
  position: relative;
}
.faq-box .tit h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8em;
  letter-spacing: 0.1em;
}
.faq-box .tit .click {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
}
.faq-box .tit .click:before {
  content: "";
  width: 100%;
  height: 0.2rem;
  display: block;
  background: #009b5b;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-box .tit .click:after {
  content: "";
  width: 0.2rem;
  height: 100%;
  display: block;
  background: #009b5b;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s;
}
.faq-box .tit.active .click:after {
  opacity: 0;
}
.faq-box .content {
  padding: 0 8.5rem 6rem 3rem;
  display: none;
}
.post-slider .slide {
  margin-right: 3rem;
  background: #fff;
}
.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}
.post-slider .slick-list {
  padding-right: 20% !important;
  padding-left: 0 !important;
}
.post-slider .slick-prev {
  display: none !important;
}
.post-slider .slick-next {
  width: 12rem;
  height: 12rem;
  right: 20%;
  margin-right: -4.5rem;
  top: 13.3rem;
  background: url(../img/cmn/arrow05.svg) no-repeat center;
  background-size: contain;
  text-indent: -9999px;
  transform: translateY(-50%);
  z-index: 2;
}
.blog-sec .tit02 {
  line-height: 1em;
  margin-left: 10rem;
  margin-bottom: 10rem;
}
.blog-sec .txt-block {
  width: 50rem;
  padding: 0 10rem;
}
.blog-sec .txt-block h3 {
  font-size: 2.4rem;
  line-height: 2.5em;
  letter-spacing: 0.1em;
  margin-bottom: 5rem;
}
.blog-sec .content-block {
  flex: 1;
  min-width: 0;
}
.post-box {
  background: #fff;
}
.post-box .txt-box {
  padding: 4.5rem 3rem 3rem;
}
.post-box .post-tit {
  font-size: 2rem;
  line-height: 1.8em;
  color: #333;
  font-weight: 700;
}
.post-box .txt-box .more {
  color: #009b5b;
  letter-spacing: 0;
  width: 12rem;
  background: url("../img/cmn/arrow04.svg") no-repeat center bottom;
  background-size: contain;
  margin-left: auto;
  margin-top: 2rem;
}
.post-img {
  position: relative;
}
.post-img img {
  width: 100%;
}
.post-img .post-cat {
  position: absolute;
  bottom: -2.2rem;
  left: 1.5rem;
  line-height: 1em;
  z-index: 10;
}
.post-cat {
  letter-spacing: -.4em;
}
.post-cat li {
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1em;
  color: #009b5b;
  background: #f1f7e9;
  border: 1px solid #009b5b;
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 100px;
  margin: 0 0.5rem 0.5rem 0;
  letter-spacing: 0.05rem;
}
.post-cat.link li {
  padding: 0;
  font-size: 1.4rem;
}
.post-cat.link li a {
  display: block;
  padding: 1rem 2rem;
}
.post-tag {
  letter-spacing: -.4em;
}
.post-tag li {
  font-weight: bold;
  line-height: 1em;
  color: #009b5b;
  display: inline-block;
  margin: 0 1.5rem 0.5rem 0;
  letter-spacing: 0.05rem;
  font-size: 1.4rem;
}
.post-tag li:before {
  content: "#";
  margin-right: 0.2rem;
}
.certificate-box {
  border: 2px solid #009b5b;
  padding: 6rem;
  position: relative;
  border-radius: 1.5rem;
}
.certificate-box h2 {
  color: #009b5b;
  font-size: 5rem;
  margin-bottom: 3rem;
}
.certificate-box h2:before {
  content: "";
  display: inline-block;
  width: 6.7rem;
  height: 6rem;
  background: url("../img/cmn/icon_sustainability.svg") no-repeat center;
  background-size: contain;
  vertical-align: middle;
  margin: -0.8rem 2rem 0 0;
}
.certificate-box p {
  font-size: 2.4rem;
  font-weight: 700;
}
.certificate-box .img-box {
  position: absolute;
  right: 4rem;
  top: 50%;
  width: 25rem;
  transform: translateY(-50%);
}
/*==================================================
Partners
==================================================*/
.partner-sec {}
.partner-logo-list {
  justify-content: flex-start;
  margin-left: -0.5%;
  margin-right: -0.5%;
}
.partner-logo-list .partner-logo-block {
  width: 19%;
  margin: 0.5%;
}
.page-partner-logo-list .partner-sec .tit01 {
  margin-bottom: 5rem;
}
.page-partner-logo-list .partner-sec .co2-main-txt dd {
  font-size: 10rem;
}
.page-partner-logo-list {
  position: relative;
}
.page-partner-logo-list .main-g .g01 {
  top: 25rem;
}
.page-partner-logo-list .main-g .g02 {
  top: 20rem;
  transform: translateX(38rem);
}
.page-partner-logo-list .main-g .g03 {
  top: 60rem;
}
.page-partner-logo-list .main-g .g04 {
  top: 63rem;
}
.partner-single-block .logo-box {
  width: 25%;
}
.partner-single-block .partner-logo-block {
  box-shadow: 0.5rem 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}
.partner-single-block h1 {
  margin-top: 2rem;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 87.5%;
  font-weight: bold;
  line-height: 1.8em;
}
.partner-single-block .content-box {
  width: 70%;
}
.partner-single-block .achievement-block .content .tit {
  width: 100%;
}
.partner-single-block .achievement-block .content {
  width: 42%;
}
.partner-single-block .reduction {
  width: 55%;
}
.page-tit-sec {
  padding: 10rem 0 5rem;
  text-align: center;
}
.page-tit-sec .font-en {
  font-size: 10rem;
  line-height: 1em;
  display: block;
}
.page-tit-sec .font-jp {
  display: block;
  font-weight: bold;
  font-size: 87.5%;
  line-height: 2em;
  margin-top: 1rem;
}
.scroll-txt.sub {
  margin: 0;
  margin-top: 10rem;
  margin-bottom: -5rem;
}
/*==================================================
single
==================================================*/
.news-single-sec {
  padding-top: 10rem;
}
.news-single-sec .post-meta {
  margin-bottom: 2rem;
}
.news-single-sec .post-meta .post-cat {
  width: 80%;
}
.news-single-sec .post-meta .post-data {
  width: 20%;
  text-align: right;
}
.news-block .content-box {
  width: 65%;
  position: relative;
}
.news-block .side-box {
  width: 26.6666667%;
}
.entry-title {
  font-size: 3.6rem;
  margin-bottom: 5rem;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.entry-content {
  margin-top: 5rem;
}
.entry-img img {
  width: 100%;
}
.single-box .meta-box {
  font-size: 87.25%;
  justify-content: flex-end;
  margin-top: 5rem;
}
.single-box .meta-box .data {
  margin-left: 3rem;
  line-height: 1.8em;
}
.single-box .meta-box .cat-list li {
  line-height: 1.8em;
}
.single-box .meta-box .cat-list li:after {
  content: ",";
  padding: 0 0.5rem;
}
.single-box .meta-box .cat-list li:last-child:after {
  display: none;
}
.wp-pagenavi {
  clear: both;
  text-align: center;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 80%;
  margin-top: 5rem;
}
.wp-pagenavi a, .wp-pagenavi span {
  text-decoration: none;
  border: 2px solid #009b5b !important;
  padding: 1.2rem 1.4rem !important;
  margin: 2px !important;
  color: #009b5b;
  font-weight: bold;
}
.wp-pagenavi a {
  background: none;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
  background: #009b5b !important;
  border-color: #009b5b !important;
  color: #fff !important;
}
.wp-pagenavi span.current {
  font-weight: bold;
}
.mar-t00 {
  margin-top: 0 !important;
}
.entry-content h2 {
  font-size: 3rem;
  margin: 8rem 0 4rem;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  background: #fff;
  padding: 2.5rem 2.5rem;
  font-weight: bold;
  border-left: 6px solid #009b5b;
}
.entry-content h3 {
  font-size: 2.8rem;
  margin: 6rem 0 3rem;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  border-bottom: 3px solid #ccc;
  padding-bottom: 2rem;
  position: relative;
  font-weight: bold;
}
.entry-content h3:after {
  content: "";
  width: 20%;
  height: 3px;
  background: #009b5b;
  position: absolute;
  bottom: -3px;
  left: 0;
  display: block;
}
.entry-content h4 {
  font-size: 2.6rem;
  margin: 5rem 0 2rem;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.entry-content ul, .entry-content ol {
  margin: 1em 0;
}
.entry-content ul li {
  list-style: disc;
  margin-left: 1.5em;
}
.entry-content ol li {
  list-style: decimal;
  margin-left: 1.5em;
}
.entry-content a {
  text-decoration: underline;
}
.archive-post-box {
  margin-bottom: -4%;
}
.archive-post-box .post-box {
  width: 48%;
  margin-bottom: 4%;
}
.archive-post-box .no-post {
  text-align: center;
  margin: 0 auto 5rem;
}
.entry-bnr-box {
  margin-top: 8rem;
}
.share-btn-box {
  border: 2px solid #009b5b;
  background: #fff;
  border-radius: 1.5rem;
  padding: 5rem;
  margin: 8rem 0;
  text-align: center;
}
.share-btn-box h3 {
  text-align: center;
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 1.8em;
  color: #009b5b;
  margin-bottom: 2rem;
}
.share-btn-box h3:before {
  content: "";
  display: block;
  width: 6.7rem;
  height: 6rem;
  background: url(../img/cmn/icon_sustainability.svg) no-repeat center;
  background-size: contain;
  vertical-align: middle;
  margin: 0 auto 1rem;
}
.share-btn-box .share-list {
  justify-content: center;
}
.share-list li {
  margin: 0 1rem;
  width: 5rem;
	line-height: 0;
}
.share-list li img {
  width: 100%;
	vertical-align: middle;
}
.share-list button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.share-btn-box h4 {
  background: #009b5b;
  color: #fff;
  max-width: 28rem;
  margin: 3rem auto 3rem;
  font-size: 2.2rem;
  border-radius: 100px;
  padding: 1rem;
  position: relative;
}
.share-btn-box h4:after {
  -webkit-transform: translateX(-50%);
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 2rem solid #009b5b;
  bottom: -1.5rem;
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
.share-list-side {
  text-align: center;
  position: fixed;
  bottom:2rem;
  left: 50%;
  z-index: 2;
transform:translateX(-69rem);
	background: #fff;
	padding:2rem 1rem;
	border-radius: 100px;
}
.share-list-side p {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  writing-mode: vertical-lr;
  margin: 0;
	line-height: 1em;
}
.share-list-side li {
  width: 3.2rem;
	height: 3.2rem;
  margin: 0 0 1rem;
}
.share-list-side li a{
	display: block;
}
.share-list-side li:last-child{
	margin-bottom: 0;
}
#toc_container {
  background: #fff;
  padding: 4rem;
  border-radius: 1.5rem;
  width: 90%;
  margin: 5rem auto 8rem;
}
.toc_title {
  text-align: center;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1em;
}
.toc_toggle {
  font-size: 65%;
  background: #f3f3f3;
  color: #999;
  padding: 0.4rem 1rem;
  margin-left: 1rem;
}
.toc_toggle span {
  display: none;
}
#toc_container ul.toc_list {
  margin-top: 2.5rem;
}
#toc_container a {
  text-decoration: none;
	
}
#toc_container ul{
  margin: 0;
	line-height: 1.6em;
}
#toc_container ul li{
	margin-top: 1rem;
}
#toc_container ul ul {
  font-size: 88%;
  margin-left: 0.5rem;
margin-bottom: 1.5rem;
}
#toc_container ul ul ul {
  font-size: 100%;
}
#toc_container ul li {
  list-style: none;
  margin-left: 1em;
  text-indent: -1em;
  font-weight: bold;
	
}
#toc_container ul ul li {
  font-weight: normal;
}
#toc_container ul li:before {
  content: "●";
  font-size: 60%;
  color: #009b5b;
  vertical-align: 0.2rem;
  margin-right: 0.6rem;
}
#toc_container ul ul li:before {
  content: "◎";
  font-size: 60%;
  vertical-align: 0.2rem;
  margin-right: 0.6rem;
  font-weight: bold;
}
.side-block {
  margin-bottom: 5rem;
}
.side-block:last-child {
  margin-bottom: 0;
}
.side-block h2 {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 2em;
  color: #009b5b;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}
.side-block h2:before {
  content: "";
  display: inline-block;
  width: 4.7rem;
  height: 4rem;
  background: url(../img/cmn/icon_sustainability.svg) no-repeat center;
  background-size: contain;
  vertical-align: middle;
  margin: -0.5rem 1.2rem 0 0;
}
.side-post-box:first-child {
  border-top: 1px solid #ddd;
}
.side-post-box {
  padding: 2rem 0;
  border-bottom: 1px solid #ddd;
}
.side-post-box .img-box {
  width: 30%;
}
.side-post-box .txt-box {
  width: 65%;
}
.side-post-box .txt-box h3 {
  font-size: 1.5rem;
  line-height: 1.8em;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.entry-tag-box {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 2.2rem;
  }
  section {
    padding: 10rem 0;
  }
  .wrap, .wrap-m, .wrap-s, .wrap-ss {
    padding: 0 5vw;
  }
  .tit01 {
    margin-bottom: 5rem;
  }
  .tit01 .font-jp {
    display: block;
    font-size: 4.6rem;
    letter-spacing: 0.05em;
  }
  .tit01 .icon {
    max-width: 32rem;
    height: 14.5rem;
    margin-bottom: 4rem;
  }
  .tit01 .icon .font-en {
    font-size: 2.8rem;
  }
  .pad-t10 {
    padding-top: 8rem !important;
  }
  .pad-b10 {
    padding-bottom: 8rem !important;
  }
  /*==================================================
header
==================================================*/
  .site-header {
    padding: 0 5vw;
  }
  .site-header .head-box {
    height: 12rem;
  }
  .button-toggle {
    margin-right: 0;
  }
  .menu_btn {
    width: 8rem;
    height: 8rem;
    position: relative;
    border-radius: 100%;
    vertical-align: middle;
  }
  .sb-slidebar .gnavi li {
    width: 100%;
  }
  .sb-slidebar .gnavi li {
    margin: 0;
    font-size: 2.8rem;
  }
  .sb-slidebar .gnavi li a {
    padding: 1.5rem;
  }
  .sb-slidebar .inner {
    display: block;
    padding-top: 8rem;
  }
  /*==================================================
footer
==================================================*/
  .site-footer .site-title {
    margin-bottom: 5rem;
  }
  .site-footer .site-title img {
    margin: 0;
  }
  .site-footer .site-title .txt {
    display: block;
    margin-top: 2rem;
  }
  .sdgs-block .txt-box {
    text-align: center;
    margin-top: 3rem;
    margin-left: 0;
  }
  .sdgs-block .txt-box p {
    font-size: 100%;
  }
  .fnavi ul li {
    width: 100%;
    margin-bottom: 1rem;
  }
  .fnavi ul li:last-child {
    margin-bottom: 0;
  }
  .fnavi ul li:after {
    display: none;
  }
  .site-footer .bg01 {
    background: url(../img/cmn/bg_foot01.svg) no-repeat bottom -0.2rem center;
    background-size: 110%;
    padding-bottom: 12rem;
    position: relative;
  }
  .site-footer .g02 {
    width: 21.8rem;
    top: -5rem;
    right: inherit;
    left: -10rem;
    transform: translateX(0rem);
  }
  .site-footer .g03 {
    width: 32.3rem;
    top: -5rem;
    left: inherit;
    right: -23rem;
    transform: translateX(0rem);
  }
  .site-footer .g04 {
    width: 6rem;
    bottom: -2rem;
    right: inherit;
    left: 7rem;
    transform: translateX(0rem);
  }
  .site-footer .g05 {
    width: 6rem;
    bottom: -2rem;
    left: inherit;
    right: 7rem;
    transform: translateX(0rem);
  }
  /*==================================================
index
==================================================*/
  .main-sec {
    padding: 18rem 0 0;
  }
  .main-sec .circle-box .co2-main-txt h2 {
    font-size: 6.8rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
    line-height: 1.4em;
    margin-top: 4rem;
  }
  .main-sec .circle-box .co2-main-txt dt {
    margin-bottom: 0.5rem;
  }
  .co2-main-txt dd {
    font-size: 8rem;
  }
  .main-sec .bg-white {
    bottom: 7rem;
  }
  .main-sec .item {
    padding-bottom: 25rem;
  }
  .main-sec .circle-box .circle-txt {
    width: 130%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .main-sec .circle-box {
    width: 100vw;
    height: 125vw;
    background: url(../img/top/main_circle_bg.png) no-repeat center;
    background-size: 125%;
    display: table;
    position: relative;
  }
  .main-sec .g01 {
    max-width: 15rem;
    width: 100%;
    position: absolute;
    top: -4rem;
    right: inherit;
    left: -5rem;
    transform: translateX(0);
  }
  .main-sec .g02 {
    max-width: 25.5rem;
    width: 100%;
    position: absolute;
    top: -6rem;
    left: inherit;
    right: -8rem;
    transform: translateX(0);
  }
  .main-g .g03 {
    top: inherit;
    bottom: 18rem;
  }
  .main-g .g04 {
    top: inherit;
    bottom: 18rem;
  }
  .main-g .g05 {
    max-width: 20rem;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: inherit;
    left: 2rem;
    transform: translateX(0);
  }
  .main-g .g06 {
    max-width: 18rem;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: inherit;
    right: 2rem;
    transform: translateX(0);
  }
  .about-sec p {
    line-height: 2.6em;
  }
  .about-sec .txt-posi {
    font-size: 8rem;
  }
  .about-sec .g01 {
    width: 90%;
    bottom: 2rem;
  }
  .about-sec .g02, .about-sec .g03 {
    display: none;
  }
  .about-sec {
    padding: 10rem 0 14rem;
  }
  .about-sec:after {
    height: 7rem;
  }
  .bg-side01 {
    top: 2rem;
    width: 15rem;
  }
  .bg-side02 {
    top: 15rem;
    width: 15rem;
  }
  .bg-side01 img {
    width: 100%;
  }
  .partner-sec {}
  .scroll-txt {
    margin-bottom: 3rem;
  }
  .scroll-txt li {
    width: 200%;
  }
  .btn-box {
    margin-top: 4rem;
  }
  .btn-box a {
    padding: 3rem 1rem;
    background-image: url(../img/cmn/arrow01.svg);
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 6rem;
    letter-spacing: 0;
    font-size: 3rem;
    line-height: 1.6em;
  }
  .partner-logo-block .inner {
    padding: 2rem;
  }
  .achievement-sec .bg-side01 {
    top: 11rem;
  }
  .achievement-sec .bg-side02 {
    top: 17rem;
  }
  .achievement-sec .tit-box h2 {
    writing-mode: inherit;
    text-align: center;
    margin-bottom: 6rem;
  }
  .achievement-sec .tit-box h2 .font-en {
    display: block;
    font-size: 13rem;
    margin: 0;
  }
  .achievement-sec .tit-box h2 .font-jp {
    display: block;
    font-size: 4.6rem;
  }
  .achievement-sec .tit-box {
    width: 100%;
  }
  .achievement-sec .content-box {
    width: 100%;
  }
  .achievement-block .content {
    width: 100%;
  }
  .achievement-block .reduction {
    width: 100%;
    margin: 2rem auto 0;
  }
  .achievement-block .partner-logo-block {
    width: 35%;
  }
  .achievement-block .content .tit {
    width: 60%;
  }
  .achievement-block .content .tit .achievement-tit {
    font-size: 100%;
  }
  .achievement-block .reduction dt {
    width: 35%;
    text-align: center;
  }
  .achievement-block .reduction dt img {
    width: 80%;
  }
  .achievement-block .reduction dd {
    width: 60%;
  }
  .btn-list {
    margin-top: 5rem;
  }
  .btn-list li {
    margin: 0 0 2rem;
  }
  .btn-list li:last-child {
    margin-bottom: 0;
  }
  .btn-box-s {
    max-width: 100%;
  }
  .blog-sec .tit02 {
    line-height: 1em;
    margin-left: 5vw;
    margin-bottom: 2rem;
  }
  .blog-sec .txt-block {
    width: 100%;
    padding: 0 5vw;
  }
  .blog-sec .content-block {
    flex: none;
    width: 100%;
  }
  .btn-box-s.txt-left {
    text-align: center !important;
  }
  .btn-box-s.txt-left a {
    padding-left: 0;
    padding-right: 0;
  }
  .post-slider .slide {
    margin-right: 0;
    margin-left: 5vw;
  }
  .post-box .txt-box .more {
    width: 14rem;
  }
  .post-slider .slick-next {
    right: 10%;
    margin-right: -2.5vw;
  }
  .post-box .post-tit {
    font-size: 2.4rem;
  }
  .post-cat li {
    font-size: 75%;
    padding: 1.2rem 2rem;
  }
  .faq-box .icon {
    width: 6rem;
    height: 6rem;
    margin-right: 2rem;
    font-size: 2.4rem;
  }
  .faq-box .tit {
    padding: 3rem 8.5rem 3rem 2rem;
    cursor: pointer;
    position: relative;
  }
  .faq-box .content {
    padding: 0 2rem 6rem 2rem;
    display: none;
  }
  .certificate-box .img-box {
    position: inherit;
    right: inherit;
    top: inherit;
    width: 24rem;
    transform: translateY(0);
    margin: 3rem auto 0;
  }
  .certificate-box h2 {
    text-align: center;
    line-height: 1.2em;
    margin-bottom: 2rem;
  }
  .certificate-box h2:before {
    margin-bottom: 1rem;
  }
  .certificate-box {
    padding: 4rem;
  }
  .certificate-box p {
    text-align: center;
    font-size: 100%;
  }
  .certificate-sec {
    padding: 5vw 0;
  }
  /*==================================================
Partners
==================================================*/
  .page-partner-logo-list .partner-sec .co2-main-txt dd {
    font-size: 7.6rem;
  }
  .no-img-main.pad-b10.pad-b10 {
    padding-top: 18rem !important;
  }
  .page-partner-logo-list .main-g .g03, .page-partner-logo-list .main-g .g04 {
    display: none;
  }
  .partner-logo-list {
    justify-content: flex-start;
    margin-left: -1%;
    margin-right: -1%;
  }
  .partner-logo-list .partner-logo-block {
    width: 48%;
    margin: 1%;
  }
  .partner-logo-list .partner-logo-block .inner {
    padding: 3.5rem;
  }
  .page-tit-sec {
    padding: 15rem 0 5rem;
    text-align: center;
  }
  .page-tit-sec .font-en {
    font-size: 6rem;
  }
  .page-tit-sec .font-jp {
    font-size: 75%;
    margin-top: 0.5rem;
  }
  .partner-single-block .logo-box {
    width: 60%;
    margin: 0 auto 5rem;
  }
  .partner-single-block .content-box {
    width: 100%;
  }
  .partner-single-block .achievement-block .content {
    width: 100%;
  }
  .partner-single-block .partner-logo-block .inner {
    padding: 3rem;
  }
  .partner-single-sec {
    padding-top: 5rem;
  }
  .scroll-txt.sub {
    margin-top: 5rem;
  }
  /*==================================================
single
==================================================*/
  .news-block .content-box {
    width: 100%;
  }
  .news-single-sec .post-meta .post-cat {
    width: 70%;
  }
  .news-single-sec .post-meta .post-data {
    width: 30%;
    font-size: 80%;
  }
  .news-single-sec {
    padding-top: 5rem;
  }
  #toc_container {
    background: #fff;
    padding: 3rem;
    border-radius: 1.5rem;
    width: 100%;
    margin: 5rem auto 8rem;
    font-size: 87.5%;
    line-height: 1.8em;
  }
  .post-tag li {
    font-size: 87.5%;
  }
  .share-btn-box {
    padding: 4rem;
  }
  .share-btn-box p {
    font-size: 87.5%;
  }
  .archive-post-box .post-box {
    width: 100%;
    margin-bottom: 5vw;
  }
  .news-block .side-box {
    width: 100%;
    margin-top: 10rem;
  }
  .side-block h2 {
    font-size: 3.4rem;
  }
  .side-post-box .txt-box h3 {
    font-size: 100%;
  }
  .post-cat.link li {
    font-size: 75%;
  }
  .post-cat.link li a {
    padding: 1.2rem 2rem;
  }
}