@charset "utf-8";


.main a {
  color: #DA2009;
  border-bottom: 1px solid #DA2009;
}

/* table
------------------------------------------------ */
.box__table {
  margin-top: 32px;
}
p.table-title {
  margin-top: 32px;
  font-size: 1.8rem;
  font-weight: bold;
}
p.table-title + .box__table {
 margin-top: 16px; 
}
table{
  width: 100%;
  border-collapse: collapse;
}
th, td {
  font-size: 1.6rem;
  padding: 1em;
}
.cell-left {
  text-align: left !important;
}
.cell-center {
  text-align: center !important;
}
.cell-right {
  text-align: right !important;
}
.cell-white {
  background-color: #ffffff;
}
tr td.cell-no-left {
  border-left: 0 !important;
}
tr td.cell-no-right {
  border-right: 0 !important;
}
tr td.cell-border-left {
  border-left: 1px solid #DDDDDD;
}
tr td.cell-border-right {
  border-right: 1px solid #DDDDDD;
}
tr td.cell-border-top {
  border-top: 1px solid #DDDDDD;
}
tr td.cell-border-bottom {
  border-bottom: 1px solid #DDDDDD;
}
tr.no-border-top {
  border-top: 0 !important;
}

.cell-30par {
  width: 30%;
}
.cell-22par {
  width: 22%;
}
.cell-20par {
  width: 20%;
}
.cell-330 {
  width: 330px;
}
.cell-325 {
  width: 325px;
}
.cell-260 {
  width: 260px;
}
.cell-255 {
  width: 255px;
}
.cell-180 {
  width: 180px;
}
.cell-165 {
  width: 165px;
}
.cell-135 {
  width: 135px;
}
.cell-130 {
  width: 130px;
}
.cell-125 {
  width: 125px;
}
.cell-105 {
  width: 105px;
}
.cell-50 {
  width: 50px;
}

.cell-vertical {
  width: 3em;
  text-align: center;
}
.cell-vertical span {
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.25em;
}

.scroll-caution {
  display: none;
  color: #666;
  font-size: 1.2rem;
  text-align: left;
  margin: 0 0 0.5em;
  padding: 0 0 0 45px;
  background-image: url(../img/icon_scroll_side.png);
  background-size: 37px 14px;
  background-position: 0 50%;
  background-repeat: no-repeat;
}
td p + p {
  margin-top: 0.8em;
}

@media screen and (max-width:850px) {
  .box__scroll {
    width: 100% !important;
    position: relative;
    overflow: auto;
  }
  .scroll-caution {
    display: block;
  }
  .box__scroll table {
    width: 850px;
  }
}
@media screen and (max-width:540px) {
  th, td {
    font-size: 1.4rem;
  }
}

/*------------------------------
  table-single
------------------------------*/
.table-single {
  margin-top: 0.5em;
  width: 100%;
}
.table-single tr {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}
.table-single tr:last-of-type th {
  border-bottom: 1px solid #DDDDDD;
}
.table-single th {
  width: 30%;
  min-width: 256px;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  border-right: 1px solid #DDDDDD;
  background-color: #F9F9F9;
}
.table-single td {
  border-bottom: 1px solid #DDDDDD;
  background-color: #ffffff;
}

@media screen and (max-width:768px) {
  .table-single th,
  .table-single td {
    width: 100%;
    display: block;
  }
  .table-single th {
    border-top: 0;
    border-right: 0;
  }
  .table-single td {
    border-bottom: 0;
  }
}

/*------------------------------
  table-multi
------------------------------*/
.table-multi {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}
.table-multi thead th {
  border-right: 1px solid #DDDDDD;
  background-color: #F59332;
  font-weight: normal;
  text-align: center;
  border-bottom: 1px solid #DDDDDD;
  color: #fff;
}
.table-multi thead th:last-of-type {
  border-right: 0;
}
.table-multi td {
  border-right: 1px solid #DDDDDD;
}
.table-multi tbody th {
  font-weight: normal;
  text-align: left;
  background-color: #F9F9F9;
  border-right: 1px solid #DDDDDD;
}
.table-multi tr:nth-of-type(even) td {
  border-right: 1px solid #DDDDDD;
}
.table-multi tr td:last-of-type {
  border-right: 0;
}
.table-multi tr + tr {
  border-top: 1px solid #DDDDDD;
}
.table-multi tfoot td {
  background:#555;
  color: #fff;
}
.table-multi tfoot tr:nth-of-type(even) td {
  border-right: 1px solid #fff;
}

/* list
------------------------------------------------ */
ol, ul {
  font-size: 1.6rem;
}
p + ol,
p + ul,
ul + p,
ol + p {
  margin-top: 32px;
}

.main li + li {
  margin-top: 5px;
}
.list-l-latin,
.list-l-roman,
.list-decimal,
.list-square,
.list-disc {
  margin-left: 1em;
}
.list-l-latin li {
  list-style-type: lower-latin;
}
.list-l-roman li {
  list-style-type: lower-roman;
}
.list-decimal li {
  list-style-type: decimal;
}
.list-square li {
  list-style-type: square;
}
.list-disc li {
  list-style-type: disc;
}
.list-square li::marker,
.list-disc li::marker {
  color: #DA2009;
}
.list-indent > li {
  margin-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width:540px) {
  ol, ul {
    font-size: 1.4rem;
  }
}

/* box
------------------------------------------------ */
.box__horizontal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
p + .box__horizontal {
  margin-top: 60px;
}
.box__horizontal .box__image {
  width: 40%;
}
.box__horizontal .box__text {
  width: 58%;
}
.box__grid {
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
}
.box__grid.col-2 {
  margin-bottom: -2%;
  margin-right: -1%;
  margin-left: -1%;
}
.box__grid.col-2 .grid {
  width: 48%;
  margin: 0 1% 2%;
  text-align: center;
}
.box__grid.col-2 .grid img {
  display: inline-block;
  width: 80%;
}
.box__grid.col-3 {
  margin-bottom: -1.96%;
  margin-right: -0.98%;
  margin-left: -0.98%;
}
.box__grid.col-3 + .box__grid.col-3 {
  margin-top: 42px;
}
.box__grid.col-3 .grid {
  width: 31.33%;
  margin: 0 0.98% 1.96%;
}
.box__grid.col-4 {
  margin-bottom: -1%;
  margin-right: -0.5%;
  margin-left: -0.5%;
}
.box__grid.col-4 .grid {
  width: 24%;
  margin: 0 0.5% 1%;
}
.grid__title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  font-size: 1.4rem;
  margin-bottom: 0.5em;
  text-align: center;
  font-weight: bold;
}
.grid__title--blank {
  opacity: 0;
}
.grid__caption {
  font-size: 1.4rem;
  margin-top: 0.5em;
  text-align: center;
}
.box__single {
  /*width: 80%;*/
  max-width: 1040px;
  margin: 32px auto 0;
  text-align: center;
}
.box__single img {
  width: auto;
  max-width: 100%;
}
.box__single small {
  display: inline-block;
  margin-top: 16px;
}
.box__bg {
  margin-top: 32px;
  padding: 1.5em;
  background-color: #FAE3E2;
  font-size: 2.2rem;
  text-align: center;
}
.box__single + p,
.box__single + ul,
.box__single + .box__table,
.box__single + .box__grid,
.box__grid + p,
.box__grid + ul,
.box__grid + .box__table,
.box__grid + .box_single,
.box__table + p,
.box__table + ul,
.box__table + .box__table,
.box__table + .box__single,
.box__topics + p,
.box__topics + ul,
.box__topics + .box__table,
.box__topics + .box__grid,
.box__bg + p {
  margin-top: 32px;
}
@media screen and (max-width:850px) {
  .box__horizontal {
    justify-content: center;
  }
  p + .box__horizontal {
    margin-top: 40px;
  }
  .box__horizontal .box__text {
    width: 100%;
  }
  .box__horizontal .box__image {
    width: 80%;
    max-width: 500px;
  }
  .box__grid.col-2 {
    margin-left: 0;
    margin-right: 0;
  }
  .box__grid.col-2 .grid {
    width: 100%;
    margin: 0 0 4%;
  }
  .box__grid.col-2 .grid img {
    width: 100%;
  }
  .box__grid.col-3,
  .box__grid.col-4 {
    margin-bottom: -2%;
    margin-right: -1%;
    margin-left: -1%;
  }
  .box__grid.col-3 .grid,
  .box__grid.col-4 .grid {
    width: 48%;
    margin: 0 1% 2%;
  }
}
@media screen and (max-width:540px) {
  p + .box__horizontal {
    margin-top: 30px;
  }
  .box__single {
    width: 100%;
  }
  .box__grid.col-3,
  .box__grid.col-4 {
    margin-left: 0;
    margin-right: 0;
  }
  .box__grid.col-3 .grid,
  .box__grid.col-4 .grid {
    width: 100%;
    margin: 0 0 4%;
  }
}

/* superscript
------------------------------------------------ */
.superscript {
  padding-left: 0.25em;
  font-size: 1rem;
  vertical-align: super;
}

/* btn
------------------------------------------------ */
p + .box__btn,
ul + .box__btn {
  margin-top: 32px;
}
.btn {
  min-width: 230px;
  padding: 1em 20px 1em 0;
  font-weight: bold;
  display: inline-block;
  border-bottom: 2px solid #DA2009;
  position: relative;
}
.btn::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: url(../img/icon_arrow1.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

/* annotation
------------------------------------------------ */
.box__annotation {
  margin-top: 16px;
  margin-bottom: 32px;
}
.box__annotation p {
  font-size: 1.4rem;
  display: table;
}
.box__annotation p span {
  display: table-cell;
}
.box__annotation p span:first-of-type {
  min-width: 3em;
  padding-right: 0.5em;
  white-space: nowrap;
}
.box__annotation p.narrow span:first-of-type {
  min-width: 2em;
}
.box__annotation p + p {
  margin-top: 0;
}

/* grid-text
------------------------------------------------ */
p.grid-text {
  display: flex;
}
p.grid-text span {
  
}
p.grid-text span:first-of-type {
  padding-right: 0.5em;
  flex-shrink: 0;
}

/* breadcrumb
------------------------------------------------ */
.breadcrumb,
.breadcrumb a {
  font-size: 1.4rem
}
.breadcrumb a {
  line-height: 1.8;
}
.breadcrumb {
  margin-top: 80px;
  border-top: 1px solid #ddd;
}
.breadcrumb__inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0.25em 40px;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb__list li + li {
  margin-left: 1em;
  position: relative;
}
.breadcrumb__list li + li::before {
  margin-right: 1em;
  content: '>';
  display: inline-block;
}
@media screen and (max-width:850px) {
  .breadcrumb {
    margin-top: 40px;
  }
  .breadcrumb__inner {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media screen and (max-width:540px) {
  .breadcrumb a {
    font-size: 1.2rem;
  }
  .breadcrumb ul,
  .breadcrumb li {
    display: inline;
  }
  .breadcrumb__inner {
    padding-right: 5%;
    padding-left: 5%;
  }
}

/* other
------------------------------------------------ */
.text-strong {
  color: #DA2009;
  font-size: 1.8rem;
}

/* sub-navi
------------------------------------------------ */
.sub-navi {
  background-color: #F8F8F8;
}
.sub-navi__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 40px;
}
.sub-navi__title {
  margin-bottom: 10px;
  font-size: 1.8rem;
}
.sub-nav__list {
  margin: -1% -0.5% 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.sub-nav__list li {
  width: 24%;
  margin: 1% 0.5% 0;
}
.sub-nav__list li a {
  height: 100%;
  display: flex;
  padding: 1.2em 1.5em;
  background-color: #fff;
  color: #3C3C49;
  position: relative;
  align-items: center;
}
.sub-nav__list li a:hover {
  opacity: 1;
  background-color: #DA2009;
  color: #fff;
  transition: background-color 0.4s;
}
.sub-nav__list li.current a {
  color: #fff;
  background-color: #DA2009;
}
@media screen and (max-width:950px) {
  .sub-nav__list li {
    width: 49%;
  }
}
@media screen and (max-width:850px) {
  .sub-navi__inner {
    padding-left: 50px;
    padding-right: 50px;
  }
  .sub-navi__title {
    font-size: 1.6rem;
  }
  .sub-nav__list li a {
    padding: 1em 1.2em;
    font-size: 1.4rem;
  }
}
@media screen and (max-width:650px) {
  .sub-nav__list li {
    width: 100%;
  }
}
@media screen and (max-width:540px) {
  .sub-navi__inner {
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* pages
------------------------------------------------ */

p {
  line-height: 1.8;
}
p + p {
  margin-top: 1.5em;
}
p.lead {
  font-size: 1.8rem;
}
p.text-right {
  text-align: right;
}
p.text-center {
  text-align: center;
}
section {
  margin-top: 80px;
}
.section__inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 100px;
}
.page-title {
  height: 193px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.category-approach .page-title {
  background-image: url(../img/kv_subpage.jpg);
}
.category-environment .page-title {
  background-image: url(../img/kv_subpage.jpg);
}
.category-society .page-title {
  background-image: url(../img/kv_subpage.jpg);
}
.category-governance .page-title {
  background-image: url(../img/kv_subpage.jpg);
}
.page-title__text {
  height: 100%;
  color: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-title__text .heading01 {
  padding: 0 0.25em;
  display: flex;
  flex-direction: column;
}
.page-title__sub {
  font-size: 1.4rem;
}
.page-title__main {
  font-size: 3.2rem;
  margin-top: 0.25em;
}
.heading02 {
  margin-bottom: 40px;
  font-size: 2.8rem;
  position: relative;
}
.lead + .heading02 {
  margin-top: 40px;
}
.heading02::before {
  content: '';
  display: block;
  width: 131px;
  height: 1px;
  background-color: #DA2009;
  position: absolute;
  top: 50%;
  left: -161px;
  transform: translateY(-1px);
}
.heading03 {
  margin: 48px 0 25px;
  padding: 0.3em 0.8em;
  background-color: #DA2009;
  font-size: 2rem;
  line-height: 1.4;
  color: #fff;
}
.heading03.indent {
  padding-left: 2em;
  text-indent: -1.2em;
}
.heading04 {
  margin: 24px 0 10px 0;
  color: #DA2009;
  font-size: 1.8rem;
}
.heading05 {
  margin: 24px 0 10px 0;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 850px) {
  section {
    margin-top: 40px;
  }
  section + section {
    margin-top: 60px;
  }
  .section__inner {
    padding: 0 50px;
  }
  .page-title__main {
    font-size: 2.6rem;
  }
  .heading02 {
    font-size: 2rem;
  }
  .heading02::before {
    left: -145px;
  }
  .heading03 {
    font-size: 1.8rem;
  }
  .heading04 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 540px) {
  p {
   font-size: 1.4rem;
  }
  .section__inner {
    padding: 0 5%;
  }
  .page-title__main {
    font-size: 2rem;
  }
  .page-title__sub {
    font-size: 1.2rem;
  }
  .heading02 {
    font-size: 1.8rem;
  }
  .heading02::before {
    top: auto;
    bottom: -8px;
    left: 0;
  }
  .heading03 {
    font-size: 1.6rem;
  }
  .heading04 {
    font-size: 1.6rem;
  }
}

/*------------------------------
  approach
------------------------------*/

/* top-message */
.page-message .section-message .box__text {
  text-align: right;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media screen and (max-width:850px) {
  .page-message .section-message .box__text {
    width: 85%;
    max-width: 500px;
    font-size: 1.4rem;
    order: 2;
  }
  .page-message .section-message .box__image {
    width: 85%;
    order: 1;
  }
}
@media screen and (max-width:540px) {
  .page-message .section-message .box__text p {
    font-size: 1.2rem;
  }
}

/* overview */
.page-overview .cell-145 {
  width: 145px;
}
.page-overview .box__btn {
  text-align: center;
}
.page-overview .text-principles {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
}
.page-overview .text-principles small {
  font-variant: 1.8rem;
}
.page-overview .box__btn + .heading03 {
  margin-top: 60px;
}
.page-overview .pic-structure,
.page-overview .pic-group {
  max-width: 900px;
}
.page-overview .list-structure {
  max-width: 900px;
  margin: 24px auto 0;
  font-size: 1.4rem;
}

@media screen and (max-width:660px) {
  .page-overview .cell-145 {
    width: 100%;
  }
  .page-overview th,
  .page-overview td {
    width: 100%;
    display: block;
  }
  .page-overview .table-multi tbody th {
    border-right: 0;
  }
  .page-overview table tr:first-of-type th {
    border-top: 1px solid #ddd;
  }
  .page-overview td {
    border-left: 0;
  }
}
@media screen and (max-width:540px) {
  .page-overview .section-structure .box__single {
    width: 100%;
  }
}

/* disclosure */
.page-disclosure .table-disclosure tr {
  border: 0;
}
.page-disclosure .table-disclosure th {
  min-width: inherit;
  width: 135px;
  padding-left: 0;
  border: 0;
  background-color: #fff;
  vertical-align: top;
  text-align: left;
}
.page-disclosure .table-disclosure td {
  padding-right: 0;
  border: 0;
}
.page-disclosure .table-disclosure tr:last-of-type th {
  border: 0;
}

@media screen and (max-width:850px) {
  .page-disclosure .table-multi th,
  .page-disclosure .table-multi td {
    width: 100%;
    display: block;
  }
  .page-disclosure tbody tr:first-of-type th {
    border-top: 1px solid #DDDDDD;
  }
  .page-disclosure .table-disclosure tbody tr:first-of-type th {
    border-top: 0;
  }
  .page-disclosure .table-multi tbody th {
    border-right: 0;
  }
  .page-disclosure .cell-200 {
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .page-disclosure .table-disclosure th {
    width: 100%;
    padding: 0;
  }
  .page-disclosure .table-disclosure td {
    padding: 0.8em 0 1.6em;
  }
  .page-disclosure .table-disclosure tbody tr:last-of-type td {
    padding-bottom: 0;
  }
  
}

/* materiality */
.page-materiality .table-materiality thead th {

}
.page-materiality .cell-gray {
  background-color: #ccc;
}
.page-materiality .cell-green1 {
  background-color: #1aaf54;
  color: #fff;
  font-weight: bold;
}
.page-materiality .cell-green2 {
  background-color: #e3efda;
}
.page-materiality .cell-blue1 {
  background-color: #9ec4e4;
  color: #fff;
  font-weight: bold;
}
.page-materiality .cell-blue2 {
  background-color: #ebf1f7;
}
.page-materiality .cell-orange1 {
  background-color: #eb7d3c;
  color: #fff;
  font-weight: bold;
}
.page-materiality .cell-orange2 {
  background-color: #fbe5d7;
}
.page-materiality .table-materiality .box__grid {
  margin-top: 0;
}
.page-materiality .table-materiality .mate-01 {  width:12%; }
.page-materiality .table-materiality .mate-02 {  width:20%; }
.page-materiality .table-materiality .mate-03 {  width:20%; }
.page-materiality .table-materiality .mate-04 {  width:20%; }
.page-materiality .table-materiality .mate-05 {  width:28%; }

.page-materiality .table-materiality .list-sdgs {
  display: flex;
  flex-wrap: wrap;
}
.page-materiality .table-materiality .list-sdgs li {
  margin: 5px;
}
.page-materiality .table-materiality .list-sdgs li img {
  width: 90px;
}
.page-materiality .table-materiality .list-disc li + li {
  margin-top: 5px;
}

/* sustainability */
.page-sustainability .checked {
  font-weight: bold;
}
.page-sustainability .checked::before {
  content: '■';
  display: inline-block;
  margin-right: 0.5em;
  font-size: 1em;
}
.page-sustainability .box__pri {
  margin-top: 42px;
}
.page-sustainability .box__pri .box__logo {
  width: 80%;
  max-width: 320px;
  margin: 32px auto 0;
}
.page-sustainability .section-approach .box__single {
  width: 72%;
}
.page-sustainability .list-kansa span {
  display: inline-block;
  margin-bottom: 8px;
}
@media screen and (max-width:540px) {
  .page-sustainability .section-approach .box__single {
    width: 100%;
  }
}

/*------------------------------
  environment
------------------------------*/

/* performance */
.page-performance .cell-leftpadding {
  padding-left: 2em;
}

/* climate */
.page-climate .box__horizontal .heading03 {
  margin-top: 0;
}
.page-climate .section-governance .box__horizontal,
.page-climate .section-policy .box__horizontal {
  flex-wrap: nowrap;
}
.page-climate .section-policy .box__horizontal .box__image {
  width: 35%;
  max-width: 320px;
}
.page-climate .section-governance .box__horizontal .box__image {
  width: 50%;
}
.page-climate .section-governance .box__horizontal .box__text,
.page-climate .section-policy .box__horizontal .box__text {
  margin-right: 4%;
  flex-grow: 2;
}
@media screen and (max-width:850px) {
  .page-climate .section-governance .box__horizontal,
  .page-climate .section-policy .box__horizontal {
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-climate .section-governance .box__horizontal .box__text,
  .page-climate .section-policy .box__horizontal .box__text {
    width: 100%;
    margin-right: 0;
  }
  .page-climate .section-governance .box__horizontal .box__image,
  .page-climate .section-policy .box__horizontal .box__image {
    width: 80%;
  }
  .page-climate .section-governance .box__horizontal .box__image {
    margin-top: 20px;
  }
}

/* impacts */
.page-impacts .pannels {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 32px;
}
.page-impacts .pannels .pannel {
  width: 45%;
  border-radius: 6px;
  text-align: center;
  overflow: hidden;
} 
.page-impacts .pannels .pannel3,
.page-impacts .pannels .pannel4 {
  margin-top: 24px;
}
.page-impacts .pannels .pannel__title {
  padding: 0.5em;
  background-color: #DA2009;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
.page-impacts .pannels .pannel__value {
  padding: 0.5em;
  background-color: #eee;
  font-size: 2.6rem;
  font-weight: bold;
}
@media screen and (max-width:600px) {
  .page-impacts .pannels {
    justify-content: center;
  }
  .page-impacts .pannels .pannel {
    width: 80%;
  }
  .page-impacts .pannels .pannel2 {
    margin-top: 24px;
  }
  .page-impacts .pannels .pannel__value {
    font-size: 2.2rem;
  }
}

/* energy */
.page-energy .table-target {
  table-layout: fixed;
}
.page-energy .table-target th {
  text-align: center;
}
.page-energy .table-target td {
  text-align: center;
}
.page-energy .table-target tbody td:nth-child(1) {
  text-align: right;
}
.page-energy .table-target tfoot td:nth-child(1) {
  text-align: right;
}

.page-energy .table-gf th,
.page-energy .table-gf td {
  text-align: center;
}
.page-energy .table-gf td:nth-child(2) {
  text-align: left;
}

.page-energy .risk-table-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
}
.page-energy .risk-table-box table {
  width: 49%;
}
.page-energy .risk-table-box table th,
.page-energy .risk-table-box table td {
  text-align: center;
}
.page-energy .risk-table-box table td:nth-child(1) {
  width: 20%;
}
.page-energy .risk-table-box table td:nth-child(2) {
  text-align: left;
  width:50%;
}
@media screen and (max-width:1024px) {
  .page-energy .risk-table-box {
    display: block;
  }
  .page-energy .risk-table-box table {
    width: 100%;
    margin-bottom: 20px;
  }
}


.page-energy .vision-text {
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width:1024px) {
  .page-energy .vision-text br {
    display: none;
  }
}

.page-energy .section-greenfinance .box__caption {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 24px auto 0;
  padding: 0 10px;
}
.page-energy .section-greenfinance .caption-item {
  padding: 12px;
  border: 1px solid #ccc;
  background-color: #e3e3e3;
  position: relative;
}
.page-energy .section-greenfinance .caption-item::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding-bottom: 0.125em;
  border-radius: 50%;
  background-color: #DA2009;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
}
.page-energy .section-greenfinance .caption-item1::before {
  content: '1';
}
.page-energy .section-greenfinance .caption-item2::before {
  content: '2';
}
.page-energy .section-greenfinance .caption-item3::before {
  content: '3';
}
.page-energy .section-greenfinance .caption-item4::before {
  content: '4';
}

.page-energy .box__horizontal .box__text {
  width: calc(100% - 440px);
}
.page-energy .box__horizontal .box__image {
  width: 420px;
  text-align: right;
}
.page-energy .box__horizontal .box__image img {
  width: auto;
}
@media screen and (max-width:1024px) {
   .page-energy .box__horizontal {
     display: block;
   }
   .page-energy .box__horizontal .box__text {
    width: 100%;
  }
  .page-energy .box__horizontal .box__image {
    width: 100%;
    text-align: center;
  }
  .page-energy .box__horizontal .box__image img {
    width: 100%;
  }
}



/*------------------------------
  governance
------------------------------*/

/* governance */
.page-governance .section-officers .box__bg,
.page-governance .section-integration .box__bg {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-governance .section-officers .box__bg p,
.page-governance .section-integration .box__bg p {
  font-weight: bold;
  line-height: 1.6;
}
.page-governance .table-officers tbody td {
  text-align: center;
}

.page-governance .table-officer-houshu {
  table-layout: fixed;
}
.page-governance .table-officer-houshu tbody td {
  text-align: center;
}

.page-governance .table-kansa-houshu {
  table-layout: fixed;
  text-align: center;
}

.page-governance .section-compliance .box__bg {
  padding: 1.5em;
  background-color: #fff6e0;
}
.page-governance .section-compliance .box__bg + .box__bg {
  margin-top: 32px;
}
.page-governance .section-compliance .box__bg .text-border {
  padding-bottom: 0.5em;
  border-bottom: 3px solid #eb7d3c;
}
.page-governance .section-compliance .box__bg p {
  font-size: 1.6rem;
  text-align: left;
}
.page-governance .section-integration .box__integration {
    border: 1px solid #000;
    padding: 15px;
    margin: 15px 0;
}

.page-governance .section-am .table-am td {
   vertical-align: top; 
}
.page-governance .section-am .table-am td p + p {
  margin-top: 0;
}


/*page-social-responsibility*/
.page-social-responsibility .list-human_rights_risks {
    display: table
}
.page-social-responsibility .list-human_rights_risks > li {
    display: table-row
}
.page-social-responsibility .list-human_rights_risks > li > span {
    display: table-cell;
    padding: .25em 0 .25em .25em;
    vertical-align: top
}
.page-social-responsibility .list-human_rights_risks > li::before {
    display: table-cell;
    padding: .25em 0;
    vertical-align: top;
    width: 1%;
    white-space: nowrap;
    content: attr(data-indent-head)
}

/*------------------------------
  sociery
------------------------------*/

/* human-development */
.page-human .box__university {
  margin-bottom: -1.96%;
  margin-right: -0.98%;
  margin-left: -0.98%;
}
.page-human .box__university .grid {
  width: 31.33%;
  margin: 0 0.98% 1.96%;
}

.page-human .table-human {
  table-layout: fixed;
}
.page-human .table-human td {
  text-align: center;
}

@media screen and (max-width:1150px) {
  .page-human .box__university {
    margin-bottom: -2%;
    margin-right: -1%;
    margin-left: -1%;
  }
  .page-human .box__university .grid {
    width: 48%;
    margin: 0 1% 2%;
  }
   
}
@media screen and (max-width:768px) {
  .page-human .box__university {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: -24px;
    justify-content: center;
  } 
  .page-human .box__university .grid {
    width: 80%;
    margin: 0 0 24px;
  }
}
@media screen and (max-width:540px) {
  .page-human .box__university .grid1 {
    width: 100%;
  }
  .page-human .box__university .grid1 .box__image {
    width: 80%;
    margin: 0 auto 12px;
  }
}

/* initiatives */
.page-initiatives .box__logo {
  max-width: 350px;
  margin: 60px auto;
}
.page-initiatives .section-pri p + ul.list-decimal {
  margin-top: 10px;
}
@media screen and (max-width:850px) {
  .page-initiatives .box__logo {
    max-width: 300px;
  }
}
@media screen and (max-width:540px) {
  .page-initiatives .box__logo {
    max-width: 260px;
  }
}


/* human-rights */
.page-rights .section-risk .list-indent > li {
  margin-left: 1.5em;
  text-indent: -1.5em;
}

/* safety */
.page-safety .table-management td {
  text-align: center;
}