@charset "utf-8";
/* ==========================================================================
   Materiality Page Styles - sus_2.html 専用の追加パーツ
   .sus-* プレフィックスでスコープ（css/sustainability.css と併用）
   既存サイトの配色・フォントサイズ体系に準拠

   配色トークン（既存グリーン #46b035 から派生）
     #46b035  ベースグリーン（既存サイト共通）
     #338024  濃いグリーン（文字色用）
     #f2f9f0  極薄グリーン（背景）
     #dcefd6  薄グリーン（バッジ背景）
     #aed9a2  中間グリーン（枠線アクセント）
   ========================================================================== */

/* ---------- ページ内セクションナビ ----------
   ・#header（fixed）は body.compact 時 PC 80px / SP 51px。
     スクロール開始と同時に compact が付くため、その高さ分を sticky の top に指定。
   ・#header は z-index:31 のため、それより下（20）に重ねる。
   ・アンカーのスクロール位置は既存サイトの .plink 方式に統一する。
     common.js が a[href^="#"] を jQuery の animate に置き換えているため、
     CSS の scroll-margin-top は効かず .plink のパディング方式のみが有効。
     本ページは sticky ナビ（約48px）が加わるため、既定の 100px から 150px に拡張する。 */
#pcom_2 .plink {
  padding-top: 150px !important;
  margin-top: -150px;
}
.sus-secnav {
  position: sticky;
  top: 80px;
  z-index: 20;
  margin-top: 20px;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  background: rgba(255, 255, 255, 0.95);
}
.sus-secnav__row {
  display: flex;
  gap: 2px;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sus-secnav__row::-webkit-scrollbar {
  display: none;
}
/* センター寄せ。
   justify-content: center を使うと、項目が収まりきらない幅（SPなど）で
   先頭側がはみ出してスクロールしても辿り着けなくなるため、
   両端の auto マージンで中央寄せする（あふれた場合 auto は 0 に解決される）。 */
.sus-secnav__row a:first-child {
  margin-left: auto;
}
.sus-secnav__row a:last-child {
  margin-right: auto;
}
.sus-secnav__row a {
  flex: none;
  padding: 14px 14px;
  border-bottom: 2px solid transparent;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  transition: color 250ms ease, border-color 250ms ease;
}
.sus-secnav__row a:hover {
  color: #338024;
  text-decoration: none;
}
.sus-secnav__row a.active {
  border-bottom-color: #46b035;
  color: #338024;
}

/* ---------- ページTOPへ戻る ----------
   クラス名は既存 js/common.js が想定している .gototop を使用。
   （common.js 側でスクロール時の fadeIn/fadeOut と smoothScroll が
     すでに実装済みのため、追加のスクリプトは不要）
   初期状態は非表示。スクロール開始で common.js が fadeIn する。 */
.gototop {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
}
.gototop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid #46b035;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #46b035;
  font-size: 18px;
  line-height: 1;
  transition: all 250ms ease;
}
.gototop a::before {
  content: "\f077"; /* chevron-up */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.gototop a:hover {
  border-color: #46b035;
  background: #46b035;
  color: #fff;
  text-decoration: none;
}

/* ---------- セクション共通 ---------- */
/* 本文サイズ・色は body（PC 16px / SP 14.5px・#333）を継承させる */
.sus-seclead {
  margin: 0 0 25px;
  line-height: 1.85;
}
.sus-subhead {
  margin: 0 0 15px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

/* ---------- 策定の基本的アプローチ 3カード ---------- */
.sus-vp .gcol4 {
  display: flex;
}
.sus-vp__item {
  width: 100%;
  padding: 20px;
  border: 1px solid #ddd;
  border-top: 3px solid #46b035;
  background: #fff;
}
.sus-vp__tag {
  display: inline-block;
  margin: 0 0 10px;
  padding: 3px 11px;
  border-radius: 20px;
  background: #f2f9f0;
  color: #338024;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.5;
}
.sus-vp__item h4 {
  margin: 0 0 8px;
  color: #338024;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
.sus-vp__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

/* ---------- 淡色ボックス＋チェックリスト ---------- */
.sus-box {
  padding: 22px 24px;
  border: 1px solid #e5e5e2;
  background: #f7f8f5;
}
.sus-box > h4 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
.sus-box > p {
  margin: 0;
  line-height: 1.8;
}
.sus-ticks {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sus-ticks > li {
  position: relative;
  padding: 0 0 0 28px;
  line-height: 1.8;
}
.sus-ticks > li + li {
  margin-top: 10px;
}
.sus-ticks > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 8px;
  border-left: 2px solid #46b035;
  border-bottom: 2px solid #46b035;
  transform: rotate(-45deg);
}
.sus-box .sus-ticks {
  margin-top: 12px;
}

/* ---------- 推進体制（3層） ---------- */
.sus-gov {
  margin: 0 0 22px;
}
.sus-gov__row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid #ddd;
  background: #fff;
}
.sus-gov__lvl {
  flex: none;
  align-self: flex-start;
  padding: 3px 11px;
  border-radius: 20px;
  background: #46b035;
  color: #fff;
  font-size: 11px;
  line-height: 1.6;
}
.sus-gov__role {
  flex: none;
  min-width: 150px;
}
.sus-gov__nm {
  color: #338024;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
.sus-gov__cad {
  margin-top: 2px;
  color: #888;
  font-size: 12px;
  line-height: 1.5;
}
.sus-gov__desc {
  flex: 1;
  min-width: 240px;
  margin: 0;
  line-height: 1.8;
}
.sus-gov__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 0;
  color: #888;
  font-size: 12px;
}
.sus-gov__arrow::before,
.sus-gov__arrow::after {
  content: "";
  width: 2px;
  height: 18px;
  background: #aed9a2;
}

/* ---------- 特定プロセス（5STEP） ---------- */
.sus-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0; /* .mt30 は .sus-steps の margin 指定に負けるため、ここで指定 */
  padding: 0;
  list-style: none;
  counter-reset: susstep;
}
.sus-steps > li {
  counter-increment: susstep;
  position: relative;
  flex: 1 1 170px;
  margin: 0; /* style.css の ol li { margin: 3px 5px 6px 10px } を打ち消す */
  padding: 18px 16px;
  border: 1px solid #ddd;
  background: #fff;
}
/* style.css の ol li:before（position:absolute / left:-30px / width:1.6em / font-size:20px）を
   すべて打ち消したうえで、カード内のラベルとして表示する */
.sus-steps > li::before {
  content: "STEP " counter(susstep);
  position: static;
  display: block;
  top: auto;
  left: auto;
  width: auto;
  margin: 0 0 8px;
  color: #46b035;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-align: left;
}
.sus-steps h4 {
  margin: 0 0 6px;
  font-size: 14.5px;
  font-weight: bold;
  line-height: 1.5;
}
.sus-steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

/* ---------- 凡例 ---------- */
.sus-legend .gcol6 {
  display: flex;
}
.sus-legend .sus-box {
  width: 100%;
  padding: 16px 18px;
}
.sus-legend dl {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}
.sus-legend dt {
  margin: 0;
  color: #338024;
  font-weight: bold;
}
.sus-legend dd {
  margin: 2px 0 0;
}

/* ---------- マテリアリティ グループ見出し ---------- */
.sus-grp {
  margin: 30px 0 12px;
  padding-left: 14px;
  border-left: 4px solid #46b035;
  color: #338024;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

/* ---------- マテリアリティ アコーディオン ---------- */
.sus-mat {
  margin: 0 0 10px;
  border: 1px solid #ddd;
  background: #fff;
}
.sus-mat[open] {
  border-color: #aed9a2;
}
.sus-mat__sum {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 17px 18px;
  cursor: pointer;
  list-style: none;
}
.sus-mat__sum::-webkit-details-marker {
  display: none;
}
.sus-mat__sum:hover {
  background: #f7f8f5;
}
.sus-mat__num {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f2f9f0;
  color: #338024;
  font-size: 15px;
  font-weight: bold;
}
.sus-mat__head {
  flex: 1;
  min-width: 0;
}
.sus-mat__title {
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
.sus-mat__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 9px;
}
.sus-bdg {
  padding: 3px 11px;
  border-radius: 20px;
  font-size: 12px;
  line-height: 1.6;
  white-space: nowrap;
}
.sus-bdg--lg {
  background: #dcefd6;
  color: #338024;
}
.sus-bdg--md {
  background: #f2f9f0;
  color: #338024;
}
.sus-bdg--sm {
  background: #eeeeea;
  color: #555;
}
.sus-chip {
  padding: 3px 11px;
  border: 1px solid #ccc;
  border-radius: 20px;
  color: #555;
  font-size: 12px;
  line-height: 1.6;
  white-space: nowrap;
}
.sus-mat__chev {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 7px;
  color: #46b035;
  font-size: 16px;
  text-align: center;
  line-height: 22px;
  transition: transform 200ms ease;
}
.sus-mat__chev::before {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.sus-mat[open] .sus-mat__chev {
  transform: rotate(180deg);
}
.sus-mat__body {
  padding: 4px 18px 20px;
  border-top: 1px solid #ddd;
}
.sus-mat__body p {
  margin: 0;
  line-height: 1.85;
}
.sus-field {
  margin: 16px 0 0;
}
.sus-lbl {
  display: block;
  margin: 0 0 6px;
  color: #338024;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* リスク／機会 */
.sus-ro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
}
.sus-ro > div {
  flex: 1 1 230px;
  padding: 13px 15px;
  background: #f7f8f5;
}
.sus-ro > div .sus-lbl {
  color: #555;
}
.sus-ro > .sus-ro--opp .sus-lbl {
  color: #338024;
}

/* 指標・目標 */
.sus-kv {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin: 16px 0 0;
}
.sus-kv > div {
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.sus-kv dt {
  flex: none;
  margin: 0;
  color: #338024;
  font-size: 13px;
  font-weight: bold;
}
.sus-kv dd {
  margin: 0;
  color: #333;
  line-height: 1.75;
}

/* 財務インパクト */
.sus-fin {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid #dcefd6;
  background: #f2f9f0;
}
.sus-fin__h {
  margin: 0 0 12px;
  color: #338024;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.sus-fin__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.sus-fin__grid > div {
  flex: 1 1 150px;
}
.sus-fin__grid > .sus-fin__m {
  flex: 2 1 220px;
}
.sus-fin__l {
  display: block;
  margin: 0 0 3px;
  color: #888;
  font-size: 11px;
  line-height: 1.6;
}
.sus-fin__v {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
}
.sus-mp-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sus-mp {
  padding: 3px 9px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-size: 12px;
  line-height: 1.6;
}
.sus-mp i {
  font-style: normal;
  font-weight: bold;
  color: #46b035;
}
.sus-matnote,
.sus-box > p.sus-matnote {
  margin: 14px 0 0;
  color: #888;
  font-size: 12px;
  line-height: 1.75;
}
.sus-refs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}
.sus-refs a {
  padding: 5px 13px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background: #fff;
  color: #338024;
  font-size: 12.5px;
  line-height: 1.6;
}
.sus-refs a:hover {
  background: #f2f9f0;
  text-decoration: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media screen and (max-width: 1024px) {
  /* SP／タブレットの #header は 50px + border 1px */
  .sus-secnav {
    top: 51px;
  }
  .sus-secnav__row {
    padding: 0 15px;
  }
  .sus-secnav__row a {
    padding: 12px 10px;
    font-size: 13px;
  }
  #pcom_2 .plink {
    padding-top: 110px !important;
    margin-top: -110px;
  }
  .gototop {
    right: 12px;
    bottom: 12px;
  }
  .gototop a {
    width: 46px;
    height: 46px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .sus-vp .gcol4 + .gcol4,
  .sus-legend .gcol6 + .gcol6 {
    margin-top: 12px;
  }
  .sus-box {
    padding: 18px 16px;
  }
  .sus-gov__row {
    gap: 10px;
    padding: 15px 16px;
  }
  .sus-gov__role {
    min-width: 0;
  }
  .sus-gov__desc {
    min-width: 0;
    flex: 1 1 100%;
  }
  .sus-steps > li {
    flex: 1 1 100%;
  }
  .sus-mat__sum {
    gap: 10px;
    padding: 15px 14px;
  }
  .sus-mat__num {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .sus-mat__title {
    font-size: 15px;
  }
  .sus-mat__body {
    padding: 4px 14px 18px;
  }
  .sus-ro > div {
    flex: 1 1 100%;
  }
}
