@charset "utf-8";

/* breadcrumb
------------------------------------------------ */
.breadcrumb {
  padding: 10px 64px;
}

.breadcrumb a {
  color: #000;
}

.breadcrumb ul {
  line-height: 1.1;
}

.breadcrumb ul li {
  display: inline;
  font-size: 1.4rem;
}

.breadcrumb ul li+li::before {
  content: '>';
  display: inline;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0 6px;
}

@media screen and (max-width:768px) {
  .breadcrumb {
    padding: 10px;
  }

  .breadcrumb ul li {
    font-size: 1.2rem;
  }
}

/* title
------------------------------------------------ */
.page-title {
  position: relative;
  background-color: #F0F0F0;
  height: 150px;
}

.page-title h1 {
  position: absolute;
  top: 50%;
  color: #0C3191;
  font-size: 3.4rem;
  font-weight: normal;
  text-align: center;
  width: 100%;
  transform: translateY(-50%);
}

.page-title h1 small {
  display: block;
  font-size: 1.6rem;
  margin-top: 10px;
}

.contents h2 {
  color: #0C3191;
  font-size: 2.4rem;
  margin-bottom: 1em;
}

.contents h3 {
  position: relative;
  font-size: 2rem;
  margin-bottom: 1.0em;
  padding-bottom: 0.4em;
}

.contents h3::before {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.8em;
  height: 3px;
  background-color: #24A3E6;
}

.contents h4 {
  margin-bottom: 1.0em;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.contents h4::after {
  display: block;
  content: '';
  margin-left: 10px;
  width: auto;
  height: 1px;
  background-color: #888181;
  flex-grow: 2;
}

@media screen and (max-width:768px) {
  .page-title {
    height: 220px;
  }

  .page-title h1 {
    font-size: 3.2rem;
  }

  .page-title h1 small {
    font-size: 1.4rem;
  }

  .contents h2 {
    font-size: 2.0rem;
    margin-bottom: 0.8em;
  }

  .contents h3 {
    font-size: 1.7rem;
  }
}

/* lead
------------------------------------------------ */
.lead {
  font-size: 2.2rem;
}

@media screen and (max-width:768px) {
  .lead {
    font-size: 1.8rem;
  }
}

/* caption
------------------------------------------------ */
p.caption {
  font-size: 1.4rem;
  margin-top: 0.5em;
}

@media screen and (max-width:768px) {
  p.caption {
    font-size: 1.2rem;
  }
}

/* annotation
------------------------------------------------ */
.annotation {
  margin-top: 10px;
  font-size: 1.4rem;
}

.annotation p {
  display: table;
}

.main .contents__inner>.section .annotation p+p {
  margin-top: 5px;
}

.annotation p span {
  display: table-cell;
}

.annotation p span:first-of-type {
  width: 42px;
}

.annotation p span.narrow {
  width: 1.5em;
}

/* outer-link
------------------------------------------------ */
a.outer-link::after {
  display: inline-block;
  content: '';
  margin-left: 8px;
  width: 12px;
  height: 11px;
  background-image: url(../img/icon-outer-link.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}

/* external-logo
------------------------------------------------ */
.external-logo-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.external-logo {
  margin: 40px 20px;
  height: 110px;
}

.external-logo img {
  height: 100%;
  margin: 0 auto;
}

/* table
------------------------------------------------ */
table {
  margin-top: 30px;
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  font-size: 1.6rem;
  padding: 1em;
}

.cell-left {
  text-align: left;
}

.cell-center {
  text-align: center;
}

.cell-right {
  text-align: right;
}

.cell-white {
  background-color: #ffffff;
}

.cell-border-l {
  border-left: 1px solid #EEEEEE;
}

.cell-border-r {
  border-right: 1px solid #EEEEEE !important;
}

.cell-border-t {
  border-top: 1px solid #EEEEEE;
}

.cell-border-b {
  border-bottom: 1px solid #EEEEEE;
}

.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;
}

.table-description {
  margin-bottom: -10px;
}

@media screen and (max-width:768px) {
  .box__scroll table {
    width: 1200px;
  }

  .scroll-wrap {
    overflow: auto;
    position: relative;
  }

  .scroll-caution {
    margin-top: 30px;
    display: block;
  }

  .main .contents__inner>.section p+p.scroll-caution {
    margin-top: 20px;
  }

  table {
    margin-top: 0.5em;
  }
}

@media screen and (max-width:768px) {

  th,
  td {
    font-size: 1.4rem;
  }
}

/*------------------------------
  table-single
------------------------------*/
.table-single {
  margin-top: 0.5em;
  width: 100%;
}

.table-single tr {
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.table-single tr:last-of-type th {
  border-bottom: 1px solid #ADADAD;
}

.table-single th {
  width: 30%;
  min-width: 256px;
  border-top: 1px solid #ADADAD;
  border-bottom: 1px solid #ffffff;
  background-color: #0C3191;
  color: #ffffff;
}

.table-single td {
  border-bottom: 1px solid #F0F0F0;
  background-color: #ffffff;
}

@media screen and (max-width:768px) {

  .table-single th,
  .table-single td {
    width: 100%;
    display: block;
  }

  .table-single th {
    border-right: 0;
  }
}

/*------------------------------
  table-multi
------------------------------*/
.table-multi thead th {
  border-right: 1px solid #ffffff;
  background-color: #0C3191;
  color: #ffffff;
}

.table-multi thead th:last-of-type {
  border-right: 0;
}

.table-multi tbody tr:nth-of-type(even) {
  background-color: #EEEEEE;
}

.table-multi tbody tr:last-of-type {
  border-bottom: 1px solid #EEEEEE;
}

.table-multi td {
  border-right: 1px solid #EEEEEE;
}

.table-multi tbody tr:nth-of-type(even) td {
  border-right: 1px solid #ffffff;
}

.table-multi tr td:last-of-type {
  border-right: 0;
}

.table-multi th.cell-width--fit,
.table-multi td.cell-width--fit {
  white-space: nowrap !important
}


/* mathjax
------------------------------------------------ */


/* pages
------------------------------------------------ */
/* sustainability */
.page-sustainability .section-philosophy ol {
  margin-left: 30px;
}

.page-sustainability .section-philosophy ol li {
  list-style: decimal;
}

.page-sustainability .section-philosophy ol li+li {
  margin-top: 20px;
}

.page-sustainability .section-message .box__image p {
  font-size: 1.4rem;
  margin-top: 10px;
}

.page-sustainability .margin-r {
  margin-right: 10px;
}

.page-sustainability .library__now {
  background-color: #24A3E6;
  color: #fff;
  padding: 10px 50px;
  display: inline-block;
}

.page-sustainability .library__past {
  border-top: solid 1px #ddd;
}

.page-sustainability .library__past li {
  border-bottom: solid 1px #ddd;
  padding: 8px 0;
}

.page-sustainability .table-50p {
  max-width: 50%;
}

@media screen and (min-width: 901px) {
  .page-sustainability .section-message .box__image {
    width: 25%;
  }

  .page-sustainability .section-message .box__text {
    width: 71%;
  }
}

@media screen and (max-width:900px) {
  .page-sustainability .section-message .box__image {
    width: 70%;
    max-width: 360px;
    margin: 0 auto 30px;
  }
}

.page-promotion table.table-1000 {
  max-width: 1000px;
}

.page-promotion .cell-365 {
  width: 365px;
}

.page-promotion .table-border thead th:last-of-type {
  border-right: 1px solid #0C3191;
}

.page-promotion .table-border tbody tr {
  border: 1px solid #eeeeee;
}

.page-promotion .table-border tbody td:last-of-type {
  border-right: 1px double #eeeeee;
}

.page-promotion .table-multi-color tbody td {
  border: 1px solid #ffffff;
}

.page-promotion .table-multi-color tbody td .sdgs-logo {
  width: 120px;
  margin: 10px auto 0;
  padding: 10px 0;
}

.page-promotion .table-multi-color tbody td .sdgs-logo img {
  width: 80%;
  margin: 0 auto;
}

.page-promotion .table-multi-color .cell-green {
  background-color: #caebd4;
  color: #3c7e4f;
}

.page-promotion .table-multi-color .cell-lightgreen {
  background-color: #e5faeb;
}

.page-promotion .table-multi-color .cell-yellow {
  background-color: #faf1db;
  color: #b8882e;
}

.page-promotion .table-multi-color .cell-lightyellow {
  background-color: #fffaf0;
}

.page-promotion .table-multi-color .cell-blue {
  background-color: #dbedfc;
  color: #357bb5;
}

.page-promotion .table-multi-color .cell-lightblue {
  background-color: #eef7ff;
}

.page-promotion .table-multi-color .cell-gray {
  background-color: #eeeeee;
}

.page-promotion .section-materiality .box__materiality,
.page-promotion .section-materiality .box__attempt {
  display: table;
}

.page-promotion .section-materiality .box__materiality span,
.page-promotion .section-materiality .box__attempt span {
  display: table-cell;
}

.page-promotion .section-materiality .box__materiality span:first-of-type,
.page-promotion .section-materiality .box__attempt span:first-of-type {
  padding-right: 5px;
}

.page-promotion .flow {
  margin-top: 20px;
}

.page-promotion .flow p span:first-of-type {
  display: block;
  margin-bottom: 10px;
}

.page-promotion .directors table {
  width: 50%;
}

@media screen and (max-width:1000px) {
  .page-promotion .section-materiality .scroll-caution--wide {
    display: block;
  }

  .page-promotion .section-materiality .scroll-wrap--wide {
    overflow: auto;
    position: relative;
  }

  .page-promotion .section-materiality .scroll-wrap--wide table {
    width: 1000px;
    margin-top: 0.5em;
  }

  .page-promotion .directors table {
    width: 100%;
  }
}

/* sponser */
.page-sponser .section-message .box__image p {
  font-size: 1.4rem;
  margin-top: 10px;
}

.page-sponser .section-efforts .box__layout {
  width: 80%;
  max-width: 420px;
  margin: 30px auto 0;
}

.page-sponser .section-efforts .box__layout .box__image+.box__image {
  margin-top: 25px;
}

@media screen and (min-width: 901px) {
  .page-sponser .section-message .box__image {
    order: 0;
    width: 25%;
  }

  .page-sponser .section-message .box__text {
    order: 1;
    width: 71%;
  }
}

@media screen and (max-width: 900px) {
  .page-sponser .section-message .box__image {
    width: 70%;
    max-width: 360px;
    margin: 0 auto 30px;
  }
}

/* external */
.page-external .main .box__horizontal .box__image {
  width: 300px;
}

.page-external .main .box__horizontal .box__text {
  flex-grow: 1;
  padding-right: 3%;
}

.page-external .external-logo {
  margin: 20px;
}

.page-external .section-gresb .external-logo {
  height: 170px;
  margin: 40px 20px 0;
}

.page-external .section-tcfd .external-logo {
  height: 130px;
}

.page-external .section-ungc .external-logo {
  height: 200px;
}

.page-external .section-ungc .box__single .box__image {
  width: 80%;
  min-width: 300px;
  margin: 20px auto 0;
}

@media screen and (max-width: 900px) {
  .page-external .main .box__horizontal .box__image {
    margin: 30px auto 0;
    order: 1;
  }

  .page-external .main .box__horizontal .box__text {
    order: 0;
  }

  .page-external .external-logo {
    margin: 0;
  }
}

@media screen and (max-width: 540px) {
  .section-gresb .external-logo-wrapper {
    display: block;
  }

  .page-external .section-gresb .external-logo {
    margin: 30px auto 0;
  }

  .page-external .section-gresb .external-logo+.external-logo {
    margin-top: 10px;
  }
}

/* building */
.page-building .dbj_img {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.page-building .dbj_img_item {
  width: calc(100% / 3);
  box-sizing: border-box;
  border-right: 1px solid #EEEEEE;
  margin-bottom: 20px;
}

.page-building .dbj_img_item:nth-of-type(3n) {
  border-right: none;
}

.page-building .dbj_img_item_property {
  max-width: 80%;
  margin: 10px auto;
}

.page-building .dbj_img_item_property img {
  max-height: 400px;
}

.page-building .dbj_img_item_logo {
  margin: 0 auto 10px;
}

.page-building .dbj_img_item_logo img {
  max-width: 140px;
  max-height: 140px;
}

.page-building .section-dbj table tbody td.cell-white {
  border-right: 1px solid #EEEEEE;
}

.page-building .section-dbj table tbody td.cell-white:last-of-type {
  border-right: 0;
}

.page-building .section-bels table tbody td {
  text-align: center;
}

.page-building .section-bels table tbody td:first-of-type {
  text-align: left;
}

.page-building .section-dbj .table-multi.table-dbj tbody tr:last-of-type {
  border-bottom: 0;
}

.page-building .table-680 {
  max-width: 680px;
}

@media screen and (max-width:768px) {
  .page-building .section-dbj table {
    max-width: 680px;
  }
}


/* climate */
.page-climate .section-tcfd .external-logo {
  height: 60px;
}

.page-climate .section-strategy ul {
  margin-left: 25px;
}

.page-climate .section-strategy ul li {
  list-style-type: disc;
  margin-top: 20px;
}

.page-climate .section-strategy table td {
  background-color: #ffffff;
}

.page-climate .section-strategy table td.cell-blue {
  background-color: #0C3191;
  border-top: 1px solid #ffffff;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
}

.page-climate .section-strategy table .cell-140 {
  width: 140px;
}

.page-climate .section-strategy table .cell-200 {
  width: 200px;
}

.page-climate .section-strategy table .cell-border-b {
  border-bottom: 1px solid #eeeeee;
}

.page-climate .section-strategy table .cell-border-r {
  border-right: 1px solid #eeeeee;
}

.page-climate .section-risk p span {
  display: block;
  margin-bottom: 5px;
}

@media screen and (max-width:1100px) {
  .page-climate .section-strategy .scroll-caution--wide {
    margin-top: 20px;
    display: block;
  }

  .page-climate .section-strategy .scroll-wrap--wide {
    overflow: auto;
    position: relative;
  }

  .page-climate .section-strategy .scroll-wrap--wide table {
    width: 1200px;
    margin-top: 0.5em;
  }
}

/* environment */
.page-environment .table-680 {
  max-width: 680px;
}

.page-environment .main .contents__inner>.section>.section {
  margin-top: 50px;
}

.page-environment .section-target p span {
  display: block;
  margin-bottom: 5px;
}

.page-environment .section-data table tbody td {
  text-align: right;
}

.page-environment .section-data table tbody td:first-of-type {
  text-align: left;
}

.page-environment .section-data table tbody td.cell-center {
  text-align: center;
}

.page-environment .section-data table tbody td.cell-left {
  text-align: left;
}

.page-environment .section-data th.cell-border-b {
  border-bottom: 1px solid #ffffff;
}

.page-environment .section-data .cell-padding-l {
  padding-left: 50px;
}

.page-environment .section-data .cell-white {
  background-color: #ffffff;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}

.page-environment .section-data .cell-wide {
  width: 22%;
}

.page-environment .section-data .cell-narrow {
  width: 17%;
}

.page-environment .section-data .cell-border-r {
  border-right: 1px solid #EEEEEE;
}

.page-environment .section-data .cell-border-r-white {
  border-right: 1px solid #ffffff;
}

.page-environment .main .contents__inner>.section.section-data>.section {
  margin-top: 40px;
}

.page-environment .section-data .list-disc {
  padding-left: 20px;
}

.page-environment .section-data .list-disc li {
  list-style-type: disc;
}

.page-environment .section-data .list-disc li+li {
  margin-top: 10px;
}

.page-environment .section-data .list-disc+p {
  margin-top: 10px;
}

.page-environment .section-effort .margin-t {
  margin-top: 20px;
}

.page-environment .section-effort .box__grid {
  max-width: 680px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.page-environment .section-effort .box__grid .grid {
  margin-top: 1%;
  margin-right: 2%;
  width: 32%;
  text-align: center;
}

.page-environment .section-effort .box__grid .grid:nth-of-type(3) {
  margin-right: 0;
}

.page-environment .section-effort .box__grid .box__image.narrow img {
  margin: 0;
}

.page-environment .section-effort .box__grid .box__image+p {
  margin-top: 10px;
}

.page-environment .section-effort .box__grid .box__image img {
  margin: 0 auto;
}

.page-environment .vertical-align-top {
  vertical-align: top;
}

.page-environment .section-energy .sample_tenant {
  display: flex;
  align-items: end;
  margin: 10px 0 20px 0;
}

.page-environment .section-energy .sample_tenant .sample_tenant__text {
  margin-left: 10px;
}

.page-environment .table-led thead th {
  border-right: 1px solid #ffffff;
  background-color: #0C3191;
  color: #ffffff;
}

.page-environment .table-led thead th:last-of-type {
  border-right: 0;
}

.page-environment .table-led th,
.page-environment .table-led td {
  border-right: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}

.page-environment .table-led tr td:last-of-type {
  border-right: 0;
}

@media screen and (max-width:1200px) {
  .page-environment .section-data .scroll-caution--wide {
    display: block;
  }

  .page-environment .section-data .scroll-wrap--wide {
    overflow: auto;
    position: relative;
  }

  .page-environment .section-data .scroll-wrap--wide table {
    width: 1200px;
    margin-top: 0.5em;
  }
}

@media screen and (max-width:768px) {
  .page-environment .main .contents__inner>.section>.section {
    margin-top: 10%;
  }

  .page-environment .section-effort .box__grid .box__image+p {
    font-size: 1.2rem;
  }

  .page-environment .section-energy .sample_tenant {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .page-environment .section-energy .sample_tenant .sample_tenant__text {
    margin-left: 0;
  }

}

/* social */
.page-social .table-680 {
  max-width: 680px;
}

.page-social .section-tenant .table-3column th,
.page-social .section-tenant .table-3column td {
  width: 33.33%;
}

.page-social .section-tenant .box__grid,
.page-social .section-disasterresponse .box__grid,
.page-social .section-localcommunity .box__grid {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 680px;
}

.page-social .section-tenant .box__grid.narrow {
  max-width: 500px;
}

.page-social .section-tenant .box__grid .grid,
.page-social .section-disasterresponse .box__grid .grid,
.page-social .section-localcommunity .box__grid .grid {
  margin-top: 1%;
  margin-right: 2%;
  width: 32%;
  text-align: center;
}

.page-social .section-localcommunity .box__grid {
  align-items: center;
}

.page-social .section-localcommunity .box__grid .grid__text {
  text-align: left;
  margin-bottom: 1em;
  white-space: nowrap;
}

.page-social .section-tenant .box__grid .grid:nth-of-type(3) {
  margin-right: 0;
}

.page-social .section .box__grid .box__image+p {
  margin-top: 5px;
}

.page-social .section .box__grid .box__image img {
  margin: 0 auto;
}

.page-social .section-communicaton .table-caption+table {
  margin-top: 10px;
}

.page-social .section-communicaton table+p {
  margin-top: 10px;
}

.page-social .section-tenant .green table tbody td,
.page-social .section-communicaton .promotion table tbody td {
  text-align: right;
}

.page-social .section-tenant .green table tbody td:first-of-type,
.page-social .section-communicaton .promotion table tbody td:first-of-type {
  text-align: left;
}

.page-social .list-disc {
  margin: 5px 0 20px 25px;
}

.page-social .list-disc li {
  list-style-type: disc;
}

.page-social .table-questionnaire {
  border-top: 1px solid #EEEEEE;
  margin: 10px 0 20px 0;
}

.page-social .table-questionnaire th:first-child {
  width: 260px;
}

.page-social .section-disasterresponse .box__grid.box_disasterresponse {
  flex-wrap: nowrap;
  max-width: 100%;
}

.page-social .section-disasterresponse .box__grid.box_disasterresponse .grid {
  width: 218px;
}

.page-social .furusato_lead {
  font-size: 2.2rem;
  margin-top: 40px;
  color: #24A3E6;
}

.page-social h3.furusato-noborder-solid {
  font-weight: normal;
}

.page-social h3.furusato-noborder-solid::before {
  display: none;
  content: none;
}

.page-social .section-localcommunity .box_social_furusato h5.larger {
  font-size: 1.6rem;
}

.page-social .section-localcommunity .list_grid_social_furusato {
  margin-top: 12px;
  display: flex;
  gap: 20px;
}

.page-social .section-localcommunity .example_social_furusato {
  position: relative;
}

.page-social .section-localcommunity .example_social_furusato img {
  margin: 0;
}

.page-social .section-localcommunity .grid_social_furusato {
  display: flex;
  gap: 36px;
  margin-top: 6px;
}

.example_social_furusato:last-of-type::before {
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 1.5em;
  margin: auto;
  display: inline-block;
  content: "";
  height: 16px;
  width: 10px;
  background: #d4d1d1;
  clip-path: polygon(0 0, 0 100%, 100% 50%);;
}

.example_social_furusato:last-of-type::after {
  position: absolute;
  left: -34px;
  top: 0;
  bottom: 1.5em;
  margin: auto;
  display: inline-block;
  content: "";
  width: 32px;
  height: 4px;
  background: #d4d1d1;
}

.page-social .section-localcommunity .social-center {
  text-align: center;
}

@media screen and (max-width:1200px) {
  .page-social .section-localcommunity .box__grid .grid__text {
    white-space: normal;
    width: 64%;
  }
}

@media screen and (max-width:768px) {
  .page-social .section-disasterresponse .box__grid.box_disasterresponse {
    flex-wrap: wrap;
  }

  .page-social .section-disasterresponse .box__grid.box_disasterresponse .grid {
    width: 32%;
  }

  .page-social .section-localcommunity .box__grid .grid__text {
    width: 100%;
  }

  .page-social .section-localcommunity .list_grid_social_furusato {
    flex-direction: column;
  }

}


/* employee */
.page-employee .table-personnelassessment td {
  padding: 0.5em 1em;
}

.page-employee .table-personnelassessment .cell-big {
  width: 39%;
}

.page-employee .table-personnelassessment .cell-small {
  width: 13%;
}

.page-employee .table-personnelassessment .cell-empty {
  width: 2%;
}

.page-employee .table-personnelassessment .cell-center {
  text-align: center;
}

.page-employee .table-personnelassessment .cell-bdr {
  border: 1px solid #EEEEEE;
}

.page-employee .table-personnelassessment .cell-bdr2 {
  border: 1px solid #fff;
}

.page-employee .table-personnelassessment .cell-gray {
  background: #f0f0f0;
}

.page-employee .table-personnelassessment .cell-ttl01 {
  background-color: #0C3191;
  color: #ffffff;
  font-weight: bold;
}

.page-employee .table-personnelassessment .cell-ttl02 {
  background-color: #0C3191;
  color: #ffffff;
  font-weight: bold;
}

.page-employee .table-personnelassessment .cell-arrow {
  height: 70px;
}

.page-employee .table-personnelassessment .img-arrow {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 30px;
  color: #0C3191;
  background: currentColor;
  transform: rotate(90deg);
  margin: -21px auto auto auto;
}

.page-employee .table-personnelassessment .img-arrow:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  width: 0;
  height: 0;
  border: 25px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-right-width: 0;
  border-bottom-color: transparent;
}

.page-employee .box__single.small {
  max-width: 400px;
}

.page-employee .box__single.small img {
  border: 1px solid #eeeeee;
}

.page-employee .list-disc {
  margin: 5px 0 20px 25px;
}

.page-employee .list-disc li {
  list-style-type: disc;
}

/* governance */
.page-governance main .annotation.small {
  margin-top: 20px;
}

.page-governance main .annotation p span:first-of-type {
  width: 20px;
}

.page-governance .table-multi thead th.cell-border-b {
  border-bottom: 1px solid #ffffff;
}

.page-governance .table-multi tbody tr>td.cell-border-r {
  border-right: 1px double #eeeeee;
}

.page-governance .table-multi tbody tr>td.cell-border-b {
  border-bottom: 1px double #eeeeee;
}

.page-governance .cell-110 {
  width: 110px;
}

.page-governance .cell-140 {
  width: 140px;
}

.page-governance .cell-210 {
  width: 210px;
}

.page-governance .cell-260 {
  width: 260px;
}

.page-governance .box__single80 {
  width: 80%;
  margin: 0 auto;
}

.page-governance p+.box__single {
  margin-top: 20px;
}

.page-governance .main .box__single.small .box__image {
  justify-content: flex-start;
}

.page-governance .box__single+.box__single {
  margin-top: 20px;
}

.page-governance .box__single.small {
  max-width: 400px;
}

.page-governance .box__single.small img {
  border: 1px solid #eeeeee;
}

.page-governance table li+li {
  margin-top: 10px;
}

.page-governance ol li.indent,
.page-governance ul li.indent {
  margin-top: 20px;
  padding-left: 1.28em;
  line-height: 1.5;
  text-indent: -1.25em;
}

.page-governance ol li.indent+li,
.page-governance ul li.indent+li {
  margin-top: 10px;
}

.page-governance .box__scroll+p {
  margin-top: 10px;
}

.page-governance .margin-t {
  margin-top: 20px;
}

.page-governance .main .contents__inner>.section p+p.margin-t-10 {
  margin-top: 10px;
}

@media screen and (max-width:1100px) {
  .page-governance .scroll-caution--wide {
    display: block;
  }

  .page-governance .scroll-wrap--wide {
    overflow: auto;
    position: relative;
  }

  .page-governance .scroll-wrap--wide table {
    width: 1200px;
    margin-top: 0.5em;
  }
}

/* compliance */
.page-compliance main .annotation.small {
  margin-top: 20px;
}

.page-compliance main .annotation p span:first-of-type {
  width: 20px;
}

.page-compliance .table-multi thead th.cell-border-b {
  border-bottom: 1px solid #ffffff;
}

.page-compliance .table-multi tbody tr>td.cell-border-r {
  border-right: 1px double #eeeeee;
}

.page-compliance .table-multi tbody tr>td.cell-border-b {
  border-bottom: 1px double #eeeeee;
}

.page-compliance .cell-110 {
  width: 110px;
}

.page-compliance .cell-140 {
  width: 140px;
}

.page-compliance .cell-210 {
  width: 210px;
}

.page-compliance .cell-260 {
  width: 260px;
}

.page-compliance .box__single80 {
  width: 80%;
  margin: 0 auto;
}

.page-compliance p+.box__single {
  margin-top: 20px;
}

.page-compliance .main .box__single.small .box__image {
  justify-content: flex-start;
}

.page-compliance .box__single+.box__single {
  margin-top: 20px;
}

.page-compliance .box__single.small {
  max-width: 400px;
}

.page-compliance .box__single.small img {
  border: 1px solid #eeeeee;
}

.page-compliance table li+li {
  margin-top: 10px;
}

.page-compliance ol li.indent,
.page-compliance ul li.indent {
  margin-top: 20px;
  padding-left: 1.28em;
  line-height: 1.5;
  text-indent: -1.25em;
}

.page-compliance ol li.indent+li,
.page-compliance ul li.indent+li {
  margin-top: 10px;
}

.page-compliance .box__scroll+p {
  margin-top: 10px;
}

.page-compliance .margin-t {
  margin-top: 20px;
}

.page-compliance .main .contents__inner>.section p+p.margin-t-10 {
  margin-top: 10px;
}

@media screen and (max-width:1100px) {
  .page-compliance .scroll-caution--wide {
    display: block;
  }

  .page-compliance .scroll-wrap--wide {
    overflow: auto;
    position: relative;
  }

  .page-compliance .scroll-wrap--wide table {
    width: 1200px;
    margin-top: 0.5em;
  }
}

/* risk */
.page-risk main .annotation.small {
  margin-top: 20px;
}

.page-risk main .annotation p span:first-of-type {
  width: 20px;
}

.page-risk .table-multi thead th.cell-border-b {
  border-bottom: 1px solid #ffffff;
}

.page-risk .table-multi tbody tr>td.cell-border-r {
  border-right: 1px double #eeeeee;
}

.page-risk .table-multi tbody tr>td.cell-border-b {
  border-bottom: 1px double #eeeeee;
}

.page-risk .cell-110 {
  width: 110px;
}

.page-risk .cell-140 {
  width: 140px;
}

.page-risk .cell-210 {
  width: 210px;
}

.page-risk .cell-260 {
  width: 260px;
}

.page-risk .box__single80 {
  width: 80%;
  margin: 0 auto;
}

.page-risk p+.box__single {
  margin-top: 20px;
}

.page-risk .main .box__single.small .box__image {
  justify-content: flex-start;
}

.page-risk .box__single+.box__single {
  margin-top: 20px;
}

.page-risk .box__single.small {
  max-width: 400px;
}

.page-risk .box__single.small img {
  border: 1px solid #eeeeee;
}

.page-risk table li+li {
  margin-top: 10px;
}

.page-risk ol li.indent,
.page-risk ul li.indent {
  margin-top: 20px;
  padding-left: 1.28em;
  line-height: 1.5;
  text-indent: -1.25em;
}

.page-risk ol li.indent+li,
.page-risk ul li.indent+li {
  margin-top: 10px;
}

.page-risk .box__scroll+p {
  margin-top: 10px;
}

.page-risk .margin-t {
  margin-top: 20px;
}

.page-risk .main .contents__inner>.section p+p.margin-t-10 {
  margin-top: 10px;
}

@media screen and (max-width:1100px) {
  .page-risk .scroll-caution--wide {
    display: block;
  }

  .page-risk .scroll-wrap--wide {
    overflow: auto;
    position: relative;
  }

  .page-risk .scroll-wrap--wide table {
    width: 1200px;
    margin-top: 0.5em;
  }
}

/* green-finance */
.page-green-finance ol li.indent,
.page-green-finance ul li.indent {
  margin-top: 20px;
  padding-left: 1.4em;
  line-height: 1.5;
  text-indent: -1.4em;
}

.page-green-finance ol li.indent+li,
.page-green-finance ul li.indent+li {
  margin-top: 10px;
}

.page-green-finance .box__scroll+p {
  margin-top: 10px;
}

.page-green-finance .table-greenfinance_management {
  width: auto;
}

.page-green-finance .table-greenfinance_management th.cell-blue,
.page-green-finance .table-greenfinance_management td.cell-blue {
  background-color: #0C3191;
  border-top: 1px solid #ffffff;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
}

.page-green-finance .table-greenfinance_reporting th,
.page-green-finance .table-greenfinance_reporting td {
  padding: 1em .5em;
}

.page-green-finance .list-disc {
  margin: 5px 0 20px 25px;
}

.page-green-finance .list-disc li {
  list-style-type: disc;
}