@charset "utf-8";

:root {
  --font-serif-jp: "Noto Serif JP", "BIZ UDMincho", serif;
  --font-sans-jp: "Noto Sans JP", "Noto Sans", "Helvetica Neue", Arial,
    sans-serif;
}

.font-noto-serif-jp,
.font-serif {
  font-family: var(--font-serif-jp);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-noto-sans,
.font-sans {
  font-family: var(--font-sans-jp);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.csr {
  font-family: var(--font-sans-jp);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

section.Policy {
  font-size: 16px;
  padding: 0px 10px;
}

section.Policy h1 {
  font-size: 2em;
  font-weight: bold;
  color: #0e6d46;
  margin: 20px 0px;
}

section.Policy h2 {
  font-size: 1.4em;
  font-weight: bold;
  margin: 24px 0 16px;
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 12px 14px;
  background: #f0f7e2; /* 黄緑系の淡い帯 */
  border-left: 4px solid #91c36d;
  border-radius: 4px;
  scroll-margin-top: 180px;
}
section.Policy h2::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  background: transparent;
}

section.Policy h3 {
  font-size: 1.2em;
  font-weight: bold;
  margin: 15px 0px 10px 0px;
  color: #0e6d46;
  text-align: center;
  scroll-margin-top: 180px;
}
section.Policy h4 {
  font-size: 1.1em;
  font-weight: 700;
  color: #000;
  margin: 16px 0 10px;
  padding-left: 10px;
  border-left: 3px solid #0e6d46;
}

section.Policy h1,
section.Policy h2,
section.Policy h3,
section.Policy h4 {
  font-family: var(--font-serif-jp);
}

section.Policy p {
  font-size: 1em;
  line-height: 1.5;
}

div.boxcontent {
  background: linear-gradient(135deg, #f7fbf4 0%, #eef7e9 100%);
  border: 1px solid #d9e7df;
  border-radius: 12px;
  margin: 24px 0 32px;
  padding: 22px 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  font-family: var(--font-sans-jp);
  font-weight: 400;
}

div.boxcontent p {
  margin: 0 0 12px;
  line-height: 1.6;
  color: #000;
  font-family: var(--font-sans-jp);
  font-weight: 400;
}

.colLayout_esgmain {
  display: flex;
}

.colLayout_esgmain .col-main {
  flex: 0 0 70%;
  display: flex;
  align-items: center;
}

.colLayout_esgmain .col-side {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 上下中央 */
}

.colLayout_esgmain .col-side figure {
  margin: 0;
  padding: 5px;
}

/* 3カラムの高さ揃え */
.colLayout01 {
  display: flex;
  align-items: stretch;
  gap: 5px;
}
.colLayout01 .col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}
.colLayout01 .col .boxcontent {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 20px 16px;
  text-align: center;
  background: #d7eea3;
  border: 1px solid #d9e7df;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.colLayout01 .col .boxcontent__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.colLayout01 .col .indicator-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  font-family: var(--font-sans-jp);
  font-weight: 600;
}
.colLayout01 .col .initiative-list {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.colLayout01 .col .initiative-list ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 0;
}
.colLayout01 .col .initiative-list ul li {
  list-style: none;
  margin: 0;
}
.colLayout01 .col .boxcontent .viewMore {
  margin-top: auto;
  align-self: center;
}
.colLayout01 .col .boxcontent__footer {
  margin-top: auto;
  display: flex;
  justify-content: center;
}


div.box_01 {
  background: #f0f7e2;
  border-top: 2px dotted #0e6d46;
  border-bottom: 2px dotted #0e6d46;
  padding: 20px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  margin: 20px 0px 20px 0px;
}

div.box_01 p {
  font-weight: bold;
  font-family: "Noto Serif JP";
  margin: 0 0 10px;
  font-size: 1.05em;
  line-height: 1.5;
}
div.box_01 h1 {
  margin: 0 0 8px;
  color: #0e6d46;
  font-size: 2em;
}

p.lead {
  font-weight: bold;
  font-family: "Noto Serif JP";
}

/* レスポンシブで縦並びにしたい場合 */
@media (max-width: 768px) {
  .colLayout_esgmain {
    flex-direction: column;
  }

  .col-main,
  .col-side {
    flex: 0 0 auto;
    width: 100%;
  }

  .colLayout01 {
    flex-direction: column;
    gap: 16px;
    padding: 0 12px;
  }
  .colLayout01 .col .boxcontent {
    padding: 14px 12px;
  }

  .image-row {
    flex-direction: column;
    max-width: 100%;
    margin: 16px 0;
    padding: 0 12px;
    gap: 12px;
  }
  .image-row.two > figure {
    aspect-ratio: 3 / 2;
  }
}

/* 画像を横並びにする行レイアウト */
.image-row {
  display: flex;
  gap: 16px;
  margin: 24px auto;
  padding: 0;
  box-sizing: border-box;
  justify-content: center;
  max-width: 1200px;
}
.image-row.two {
  padding: 0 24px; /* 左右に均等な余白を付与 */
  box-sizing: border-box;
}
.image-row.two > figure {
  flex: 1 1 0;
  min-width: 0; /* はみ出し防止 */
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
}
.image-row.two > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.image-row.two .fit-image img {
  object-fit: contain;
}

.image-row img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 1枚表示を中央寄せで統一する場合 */
.image-row.single {
  max-width: 720px;
  margin: 24px auto;
  justify-content: center;
  width: 100%;
}
.image-row.single > figure {
  flex: 0 0 auto;
  margin: 0;
  width: 100%;
  max-width: 520px;
}
.image-row.single > figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* 2枚並び */
.image-row.two > figure {
  flex: 0 0 50%;
  margin: 0;
}

/* 3枚並び */
.image-row.three > figure {
  flex: 0 0 33.3333%;
  margin: 0;
}

/* モバイルで縦積み */
@media (max-width: 768px) {
  .image-row.two > figure,
  .image-row.three > figure {
    flex: 0 0 100%;
  }
}

/* サイドカラム内の画像も崩さない */
.colLayout_esgmain .col-side img {
  max-width: 100%;
  height: auto;
  display: block;
}

.viewMore {
  display: block;
  width: 100%;
  max-width: 570px;
  margin: 12px auto 0;
  padding: 14px 18px;
  border: none;
  background: #0e6d46;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  border-radius: 999px;
  text-align: center;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px rgba(14, 109, 70, 0.25);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
}
.viewMore:link,
.viewMore:visited {
  color: #fff !important;
  text-decoration: none !important;
}
.viewMore::after {
  content: "\f054"; /* Font Awesome chevron-right */
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Pro", "FontAwesome";
  font-weight: 900;
  font-size: 0.9em;
  margin-left: 10px;
  vertical-align: middle;
}
.viewMore:hover {
  background: #0b583c;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(11, 88, 60, 0.3);
  transform: translateY(-2px);
}
.viewMore:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(11, 88, 60, 0.2);
}

/* External link icon (Font Awesome 4.7) */
a.external-link::after {
  content: "\f08e";
  font-family: "FontAwesome";
  font-size: 0.9em;
  margin-left: 0.35em;
  vertical-align: middle;
}

@media screen and (min-width: 769px) {
  #mainContainer #contentContainer #mainContents {
    width: 780px;
  }
}
