@charset "utf-8";
/* ==========================================================================
   Sustainability Page Styles
   sustainability.html / sus_2.html（マテリアリティ）の追加パーツ
   .sus-* プレフィックスでスコープ
   既存の配色（#46b035 / #9cea2d）・フォントサイズ体系に準拠

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

/* ---------- リード文 ---------- */
/* 本文サイズ・色は body（PC 16px / SP 14.5px・#333）を継承させる */
.sus-lead {
  margin: 0 auto;
  line-height: 1.95;
  text-align: center;
}

/* ---------- 主要コンテンツ 3カード ---------- */
.sus-cards .gcol4 {
  display: flex;
}
.sus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 25px 25px 50px;
  border: 1px solid #ddd;
  border-top: 3px solid #46b035;
  background: #fff;
  color: #333;
  transition: all 300ms ease;
}
.sus-card:hover {
  border-color: #46b035;
  background: #f7fbf5;
  text-decoration: none;
}
.sus-card__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #46b035;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
}
.sus-card__title {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
.sus-card__text {
  display: block;
  font-size: 14px;
  line-height: 1.75;
}
.sus-card__go {
  position: absolute;
  right: 25px;
  bottom: 18px;
  color: #46b035;
  font-size: 13px;
}
.sus-card__go::after {
  content: "\f35a";
  display: inline-block;
  margin-left: 0.5em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* ---------- サステナビリティ基本方針 ---------- */
.sus-policy {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: suspolicy;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.sus-policy > li {
  counter-increment: suspolicy;
  position: relative;
  flex: 1 1 calc(50% - 15px);
  min-width: 260px;
  margin: 0; /* style.css の ol li { margin: 3px 5px 6px 10px } を打ち消す */
  padding: 18px 20px 18px 62px;
  border: 1px solid #ddd;
  background: #fff;
  line-height: 1.75;
}
/* style.css の ol li:before（width:1.6em / text-align:center / font-size:20px）を打ち消す */
.sus-policy > li::before {
  content: "0" counter(suspolicy);
  position: absolute;
  top: 16px;
  left: 20px;
  width: auto;
  color: #46b035;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: left;
}

/* 基本方針下のボタン
   ・ラベルが長いため既存 .btn1.small の幅のみ拡張
   ・罫線と矢印アイコンを番号と同じ緑（#46b035）に */
.btn1.sus-morebtn {
  max-width: 400px;
  border-color: #46b035;
}
.btn1.sus-morebtn.arrow::after {
  color: #46b035;
}
.btn1.sus-morebtn:hover {
  border-color: #46b035;
  background: #46b035;
  color: #fff;
}
.btn1.sus-morebtn.arrow:hover::after {
  color: #fff;
}

/* ---------- E/S/G カラムの説明文 ---------- */
.sus-esg-desc {
  margin: 15px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  text-align: center;
}

/* ---------- 関連情報 ---------- */
.sus-related.grid {
  margin-top: 30px;
}
.sus-related .gcol4 {
  display: flex;
}
.sus-lk {
  display: block;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  transition: all 300ms ease;
}
.sus-lk:hover {
  border-color: #46b035;
  background: #f7fbf5;
  text-decoration: none;
}
.sus-lk .t {
  display: block;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
}
.sus-lk .t::before {
  content: "\f0da";
  display: inline-block;
  margin-right: 0.5em;
  color: #46b035;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.sus-lk .s {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.6;
  color: #666;
}

/* ---------- 対象範囲の注記 ---------- */
.sus-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #666;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media screen and (max-width: 1024px) {
  .sus-card {
    padding: 20px 20px 45px;
  }
  .sus-card__go {
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .sus-lead {
    line-height: 1.85;
    text-align: left;
  }
  .sus-policy {
    gap: 10px;
  }
  .sus-policy > li {
    flex: 1 1 100%;
    min-width: 0;
    padding: 15px 15px 15px 56px;
  }
  .sus-policy > li::before {
    top: 14px;
    left: 16px;
  }
  .sus-esg-desc {
    text-align: left;
  }
  .btn1.sus-morebtn {
    max-width: 100%;
    padding: 0 10px;
    text-align: center;
  }
  /* SP では .grid の子が縦積みになるため、行間を明示 */
  .sus-cards > .gcol4 + .gcol4,
  .sus-related > .gcol4 + .gcol4 {
    margin-top: 15px;
  }
}
