.tmpA {
  max-width: 1000px;
  font-size: 0.85rem;
  padding: 50px 20px 20px;
  margin: auto;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}
.tmpA .thumb {
  position: relative;
}
.tmpA .thumb img {
  width: 100%;
  height: auto;
}
.tmpA .cont {
}
.tmpA .cont h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* アコーディオン */
.acd-check {
  display: none;
}
.acd-label {
  text-align: center;
  background: #e4e4e0;
  display: block;
  margin-bottom: 1px;
  padding: 10px;
  position: relative;
  transition: all 0.3s ease-out;
}
.acd-label:after {
  /* background: #00479d; */
  box-sizing: border-box;
  content: "▼";
  display: block;
  padding: 10px 20px;
  position: absolute;
  right: 0;
  top: 0px;
}
.acd-label:hover {
  cursor: pointer;
  background-color: #cdcbc4;
}
.acd-check:checked + .acd-label:after {
  content: "▲";
}
.acd-content {
  display: block;
  height: 0;
  opacity: 0;
  padding: 0 40px;
  background-color: #f1f0ec;
  transition: 0.8s;
  visibility: hidden;
}
.acd-check:checked + .acd-label + .acd-content {
  opacity: 1;
  height: auto;
  padding: 30px 40px;
  visibility: visible;
}

/* リスペクトパーソン */
.rePson {
  padding: 50px 15px;
  background-color: #e7e7e5;
}
.personList {
  display: table;
  font-size: 0.8rem;
  line-height: 1.5rem;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 20px;
}
.personList .thumb {
  display: table-cell;
  width: 30%;
}

.personList .thumb img {
  width: 100%;
  height: auto;
}
.personList .cont {
  display: table-cell;
  width: 70%;
  padding: 10px 25px;
  vertical-align: middle;
}

/* SDGs */
table.enkaku {
  font-size: 0.8rem;
  line-height: 1.4rem;
  padding: 20px 35px;
  background-color: white;
  margin-bottom: 20px;
}
table.enkaku th {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
  padding: 15px;
  vertical-align: top;
  border-bottom: 1px solid #e9e9e9;
}
table.enkaku td {
  padding: 15px;
  border-bottom: 1px solid #e9e9e9;
}
table.enkaku td p:last-child {
  margin-bottom: 0;
}

/*------------------------------SP用------------------------------*/
@media screen and (max-width: 428px) {
  .tmpA {
    padding: 20px;
    margin-bottom: 10px;
  }
  .tmpA .thumb {
    position: relative;
  }
  .tmpA .cont h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  /* アコーディオン */
  .acd-check:checked + .acd-label + .acd-content {
    padding: 25px;
  }

  /* SDGs */
  table.enkaku {
    padding: 10px;
  }
  table.enkaku th {
    display: block;
    padding: 10px;
  }
  table.enkaku td {
    display: block;
  }
}

/*------------------------------PC & Tab用------------------------------*/
@media screen and (min-width: 429px) {
}

/*------------------------------Tab用------------------------------*/
@media screen and (min-width: 415px) and (max-width: 820px) {
}
