@charset "utf-8";

figure {
  margin: 0;
}

.breadcrumb-wrapper {
  max-width: 1020px;
  margin: 30px auto 0;
}

.breadcrumb {
  display: flex;
  gap: 0 22px;
  list-style: none;
  padding: 0;
  font-size: 1.3em;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  transform: rotate(45deg);
  width: .3em;
  height: .3em;
  margin-left: 10px;
  border-top: 1px solid #666666;
  border-right: 1px solid #666666;
  content: '';
}

.breadcrumb a {
  color: #666666;
  text-decoration: none;
}

.breadcrumb li:last-child a {
  color: #00b28f;
}

#sustainable .hdM {
  text-align: center;
}

.table-wrapper {
  width: 100%;
  margin-bottom: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* iPhoneで慣性スクロール */
  background: #fff;
}

.materia-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 14px;
  min-width: 1000px;
}

.materia-table ul {
  list-style: disc;
  padding-left: 16px;
}

.materia-table li {
  list-style: disc;
}

/* ===== ヘッダー ===== */
.materia-table thead th {
  padding: 15px 10px;
  text-align: center;
  font-weight: bold;
  background: #f9ebeb;
  border: 1px solid #ddd;
}

/* ===== ボディ ===== */
.materia-table td {
  padding: 15px 12px;
  border: 1px solid #ddd;
  vertical-align: middle;
}


/* ===== 左カテゴリ列 ===== */
.category {
  font-size: 16px;
  padding: 0;
  height: 100%;
  padding: 20px;
  font-weight: bold;
  text-align: center;
  background: #faf5f5;
}


/* ===== SDGsダミー ===== */
.sdgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sdgs img {
  margin: 0 auto;
  width: 75px;
  height: 75px;
}

@media screen and (max-width: 768px) {
  .breadcrumb-wrapper {
    padding-left: 16px;
    font-size: 0.8em;
  }

  .breadcrumb {
    gap: 0 10px;

  }

}