/* ==========================================================================
 * environment / 環境
 *
 *
========================================================================== */
/* 汎用クラス
 * ローカル扱いだが、全域CSS整理後に共通化したい。
-------------------------------------*/
@media screen and (max-width: 768px) {
  .onlyPC{
      display: none;
  }
}/* max-width: 768px */
@media screen and (min-width: 769px) {
  .onlySP{
      display: none;
  }
}/* max-width: 768px */

.mt-0 {
  margin-top: 0 !important;
}
.mt-20px {
  margin-top: 20px !important;
}
.mt-80px {
  margin-top: 80px !important;
}
.mt-120px {
  margin-top: 120px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-40px {
  margin-bottom: 40px !important;
}
.mb-80px {
  margin-bottom: 80px !important;
}

.w-300 {
  width: 300px;
}

.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.text-s {
  font-size: 11px;
}

/* 共通パーツ
* ローカル扱いだが、全域CSS整理後に共通化したい。
-------------------------------------*/
/* env-risk-table */
.env-risk-table {
  margin: 24px auto 68px;
  overflow-x: auto;
}
/* rows */
.env-risk-table__row {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}
.env-risk-table__row {
  border: 1px solid #C3C3C3;
  border-width: 1px 0 0 0;
}
.env-risk-table__row:last-child {
  border-width: 1px 0;
}
@media only screen and (max-width: 768px) {
  .env-risk-table__row {
    min-width: 768px;
  }
}/* end SP */

/* head,cell */
.env-risk-table__head,
.env-risk-table__cell {
  display: flex;
  align-items: center;

  padding: 16px 13px;

  border: 1px solid #C3C3C3;
  border-width: 0 0 0 1px;

  font-size: 14px;
}
.env-risk-table__head:last-child,
.env-risk-table__cell:last-child {
  border-width: 0 1px;
}
@media only screen and (max-width: 768px) {
  .env-risk-table__head,
  .env-risk-table__cell {
    padding: 16px 8px;
  }

}/* end SP */

.env-risk-table__head {
  justify-content: center;
  background: #000;
  color: white;
  font-weight: bold;
}
/* cols */
.env-risk-table__row *:nth-child(1) {
  justify-content: center;
  width: 140px;
  text-align: center;
}
.env-risk-table__row *:nth-child(2) {
  flex: 2;
}
.env-risk-table__row *:nth-child(3) {
  flex: 3;
}

@media only screen and (max-width: 768px) {
  .env-risk-table__row *:nth-child(1) {
  }
}/* end SP */

.env-risk-table__row .env-risk-table__cell:first-child {
  background: #F6F6F6;
}

.env-risk-table__cell {
}


/* env-co2-table */
.env-co2-table {
  margin: 24px auto 68px;
  overflow-x: auto;
}
/* rows */
.env-co2-table__row {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}
.env-co2-table__row {
  border: 1px solid #C3C3C3;
  border-width: 1px 0 0 0;
}
.env-co2-table__row:last-child {
  border-width: 1px 0;
}
@media only screen and (max-width: 768px) {
  .env-co2-table__row {
    min-width: 768px;
  }
}/* end SP */

/* head,cell */
.env-co2-table__head,
.env-co2-table__cell {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 25%;

  padding: 8px 13px;

  border: 1px solid #C3C3C3;
  border-width: 0 0 0 1px;

  text-align: center;
  font-size: 14px;
}
.env-co2-table__head:last-child,
.env-co2-table__cell:last-child {
  border-width: 0 1px;
}
@media only screen and (max-width: 768px) {
  .env-co2-table__head,
  .env-co2-table__cell {
    padding: 8px 13px;
  }

}/* end SP */

.env-co2-table__head {
  background: #F6F6F6;
  color: #000;
}
.env-co2-table__head:nth-child(1) {
  background: transparent;
}

/* cols */
.env-co2-table__row *:nth-child(1) {
  width: 140px;
  text-align: center;
}
.env-co2-table__row *:nth-child(2) {
}
.env-co2-table__row *:nth-child(3) {
}
.env-co2-table__row *:nth-child(4) {
}

@media only screen and (max-width: 768px) {
  .env-co2-table__row *:nth-child(1) {
    width: 40px;
  }
}/* end SP */

.env-co2-table__cell {
  padding: 8px 13px;
}
.env-co2-table__row .env-co2-table__cell:first-child {
  background: #000;
  color: white;
  font-weight: bold;
}

