@charset "UTF-8";

/* =======================================
    SDGsページ
======================================= */
.sdgs-logo, .sdgs-reuse, .sdgs-12 {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: space-between;
  margin: 24px 0;
}
.sdgs-logo {
  border-bottom: 1px solid #888;
}

.sdgs-logo div:first-child, .sdgs-reuse div:first-child, .sdgs-12 div:first-child {
  max-width: 480px;
}
.sdgs-logo div:last-child, .sdgs-reuse div:last-child, .sdgs-12 div:last-child {
  flex: 1;
}
.sdgs-reuse .fontsize-l {
  font-size: clamp(24px,3.2vw,32px);
}
.sdgs-reuse .fontsize-xl {
  font-size: clamp(28px,4vw,40px);
}
.sdgs-box {
  border: 1px solid #666;
  box-shadow: 1px 2px 3px #ddd;
  margin-bottom: 16px;
  overflow: hidden;
  padding: 24px 24px 16px;
}
.sdgs-12 {
  background: #fffce6;
  padding: 16px;
}
.sdgs-12 div:first-child {
  text-align: center;
}
.sdgs-12 div:last-child {
  flex: 1;
  padding: 24px;
}
.sdgs-12 dt {
  font-weight: bold;
  padding-left: 35px;
  position: relative;
}
.sdgs-12 dt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8px;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    width: 6px;
    height: 14px;
    border-right: 3px solid #8b6b4e;
    border-bottom: 3px solid #8b6b4e;
  }
.sdgs-12 dt::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #8b6b4e;
    border-radius: 2px;
  }
.sdgs-12 dd {
  margin-bottom: 16px;
}
.cooperation {
  background: #f10;
  color: #fff;
  display: block;
  font-size: clamp(20px,2.8vw,28px);
  font-weight: bold;
  padding: 8px 16px;
  text-align: center;
}
.sdgs-flow {
  font-size: 24px;
  font-weight: bold;
}
/* =Responsive Structure
----------------------------------------------- */
/*834px以下*/
@media screen and (max-width: 834px){
.sdgs-logo, .sdgs-reuse,.sdgs-12 {
  flex-direction: column;
}
}
/*600px以下*/
@media screen and (max-width: 600px){
}