@charset "UTF-8";
/*-------------------------------

	CSR common

---------------------------------*/
.l-csr_body {
  display: flex;
  justify-content: space-between;
  min-width: 1200px;
}

@media only screen and (max-width: 767px) {
  .l-csr_body {
    display: block;
    min-width: 100%;
  }
}

.l-csr_content {
  flex-basis: calc(100% - 290px);
}

@media only screen and (max-width: 767px) {
  .l-csr_content {
    flex-basis: 100%;
  }
}

.l-csr_nav {
  flex-basis: 250px;
}

@media only screen and (max-width: 767px) {
  .l-csr_nav {
    flex-basis: 100%;
  }
}

@media only screen and (max-width: 767px) {
  ul.topic-list {
    margin-bottom: 10px;
  }
}

.top-title {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.top-title--csr-index {
  background: url(../img/csr_top.png) no-repeat right;
  background-size: 100%;
}

.top-title::after {
  content: "";
  padding-top: 33.33%;
  display: block;
}

@media only screen and (max-width: 767px) {
  .top-title {
    width: calc(100% + 40px);
    margin: 0 -20px 48px;
    overflow: visible;
  }
}

.top-img-title {
  width: 100%;
  height: 68px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(11, 31, 100, 0.8);
  color: #fff;
  box-sizing: border-box;
  padding: 0 0 0 50px;
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 100;
  letter-spacing: 0.2em;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .top-img-title {
    font-size: 18px;
    height: 38px;
    padding-left: 20px;
    bottom: -38px;
  }
  .top-img-title--long {
    letter-spacing: 0;
    font-size: 15px;
  }
}

@media only screen and (max-width: 767px) {
  html[lang="en"] .top-img-title--long {
    font-size: 14px;
  }
}

.top-img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.csr_nav__title {
  font-weight: bold;
  border-bottom: 3px solid #0b1d65;
  padding: 0 0 10px 10px;
  font-size: 16px;
  letter-spacing: 0px;
  color: #444;
}

.csr_nav__grp--main {
  margin: 0 0 30px;
}

@media only screen and (max-width: 767px) {
  .csr_nav__grp {
    display: flex;
    flex-wrap: wrap;
  }
}

.csr_nav__item {
  line-height: 1.2;
  border-bottom: 1px solid #d2d0e5;
}

.csr_nav__item a {
  display: flex;
  height: 50px;
  align-items: center;
  box-sizing: border-box;
  padding: 0 10px 0 30px;
  transition: background 0.2s ease-in-out;
  position: relative;
}

.csr_nav__item a::before {
  content: "";
  border-right: 1px solid #0b1d65;
  border-top: 1px solid #0b1d65;
  width: 5px;
  height: 5px;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
  position: absolute;
  top: 50%;
  left: 12px;
  z-index: 2;
  transition: 0.2s ease-in-out;
}

.csr_nav__item a:hover {
  background: #f0effc;
  text-decoration: none;
  color: #0b1d65;
}

.csr_nav__item a:hover::before {
  -webkit-transform: translate(2px, -50%) rotate(45deg);
  transform: translate(2px, -50%) rotate(45deg);
}

html[lang="en"] .csr_nav__item a {
  height: auto;
  min-height: 50px;
  padding: 10px 10px 10px 30px;
}

@media only screen and (max-width: 767px) {
  .csr_nav__item {
    flex-basis: 50%;
    box-sizing: border-box;
  }
  .csr_nav__item:nth-child(odd) {
    border-right: 1px solid #d2d0e5;
  }
  .csr_nav__item:last-child {
    border-right: none;
  }
}

.csr_nav__item--sub {
  font-size: 12px;
}

.csr_links {
  margin: 0 0 30px;
}

@media only screen and (max-width: 767px) {
  .csr_links {
    margin: 0 0 10px;
  }
}

.csr_links__grp {
  display: flex;
  flex-wrap: wrap;
}

.csr_links__item {
  margin: 0 20px 10px 0;
}

@media only screen and (max-width: 767px) {
  .csr_links__item {
    margin: 0 6px 6px 0;
    font-size: 11px;
  }
}

.csr_links__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #d2d0e5;
  border-radius: 8px;
  padding: 0px 20px 0 32px;
  height: 30px;
  transition: background 0.2s ease-in-out;
  position: relative;
  line-height: 1.2;
}

.csr_links__item a:hover {
  background: #f0effc;
  text-decoration: none;
  color: #0b1d65;
}

.csr_links__item a::before {
  content: "";
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 5px;
  height: 5px;
  -webkit-transform: translate(0, -50%) rotate(-45deg);
  transform: translate(0, -50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 12px;
  z-index: 2;
}

.csr_links__item a::after {
  content: "";
  background: #d2d0e5;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  left: 6px;
  z-index: 1;
}

.csr_notice {
  text-align: right;
  font-size: 12px;
  margin: 0 0 20px;
}

@media only screen and (max-width: 767px) {
  .csr_notice {
    font-size: 10px;
    margin: 0 0 6px;
  }
}

.csr_block {
  margin: 0 0 40px;
  text-align: justify;
}

@media only screen and (max-width: 767px) {
  .csr_block {
    margin: 0 0 20px;
  }
}

.csr_block p {
  margin-bottom: 1em;
  text-align: justify;
}

.csr_block__body {
  padding: 30px;
}

@media only screen and (max-width: 767px) {
  .csr_block__body {
    padding: 10px;
  }
}

.csr_block__body2 {
  padding: 30px;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .csr_block__body2 {
    padding: 10px;
    display: block;
  }
}

.csr_block--child {
  background: #f7f9f9;
  padding: 30px;
}

@media only screen and (max-width: 767px) {
  .csr_block--child {
    padding: 15px;
  }
}

.csr_block--hasmt {
  margin-top: 30px;
}

.csr_title {
  font-weight: bold;
  color: #444;
  margin: 0 0 10px;
  box-sizing: boder-box;
}

.csr_title--l1 {
  background: #0b1d65;
  color: #fff;
  font-size: 20px;
  min-height: 43px;
  display: flex;
  align-items: center;
  padding: 0 0 0 20px;
}

@media only screen and (max-width: 767px) {
  .csr_title--l1 {
    font-size: 16px;
    min-height: 34px;
    font-weight: normal;
    padding: 3px 12px;
    line-height: 1.2;
  }
}

.csr_title--l2 {
  font-size: 18px;
  border-bottom: 2px solid #0b1d65;
  padding: 0 0 10px;
  margin: 0 0 20px;
}

@media only screen and (max-width: 767px) {
  .csr_title--l2 {
    font-size: 16px;
    margin: 0 0 16px;
  }
}

.csr_title--hasmt {
  margin-top: 30px;
}

html[lang="en"] .csr_title--l2 {
  line-height: 1.4;
}

.csr_title--l3 {
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  .csr_title--l3 {
    font-size: 14px;
  }
}

.imglist__grp {
  display: flex;
}

.imglist__item {
  flex-basis: 31%;
  margin: 0 3% 0 0;
}

@media only screen and (max-width: 767px) {
  .imglist__item {
    flex-basis: 49%;
  }
}

.imglist__item figure img {
  width: 100%;
  height: auto;
}

.imglist__item figcaption {
  font-size: 12px;
  color: #666;
  padding: 6px 0 0;
}

@media only screen and (max-width: 767px) {
  .imglist__item figcaption {
    font-size: 10px;
  }
}

.imgbox {
  margin: 20px 0;
}

@media only screen and (max-width: 767px) {
  .imgbox {
    width: calc(100% + 20px);
    margin: 20px -10px;
  }
}

.text-flex {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .text-flex {
    width: 100%;
  }
}

.imgbox-flex {
  margin: 10px 0 0 20px;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .imgbox-flex {
    width: calc(100% + 20px);
    margin: 20px -10px;
  }
}

.imgfull {
  width: 100%;
  height: auto;
}

.img_label,
.table_label {
  font-weight: bold;
  color: #444;
  margin: 0 0 10px;
  position: relative;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .img_label,
  .table_label {
    font-size: 14px;
    padding: 0 10px;
  }
}

.text-flex2 {
  width: 100%;
  padding: 0 20px;
}

.logolist__grp {
  display: flex;
  justify-content: space-between;
}

.logolist__grp--3col {
  justify-content: space-around;
}

@media only screen and (max-width: 767px) {
  .logolist__grp--3col {
    display: block;
  }
}

.logolist__item {
  flex-basis: 24%;
  margin: 0 0 0 0;
}

@media only screen and (max-width: 767px) {
  .logolist__item {
    zoom: 1;
  }
  .logolist__item:before,
  .logolist__item:after {
    content: "";
    display: table;
  }
  .logolist__item:after {
    clear: both;
  }
}

.logolist__item figure {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #fff;
  margin: 0 0 10px;
}

.logolist__item figure::after {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.logolist__item figure img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .logolist__item figure {
    width: 100px;
    float: left;
    margin-right: 10px;
  }
}

.logolist__name {
  font-size: 15px;
  font-weight: bold;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .logolist__name {
    font-size: 12px;
    line-height: 1.2;
    padding: 10px 0 0;
  }
}

.logolist__name a {
  color: #0b1d65;
}

.logolist--subname {
  font-size: 12px;
  color: #888;
}

.out_link {
  position: relative;
}

.out_link::after {
  content: "";
  display: inline-flex;
  width: 10px;
  height: 10px;
  background: url(/shared/img/icn_blank.png) no-repeat;
  background-size: 100%;
  margin: 0 0 0 5px;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

@media only screen and (max-width: 767px) {
  .out_link::after {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    margin: 0 0 0 3px;
  }
}

.linkbox {
  position: relative;
  padding: 0 0 18px 20px;
  box-sizing: border-box;
}

.linkbox::after {
  content: "";
  border-left: 2px solid #3c74cc;
  display: inline-block;
  width: 0px;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.linkbox__label {
  font-weight: bold;
  color: #444;
  margin: 0 0 4px;
  position: relative;
}

.linkbox a {
  border: 1px solid #d2d0e5;
  border-radius: 5px;
  padding: 20px;
  margin: 0 0 20px;
  display: block;
  transition: background 0.2s ease-in-out;
  background: #fff;
  zoom: 1;
}

.linkbox a:before,
.linkbox a:after {
  content: "";
  display: table;
}

.linkbox a:after {
  clear: both;
}

.linkbox a:hover {
  text-decoration: none;
  background: #f0effc;
}

.linkbox a:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .linkbox a {
    padding: 12px;
  }
}

.linkbox__title {
  font-weight: bold;
  margin: 0 0 6px;
  color: #444;
}

.linkbox__body {
  font-size: 10px;
  color: #888;
}

.linkbox__url {
  font-size: 10px;
  color: #555;
}

.linkbox__img {
  width: 200px;
  max-height: 200px;
  overflow: hidden;
  float: right;
  margin-left: 20px;
}

@media only screen and (max-width: 767px) {
  .linkbox__img {
    width: 100px;
    margin-left: 12px;
  }
}

.linkbox__img img {
  width: 100%;
  height: auto;
}

.linkbox__imglogo {
  width: 150px;
  max-height: 35px;
  overflow: hidden;
  float: right;
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  .linkbox__imglogo {
    width: 100px;
    margin-top: 5px;
  }
}

.linkbox__imglogo img {
  width: 100%;
  height: auto;
}

.linkbox__imglogo2 {
  max-width: 150px;
  height: 40px;
  overflow: hidden;
  float: right;
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  .linkbox__imglogo2 {
    height: 30px;
    margin-top: 5px;
  }
}

.linkbox__imglogo2 img {
  width: auto;
  height: 100%;
}

.instance_box__label {
  font-weight: bold;
  display: inline-block;
  margin: 0 0 14px;
  border-radius: 5px;
  padding: 5px 20px;
  position: relative;
  background: #0b1d65;
  color: #fff;
  font-size: 12px;
}

@media only screen and (max-width: 767px) {
  .instance_box__label {
    margin: 0 0 10px;
    font-size: 10px;
    padding: 2px 12px;
  }
}

.instance_box__item {
  display: block;
  margin: 0 0 20px;
  zoom: 1;
  border: 1px solid #d2d0e5;
  background: #fff;
  padding: 20px;
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.instance_box__item:before,
.instance_box__item:after {
  content: "";
  display: table;
}

.instance_box__item:after {
  clear: both;
}

@media only screen and (max-width: 767px) {
  .instance_box__item {
    padding: 15px;
    margin: 0 0 10px;
  }
}

.instance_box__title {
  font-weight: bold;
  margin: 0 0 6px;
  color: #444;
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  .instance_box__title {
    font-size: 14px;
    line-height: 1.4;
  }
}

.instance_box__body {
  font-size: 13px;
}

@media only screen and (max-width: 767px) {
  .instance_box__body {
    font-size: 12px;
  }
}
.instance_box__img {
  width: 200px;
  max-height: 200px;
  overflow: hidden;
  float: right;
  margin-left: 20px;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .instance_box__img {
    width: 100px;
    margin-left: 12px;
    margin-bottom: 10px;
  }
}

.instance_box__img img {
  width: 100%;
  height: auto;
}

.instance_box__img--fl {
  float: left;
  margin: 0 20px 0 0;
}

.instance_box__img--fn {
  float: none;
  margin: 0 0 20px 0;
}

@media only screen and (max-width: 767px) {
  .instance_box__img--spc {
    float: none;
    margin: 0 auto 20px;
  }
}

.instance_box__btn {
  padding: 10px 0 0;
}
.instance_box__btn--hasmgbtm {
  margin-bottom: 2em;
}
.instance_box__btn2 {
  padding: 10px 0 0;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .instance_box__btn2 {
    display: block;
  }
}

.scenario {
  display: block;
  margin: 0 0 20px;
  zoom: 1;
  border: 1px solid #d2d0e5;
  background: #fff;
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  padding-bottom: 20px;
}
.scenario__title {
  font-weight: bold;
  margin: 0 0 6px;
  color: #444;
  font-size: 16px;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .scenario__title {
    font-size: 14px;
    padding: 10px;
  }
}
.scenario__grp {
  display: flex;
}
.scenario__item {
  width: 50%;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .scenario__item {
    padding: 0 10px;
  }
}
.scenario__grp .scenario__item:first-child {
  border-right: 1px solid #d2d0e5;
}
.scenario__label {
}
.scenario__body {
  font-size: 13px;
}
@media only screen and (max-width: 767px) {
  .scenario__body {
    font-size: 12px;
  }
}
.scenario__body_top {
  padding-bottom: 1em;
  border-bottom: 1px solid #d2d0e5;
}
.scenario__body_bottom {
  padding-top: 1em;
}
.csr_large {
  font-size: 26px;
  color: #0b1d65;
}

@media only screen and (max-width: 767px) {
  .csr_large {
    font-size: 19px;
  }
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #0b1d65;
  border-radius: 5px;
  width: auto;
  position: relative;
  transition: background 0.2s ease-in-out;
  color: #0b1d65;
  background: #fff;
  line-height: 1.2;
}

.btn:hover {
  text-decoration: none;
  background: #f0effc;
}

.btn--small {
  width: 280px;
  height: 30px;
  font-size: 9px;
}

.btn--out::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: url(/shared/img/icn_blank.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.btn--small-if {
  display: inline-flex;
  height: 30px;
  font-size: 12px;
}

.btn--small-if.btn--out {
  padding-right: 30px;
  padding-left: 10px;
}

.table_label--s {
  font-size: 14px;
  padding: 0;
}

.table_block {
  padding: 25px 0 0;
}

@media only screen and (max-width: 767px) {
  .table_block {
    padding: 0px 0 0;
    width: calc(100% + 20px);
    margin: 0 -10px 0;
  }
}

.table_block--2 {
  padding: 50px 0 0;
}

@media only screen and (max-width: 767px) {
  .table_block--2 {
    padding: 24px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .table_block--s {
    padding: 15px 0 0;
    width: 100%;
    margin: 0 0 0;
  }
}

.table__outer {
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .table__outer {
    overflow: auto;
    white-space: nowrap;
    border-right: 1px solid #ccc;
    position: relative;
  }
  .table__outer::-webkit-scrollbar {
    height: 5px;
  }
  .table__outer::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .table__outer::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
}

.list__title {
  font-weight: bold;
}

.list__grp--mb {
  margin: 0 0 10px;
}

.list__item {
  padding: 5px 0 5px 14px;
  line-height: 1.4;
  display: block;
  position: relative;
}

.list__item::before {
  content: "-";
  display: inline-block;
  text-indent: -14px;
  width: 10px;
  height: 0px;
  position: absolute;
}

.list__item__sub {
  font-size: 12px;
  font-weight: normal;
}

@media only screen and (max-width: 767px) {
  .list__item__sub {
    display: inline-block;
  }
}

.list__item__sub--company {
  padding: 5px 0;
}

/*-------------------------------

	公正な事業慣行

---------------------------------*/
.fair_table {
  background: #fff;
  width: 100%;
  border-top: 1px solid #858fb1;
  border-right: 1px solid #858fb1;
}

.fair_table tr:nth-child(even) {
  background: #efefef;
}

.fair_table th {
  border-bottom: 1px solid #858fb1;
  border-left: 1px solid #858fb1;
  padding: 10px;
  width: 10em;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .fair_table th {
    width: 8em;
  }
}

.fair_table td {
  border-bottom: 1px solid #858fb1;
  border-left: 1px solid #858fb1;
  padding: 10px;
}

/*-------------------------------

	環境

---------------------------------*/
.env_table {
  background: #fff;
  width: 100%;
  border-right: 1px solid #858fb1;
}

.env_table th {
  border-bottom: 1px solid #858fb1;
  border-left: 1px solid #858fb1;
  padding: 10px 5px;
}

.env_table td {
  border-bottom: 1px solid #858fb1;
  border-left: 1px solid #858fb1;
  padding: 10px 8px;
}

.env_table thead tr {
  background: #0b1d65;
  color: #fff;
}

.env_table thead th {
  padding: 10px;
}

@media only screen and (max-width: 767px) {
  .env_table thead th {
    font-size: 12px;
    padding: 6px;
  }
}

.env_table--1 th {
  width: 50px;
  font-size: 16px;
  letter-spacing: 5px;
  text-indent: 5px;
  font-weight: bold;
}

html[lang="en"] .env_table--1 th {
  letter-spacing: 0;
}

@media only screen and (max-width: 767px) {
  .env_table--1 th {
    font-size: 12px;
    width: 30px;
  }
  html[lang="en"] .env_table--1 th {
    padding: 5px 0;
  }
}

.env_table--1 th.env_table1__th1 {
  width: 20%;
}

.env_table--1 th.env_table1__th2 {
  width: 80%;
}

.env_table--2 {
  line-height: 1.4;
}

.env_table--2 thead th:nth-child(1) {
  width: 360px;
}

.env_table--2 thead th:nth-child(3) {
  width: 60px;
}

.env_table--2 th {
  font-size: 15px;
  text-indent: 5px;
  font-weight: bold;
}

.env_table--2 th.env_table2__th2--s {
  font-size: 12px;
}

@media only screen and (max-width: 767px) {
  .env_table--2 th {
    font-size: 12px;
  }
}

.env_table--2 td {
  font-size: 13px;
}

.env_table--2 td:last-child {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .env_table--2 td {
    font-size: 12px;
  }
}

.env_table--3 {
  line-height: 1.4;
}

.env_table--3 thead th {
  font-size: 15px;
  font-weight: bold;
  padding-right: 0;
  padding-left: 0;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .env_table--3 thead th {
    font-size: 12px;
    padding-right: 4px;
    padding-left: 4px;
  }
}

.env_table--3 th.env_table3__hth2 {
  background: #526293;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.env_table--3 th.bg4c {
  background: #ce451b;
}

.env_table--3 th.bg1p5c {
  background: #619e5c;
}

.env_table--3 th.bg_imigrate {
  background: #cde0d3;
}

.env_table--3 th.bg_physical {
  background: #cae6ea;
}
.env_table--3 th.bg_oppurtunity {
  background: #ffdfb8;
}

.env_table--3 th.env_table3__th1 {
  width: 20px;
  font-size: 12px;
  text-align: center;
}

.env_table--3 th.env_table3__th2 {
  width: 50px;
  font-size: 12px;
}

.env_table--3 th.env_table3__th3 {
  width: 10em;
  font-size: 12px;
}

@media only screen and (max-width: 767px) {
  .env_table--3 th {
    font-size: 12px;
  }

  .env_table--3 th.env_table3__th1 {
    font-size: 10px;
  }
  .env_table--3 th.env_table3__th2 {
    font-size: 10px;
  }
  .env_table--3 th.env_table3__th3 {
    font-size: 10px;
  }
}

.env_table--3 td {
  font-size: 13px;
}
@media only screen and (max-width: 767px) {
  .env_table--3 td {
    font-size: 10px;
  }
}
.env_table--3 td.env_table3__td1 {
  width: 30px;
  font-size: 12px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .env_table--3 td.env_table3__td1 {
    font-size: 10px;
  }
}

.env_table--3 td.env_table3__td2 {
  width: 30px;
  font-size: 12px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .env_table--3 td.env_table3__td2 {
    font-size: 10px;
  }
}
.env_table--3 td.env_table3__td3 {
  vertical-align: top;
  font-size: 10px;
}

.env_table--3 td.env_table3__td4 {
  width: 30px;
  text-align: center;
}

.env_table--3 td.env_table3__td5 {
  width: 30px;
  text-align: center;
}

/* .env_table--3 td.env_table3__td6 {
  width: 20px;
  text-align: center;
}

.env_table--3 td.env_table3__td7 {
  width: 20px;
  text-align: center;
}

.env_table--3 td.env_table3__td8 {
  width: 20px;
  text-align: center;
} */

@media only screen and (max-width: 767px) {
  .env_table--3 td {
    font-size: 12px;
  }
}

.env_table3__scale {
  font-weight: bold;
  font-size: 12px;
}

.env_table3__scale--s {
  color: #edc624;
}

.env_table3__scale--m {
  color: #ef8d22;
}

.env_table3__scale--l {
  color: #f22520;
}

.env_table2__th1 {
  width: 4em;
}

.env_table2__th2 {
  width: 90px;
}

.csr_media {
  display: flex;
  justify-content: space-between;
}

.csr_media__l {
  flex-basis: 284px;
  box-sizing: border-box;
  padding: 0 40px;
}

@media only screen and (max-width: 767px) {
  .csr_media__l {
    padding: 0;
    flex-basis: 100px;
  }
}

.csr_media__img {
  margin: 0 0 10px;
}

.csr_media__img img {
  width: 100%;
  height: auto;
}

.csr_media__r {
  flex-basis: calc(100% - 284px);
}

@media only screen and (max-width: 767px) {
  .csr_media__r {
    flex-basis: calc(100% - 110px);
  }
  .csr_media__r a {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/*-------------------------------

	コミュニティへの参画およびコミュニティの発展

---------------------------------*/
@media only screen and (max-width: 767px) {
  .community_table {
    width: 100%;
  }
}

.community_table__th1 {
  padding-right: 20px;
}

@media only screen and (max-width: 767px) {
  .community_table__th1 {
    display: block;
    width: 100%;
  }
}

.community_table__td1 {
  padding-right: 20px;
}

@media only screen and (max-width: 767px) {
  .community_table__td1 {
    display: inline-block;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .community_table__td2 {
    display: inline-block;
    width: 100%;
    padding-bottom: 10px;
  }
}

.community_table2 {
  border-top: 1px solid #d2d0e5;
}

@media only screen and (max-width: 767px) {
  .community_table2 {
    width: 100%;
  }
}

.community_table2 tr {
  border-bottom: 1px solid #d2d0e5;
  border-left: 1px solid #d2d0e5;
  border-right: 1px solid #d2d0e5;
}

.community_table2 th {
  padding: 5px 35px;
  width: 6em;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .community_table2 th {
    padding: 5px 0 5px 20px;
  }
}

.community_table2 td {
  padding: 5px 35px;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .community_table2 td {
    padding: 5px 20px 5px 0;
  }
}

.community_table2__sum {
  border-top: 3px double #d2d0e5;
}

.show_more_btn {
  display: flex;
  width: 350px;
  text-align: center;
  margin: 0 auto 30px;
  background-color: #ecf0f0;
  border-radius: 5px;
  color: #0b1f64;
  cursor: pointer;
  padding: 28px 30px;
  transition: 0.5s ease-in-out 0.2s;
  position: relative;
}
.show_more_btn:hover {
  background-color: #d9d9d9;
  text-decoration: none;
}
.plus_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.3s ease-in 0s;
  border: 1px solid #0b1f64;
  border-radius: 50%;
  width: 29px;
  height: 29px;
}
.plus_icon img {
  width: 14px;
  height: 14px;
}
.active .plus_icon {
  transform: translateY(-50%) rotate(45deg);
}
/*-------------------------------

	ESG経営の重点課題(マテリアリティ)

---------------------------------*/
.sdgs__logo {
  width: 500px;
  margin: 50px auto 60px;
}

@media only screen and (max-width: 767px) {
  .sdgs__logo {
    width: 100%;
    margin: 30px 0;
  }
}

.sdgs__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.csr__head__sdgs .sdgs__icons {
  flex-wrap: nowrap;
  justify-content: flex-end;
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .csr__head__sdgs .sdgs__icons {
    flex-wrap: wrap;
  }
}

.sdgs__icons__item {
  flex-basis: 65px;
  padding: 5px 2px;
}

@media only screen and (max-width: 767px) {
  .sdgs__icons__item {
    flex-basis: 40px;
  }
}

.sdgs__icons__item img {
  width: 100%;
  height: auto;
}

.csr__head__sdgs .sdgs__icons__item {
  padding: 10px 0 0 10px;
}

.sdgs__table {
  width: 100%;
  border-right: 1px solid #d2d0e5;
  border-bottom: 2px solid #d2d0e5;
  font-size: 13px;
  background: #fff;
}

@media only screen and (max-width: 767px) {
  .sdgs__table {
    font-size: 12px;
  }
}

.sdgs__table thead th {
  background: #0b1f64;
  color: #fff;
  text-align: center;
  border-right: 1px solid #fff;
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .sdgs__table thead th {
    padding: 5px;
  }
}

.sdgs__table thead th:last-child {
  border-right: 1px solid #0b1f64;
}

.sdgs__table td {
  border-bottom: 1px solid #d2d0e5;
  border-left: 1px solid #d2d0e5;
}

.sdgs__table__th1 {
  width: 80px;
  padding: 10px;
}

@media only screen and (max-width: 767px) {
  .sdgs__table__th1 {
    width: 5em;
  }
}

.sdgs__table__th2 {
  width: 177px;
  padding: 10px;
}

.sdgs__table__th3 {
  width: 250px;
}

.sdgs__table__th4 {
  width: 240px;
  font-size: 12px;
  text-align: center;
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
  .sdgs__table__th4 {
    width: 50px;
  }
}
.sdgs__table__th5 {
  width: 171px;
  text-align: center;
  line-height: 1.4;
}

.sdgs__table__td1 {
  padding: 0;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
  .sdgs__table__td1 {
    font-size: 10px;
    padding: 5px;
  }
}

.sdgs__table__td1__sub {
  color: #666;
  font-size: 13px;
}

.sdgs__table__td1__sub:first-letter {
  color: #f20;
}

.sdgs__table__td2 {
  padding: 10px;
}

@media only screen and (max-width: 767px) {
  .sdgs__table__td2 {
    padding: 2px 5px;
  }
}

.sdgs__table__td3 {
  padding: 2px 10px;
}

@media only screen and (max-width: 767px) {
  .sdgs__table__td3 {
    padding: 2px 5px;
  }
}

.sdgs__table__td4 {
  padding: 10px;
}

@media only screen and (max-width: 767px) {
  .sdgs__table__td4 {
    padding: 2px 5px;
  }
}

.esg_icon {
  color: #fff;
  width: 38px;
  height: 38px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.esg_icon--e {
  background: #58b431;
}

.esg_icon--s {
  background: #00a6d9;
}

.esg_icon--g {
  background: #ed6a02;
}

.esg_icon__grp {
  display: flex;
  justify-content: space-around;
  padding: 10px 10px;
}

/*-------------------------------

	ESGデータ

---------------------------------*/
.esg_table {
  width: 100%;
  border-right: 1px solid #fff;
  font-size: 13px;
  background: #fff;
}

@media only screen and (max-width: 767px) {
  .esg_table {
    font-size: 11px;
  }
}

.esg_table thead th {
  background: #0b1f64;
  color: #fff;
  text-align: center;
  border-right: 1px solid #fff;
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .esg_table thead th {
    padding: 5px;
    line-height: 1.2;
  }
}

.esg_table thead th.esg_table__hth1 {
  width: 6em;
}
.esg_table thead th.esg_table__hth2 {
  width: 15em;
}

.esg_table thead th.esg_table__hth3 {
  width: 6em;
}

/*.esg_table thead th.esg_table__hth8 {
  width: 15em;
}*/
.esg_table thead th:last-child {
  border-right: 1px solid #efefef;
}

.esg_table th {
  padding: 5px 6px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  background: #efefef;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .esg_table th {
    padding: 2px;
  }
}

.esg_table td {
  padding: 5px 10px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  background: #efefef;
}

@media only screen and (max-width: 767px) {
  .esg_table td {
    padding: 2px 4px;
  }
}

.esg_table td:last-child {
  text-align: right;
}

.esg_table td:nth-last-child(2) {
  text-align: right;
}

.esg_table td:nth-last-child(3) {
  text-align: right;
}

.esg_table td:nth-last-child(4) {
  text-align: right;
}

.esg_table td:nth-last-child(5) {
  text-align: right;
}

.esg_table td:nth-last-child(6) {
  text-align: right;
}

.esg_table td:nth-last-child(7) {
  text-align: center;
  font-size: 10px;
}

.esg_table td.esg_table__td_total {
  background: #ddd;
}

td.esg_table__td_indent {
  padding-left: 20px;
}

.annotation_box {
  padding: 10px 0;
}

.remark {
  font-size: 10px;
}

@media only screen and (max-width: 767px) {
  .remark {
    font-size: 8px;
  }
}

.annotation {
  font-size: 10px;
  padding: 5px 0;
}

/*-------------------------------

	CSR index

---------------------------------*/
#csr .top-title .h2-title-box {
  width: 210px;
  height: 210px;
  background: #0b1f64;
  color: #fff;
  position: absolute;
  top: calc(50% - 105px);
  left: calc(50% - 105px);
  text-align: center;
  line-height: 210px;
  font-size: 171.4%;
  font-weight: 100;
  box-sizing: border-box;
  letter-spacing: 10px;
  text-indent: 10px;
}

@media only screen and (max-width: 767px) {
  #csr .top-title .h2-title-box {
    height: 100px;
    width: 100px;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    line-height: 100px;
  }
}

@media only screen and (max-width: 767px) {
  p.main-txt {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.csr_index_lead {
  margin: 0 auto;
  width: 1200px;
}

@media only screen and (max-width: 767px) {
  .csr_index_lead {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

.csr_index {
  margin: 0 0 50px;
  width: 100vw;
  background: #f2f2f2;
}

@media only screen and (max-width: 767px) {
  .csr_index {
    margin: 0 0 20px;
  }
}

.csr_index--sub {
  background: #fff;
}

.csr_index__inner {
  margin: 0 auto;
  width: 1200px;
  padding: 50px 0;
}

@media only screen and (max-width: 767px) {
  .csr_index__inner {
    width: 100%;
    padding: 20px 20px;
    box-sizing: border-box;
  }
}

.csr_index__title {
  font-size: 24px;
  padding: 0 0 20px;
}

@media only screen and (max-width: 767px) {
  .csr_index__title {
    font-size: 18px;
    line-height: 1.4;
  }
}

.csr_index__grp {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 42px);
  margin: 0 -21px;
}

@media only screen and (max-width: 767px) {
  .csr_index__grp {
    width: calc(100% + 20px);
    margin: 0 -10px;
    box-sizing: border-box;
    padding: 0 5px;
  }
}

.csr_index__item {
  flex-basis: calc(33.33% - 42px);
  background: #fff;
  margin: 0 21px 40px;
}

.csr_index--sub .csr_index__item {
  background: #f2f2f2;
}

@media only screen and (max-width: 767px) {
  .csr_index__item {
    flex-basis: calc(33.33% - 10px);
    margin: 0 5px 10px;
  }
}

.csr_index__link {
  display: block;
}

.csr_index__link figure {
  position: relative;
  overflow: hidden;
}

.csr_index__link figure::after {
  content: "";
  display: block;
  padding-top: 49%;
}

.csr_index__link figure img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: auto;
  transition: 0.2s ease-in-out;
}

.csr_index--sub .csr_index__link figure {
  flex-basis: 120px;
  height: 120px;
}

.csr_index--sub .csr_index__link figure img {
  height: 100%;
  width: auto;
  -webkit-transform: translateX(-25%);
  transform: translateX(-25%);
}

.csr_index--sub .csr_index__link figure.csr_index__fig_sub03 img {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media only screen and (max-width: 767px) {
  .csr_index--sub .csr_index__link figure {
    height: auto;
  }
  .csr_index--sub .csr_index__link figure img {
    width: 100%;
    height: auto;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .csr_index--sub .csr_index__link figure.csr_index__fig_sub03 img {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.csr_index__link:hover img {
  opacity: 0.8;
}

.csr_index__link:hover .csr_index__label::before {
  -webkit-transform: translate(2px, -50%) rotate(45deg);
  transform: translate(2px, -50%) rotate(45deg);
}

.csr_index--sub .csr_index__link {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .csr_index--sub .csr_index__link {
    display: block;
  }
}

.csr_index__label {
  color: #fff;
  background: #0b1d65;
  transition: 0.2s ease-in-out;
  position: relative;
  font-size: 16px;
  height: 44px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

html[lang="en"] .csr_index__label {
  line-height: 1.2;
}

html[lang="en"] .csr_index__label--long {
  font-size: 14px;
}

@media only screen and (max-width: 767px) {
  .csr_index__label {
    font-size: 12px;
    height: auto;
    text-align: center;
    padding: 5px 0;
  }
  .csr_index__label--long {
    font-size: 10px;
  }
  html[lang="en"] .csr_index__label--long {
    font-size: 10px;
  }
}

.csr_index--sub .csr_index__label {
  justify-content: flex-start;
  height: auto;
  background: transparent;
  color: #0b1d65;
  text-align: left;
}

.csr_index--sub .csr_index__label::after {
  display: none;
}

html[lang="en"] .csr_index--sub .csr_index__label {
  font-size: 15px;
  line-height: 1.4;
}

.csr_index__cont {
  padding: 10px 0;
}

.csr_index--sub .csr_index__cont {
  padding: 0;
}

.csr_index__list_item {
  display: block;
}

.csr_index__list_item a {
  position: relative;
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 0 0 40px;
}

@media only screen and (max-width: 767px) {
  .csr_index__list_item a {
    padding: 5px 0 4px 8px;
    line-height: 1.2;
    height: auto;
    font-size: 10px;
  }
}

.csr_index__list_item a::before {
  content: "";
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  width: 5px;
  height: 5px;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
  position: absolute;
  top: 50%;
  left: 22px;
  z-index: 2;
  transition: 0.2s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .csr_index__list_item a::before {
    display: none;
  }
}

.csr_index__list_item a:hover {
  text-decoration: none;
}

.csr_index__list_item a:hover::before {
  -webkit-transform: translate(2px, -50%) rotate(45deg);
  transform: translate(2px, -50%) rotate(45deg);
}

.csr_index__text {
  text-align: center;
  padding: 20px 0;
}

.csr_index--sub .csr_index__text {
  text-align: left;
  padding: 0;
}

html[lang="en"] .csr_index--sub .csr_index__text {
  font-size: 10px;
}

@media only screen and (max-width: 767px) {
  .csr_index__text {
    font-size: 10px;
  }
}

.csr_index__subcont_inner {
  flex-basis: calc(100% - 130px);
  box-sizing: border-box;
  padding: 10px;
}

/*-------------------------------

	CSR -> head (for SGDs LOGO)

---------------------------------*/
.csr__head {
  display: flex;
  justify-content: space-between;
}

.csr__head--mb {
  padding: 0 0 30px;
}

.csr__head__title {
  flex-basis: 656px;
}

@media only screen and (max-width: 767px) {
  .csr__head__title {
    flex-basis: calc(100% - 80px);
  }
}

.csr__head__sdgs {
  flex-basis: 160px;
}

@media only screen and (max-width: 767px) {
  .csr__head__sdgs {
    flex-basis: 60px;
  }
}

/*-------------------------------

	CSR -> healthcare

---------------------------------*/
.logo_white100 {
  display: block;
  margin: 0 auto 30px;
  width: 600px;
}

@media only screen and (max-width: 767px) {
  .logo_white100 {
    width: 100%;
  }
  .logo_white100 img {
    width: 100%;
    height: auto;
  }
}

.healthcare__figure {
  width: 70%;
  margin: 30px auto 0;
}

.healthcare__figure--en {
  width: 90%;
}

@media only screen and (max-width: 767px) {
  .healthcare__figure {
    width: 90%;
  }
}

.healthcare__declaration {
  font-weight: bold;
  font-size: 18px;
}

@media only screen and (max-width: 767px) {
  .healthcare__declaration {
    font-size: 14px;
  }
}

.csr_signature {
  float: right;
  font-weight: bold;
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  .csr_signature {
    font-size: 14px;
    line-height: 1.4;
    float: none;
  }
}

.csr_signature__name {
  font-weight: bold;
  font-size: 22px;
}

@media only screen and (max-width: 767px) {
  .csr_signature__name {
    font-size: 14px;
  }
}

.healthcare_table {
  width: 100%;
  border-right: 1px solid #fff;
  font-size: 13px;
  background: #fff;
}

@media only screen and (max-width: 767px) {
  .healthcare_table {
    font-size: 11px;
  }
}

.healthcare_table thead th {
  background: #0b1f64;
  color: #fff;
  text-align: center;
  border-right: 1px solid #fff;
  box-sizing: border-box;
  padding: 10px;
}

@media only screen and (max-width: 767px) {
  .healthcare_table thead th {
    padding: 5px 2px;
    line-height: 1.2;
  }
}

.healthcare_table thead th:last-child {
  border-right: 1px solid #efefef;
}

.healthcare_table th {
  width: 5em;
  padding: 5px 6px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  background: #efefef;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .healthcare_table th {
    padding: 2px 4px;
  }
}

.healthcare_table td {
  padding: 10px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  background: #efefef;
}

@media only screen and (max-width: 767px) {
  .healthcare_table td {
    padding: 2px 4px;
  }
}

.healthcare_table td:last-child {
  text-align: right;
}

.healthcare_table td:nth-last-child(2) {
  text-align: right;
}

.healthcare_table td:nth-last-child(3) {
  text-align: right;
}

.healthcare_table td:nth-last-child(4) {
  text-align: right;
}

.healthcare_table td:nth-last-child(5) {
  text-align: right;
}

.healthcare_table td.esg_table__td_total {
  background: #ddd;
}

.csr__sbnum {
  background: #0b1d65;
  width: 229px;
  height: 197px;
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .csr__sbnum {
    width: 100%;
    height: 36vw;
  }
}

.csr__sbnum__head {
  border-bottom: 2px solid #fff;
  height: 74px;
  font-size: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}

html[lang="en"] .csr__sbnum__head {
  font-size: 15px;
  padding: 0 10px;
}

@media only screen and (max-width: 767px) {
  html[lang="en"] .csr__sbnum__head {
    font-size: 11px;
    padding: 0 5px;
  }
}

@media only screen and (max-width: 767px) {
  .csr__sbnum__head {
    font-size: 7px;
    font-size: 0.7rem;
    height: 40px;
  }
}

.csr__sbnum__head--s {
  font-size: 9px;
  font-size: 0.9rem;
}

@media only screen and (max-width: 767px) {
  .csr__sbnum__head--s {
    font-size: 6px;
    font-size: 0.6rem;
  }
}

.csr__sbnum__body {
  display: flex;
  justify-content: center;
  align-items: baseline;
  height: 74px;
  box-sizing: border-box;
  padding: 8px 0 0;
}

@media only screen and (max-width: 767px) {
  .csr__sbnum__body {
    height: 48px;
    padding: 15px 0 0;
  }
}

.csr__sbnum__bottom {
  font-size: 6px;
  font-size: 0.6rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 48px;
  box-sizing: border-box;
  padding: 0 0 8px;
}
.csr__sbnum_plus {
  height: 230px;
}
.csr__sbnum_plus .csr__sbnum__bottom {
  height: 78px;
}
@media only screen and (max-width: 767px) {
  .csr__sbnum__bottom {
    height: 40px;
  }
}

.csr__sbnum__main {
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .csr__sbnum__main {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.csr__sbnum__sub {
  font-size: 10px;
  font-size: 1rem;
}

html[lang="en"] .csr__sbnum__sub {
  font-size: 9px;
  font-size: 0.9rem;
}

/*-------------------------------

	CSR -> Para Specialist

---------------------------------*/
.para__nav {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .para__nav {
    padding: 0px 5px 5px;
  }
}

.para__nav__box {
  margin: 30px 0;
}

@media only screen and (max-width: 767px) {
  .para__nav__box {
    display: block;
  }
}

.para__nav__title {
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 20px;
  flex-basis: 180px;
  background: #0b1d65;
  color: #fff;
  box-sizing: border-box;
}

.para__nav__title a {
  display: block;
  color: #fff;
  padding: 12px 20px;
}

@media only screen and (max-width: 767px) {
  .para__nav__title a {
    padding: 8px 12px;
  }
}

@media only screen and (max-width: 767px) {
  .para__nav__title {
    font-size: 9px;
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
}

.para__nav__textbox {
  display: flex;
  align-items: start;
  margin: 0 0 20px;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 5px;
}

@media only screen and (max-width: 767px) {
  .para__nav__textbox {
    display: block;
  }
}

.para__nav__item {
  flex-basis: calc(33.33% - 10px);
  margin: 0 5px 10px;
  overflow: hidden;
}

.para__nav__item a {
  display: block;
  height: inherit;
  position: relative;
}

.para__nav__item a:hover span {
  text-decoration: none;
}

.para__nav__item a:hover img {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}

.para__nav__img {
  position: relative;
  overflow: hidden;
}

.para__nav__img::after {
  content: "";
  display: block;
  padding-top: 75%;
}

.para__nav__img img {
  width: 100%;
  height: auto;
  transition: 0.2s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.para__nav__detail {
  display: block;
  padding: 10px;
}

@media only screen and (max-width: 767px) {
  .para__nav__detail {
    padding: 5px 0px 2px;
  }
}

.para__nav__main {
  font-size: 10px;
  font-size: 1rem;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .para__nav__main {
    font-size: 8px;
    font-size: 0.8rem;
    line-height: 1;
    padding: 0;
    display: block;
    margin-bottom: 3px;
  }
  html[lang="en"] .para__nav__main {
    margin: 0 0 4px;
  }
}

.para__nav__sub {
  font-size: 7px;
  font-size: 0.7rem;
  display: inline-block;
  padding: 0 10px 0 10px;
}

@media only screen and (max-width: 767px) {
  .para__nav__sub {
    font-size: 5px;
    font-size: 0.5rem;
    padding: 0;
    display: block;
    line-height: 1.2;
  }
}

html[lang="en"] .para__nav__sub {
  display: block;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  html[lang="en"] .para__nav__sub {
    line-height: 1.2;
  }
}

.para__name {
  color: #0b1f64;
  padding: 15px 0 15px 10px;
  margin: 10px 0 30px;
  border-top: 3px #858fb1 double;
  border-bottom: 3px #858fb1 double;
}

.para__name__main {
  font-size: 18px;
  font-size: 1.8rem;
  display: block;
  padding: 0 0 10px;
}

.para__name__main__en {
  font-size: 16px;
}

.para__name__sub {
  display: block;
}

.para__photo {
  width: 400px;
  float: right;
  padding: 10px 10px 10px;
  background: #fff;
  margin: 15px 30px;
  box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1), 3px 3px 3px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 767px) {
  .para__photo {
    float: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
}

.para__photo img {
  width: 100%;
  height: auto;
}

.para__photos__grp {
  display: flex;
  justify-content: center;
}

.para__photos__item {
  flex-basis: 393px;
  height: 393px;
  margin: 0 20px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .para__photos__item {
    flex-basis: 49.5%;
    height: auto;
  }
  .para__photos__item img {
    width: 100%;
    height: auto;
  }
}

.para__word {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #0b1f64;
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
  .para__word {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.para__history {
  width: 100%;
  border-top: 1px solid #858fb1;
}

.para__history tr {
  border-bottom: 1px solid #858fb1;
}

.para__history th {
  width: 8em;
}

@media only screen and (max-width: 767px) {
  .para__history th {
    width: 6em;
  }
}

.para__history td {
  padding: 14px;
}

@media only screen and (max-width: 767px) {
  .para__history td {
    padding: 10px;
  }
}

.para__colorstext {
  flex-basis: 66%;
}

@media only screen and (max-width: 767px) {
  .para__colorstext {
    flex-basis: 100%;
    margin: 0 0 20px;
  }
}

.para__colorslogo {
  margin: 0 5px 30px;
  width: calc(33.33% - 10px);
  border: 1px solid #d2d0e5;
}

@media only screen and (max-width: 767px) {
  .para__colorslogo {
    width: calc(66.66% - 20px);
    margin: 0 5px 25px;
  }
}

.para__colorslogo a {
  display: block;
  transition: background 0.2s ease-in-out;
  background: #fff;
  padding: 20px 38px;
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.05);
  position: relative;
}

.para__colorslogo a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: url(/shared/img/icn_blank.png) no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 0px;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.para__colorslogo a:hover {
  background: #f0effc;
}

.para__colorslogo img {
  width: 100%;
  height: auto;
}

.cont-box-para {
  margin-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  .cont-box-para {
    padding-top: 10px;
    margin: 0px 0 40px;
  }
}

/*-------------------------------

	CSR -> Outside evaluations

---------------------------------*/
.evalbox__item {
  display: flex;
  margin: 0 0 20px;
  border: 1px solid #d2d0e5;
  background: #fff;
  padding: 20px;
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  height: 158px;
}

@media only screen and (max-width: 767px) {
  .evalbox__item {
    padding: 15px;
    margin: 0 0 10px;
    display: block;
    height: auto;
  }
}

.evalbox__item--low {
  height: 120px;
}

@media only screen and (max-width: 767px) {
  .evalbox__item--low {
    height: auto;
  }
}

.evalbox__img {
  flex-basis: 200px;
  max-height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .evalbox__img {
    width: 100px;
    display: block;
    margin: 10px auto 20px;
  }
}

.evalbox__img img {
  width: 100%;
  height: auto;
}

.evalbox__cont {
  flex-basis: calc(100% - 200px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding-left: 20px;
}

@media only screen and (max-width: 767px) {
  .evalbox__cont {
    padding-left: 0;
  }
}

.evalbox__cont--noimage {
  flex-basis: 100%;
}

.evalbox__title {
  flex-basis: 100%;
  font-weight: bold;
  margin: 0 0 6px;
  color: #444;
  font-size: 16px;
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
  .evalbox__title {
    font-size: 14px;
    line-height: 1.4;
  }
}

.evalbox__body {
  flex-basis: 100%;
  font-size: 13px;
}

@media only screen and (max-width: 767px) {
  .evalbox__body {
    font-size: 12px;
  }
}

.textlink {
  color: #0b1d65;
  position: relative;
}

.textlink--out {
  padding-right: 15px;
}

.textlink--out::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: url(/shared/img/icn_blank.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 0px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.br-pchidden {
  display: none;
}

@media only screen and (max-width: 767px) {
  .br-pchidden {
    display: inline;
  }
}
/*-------------------------------

	CSR -> engagement

---------------------------------*/
.engagement__table {
  width: 100%;
  border-right: 1px solid #d2d0e5;
  border-bottom: 2px solid #d2d0e5;
  font-size: 13px;
}
.engagement__table thead th {
  background: #0b1f64;
  color: #fff;
  text-align: center;
  border-right: 1px solid #fff;
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .engagement__table thead th {
    padding: 5px;
  }
}

.engagement__table thead th:last-child {
  border-right: 1px solid #0b1f64;
}

.engagement__table td {
  border-bottom: 1px solid #d2d0e5;
  border-left: 1px solid #d2d0e5;
}
@media only screen and (max-width: 767px) {
  .engagement__table {
    font-size: 12px;
  }
}
.engagement__table__th {
  padding: 10px;
}
.engagement__table__td {
  padding: 2px 10px;
}
.engagement__table__td--center {
  text-align: center;
}
.engagement__table__td--right {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .engagement__table__td {
    padding: 2px 5px;
  }
}

/*-------------------------------

	TNFD

---------------------------------*/
.tnfd__table {
  width: 100%;
  border-right: 1px solid #858fb1;
  font-size: 13px;
  background: #fff;
  text-align: left;
}
.tnfd__table thead th {
  background: #0b1f64;
  color: #fff;
  text-align: center;
  border-right: 1px solid #fff;
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .tnfd__table thead th {
    padding: 5px;
  }
}

.tnfd__table thead th:last-child {
  border-right: 1px solid #0b1f64;
}

.tnfd__table td {
  border-bottom: 1px solid #858fb1;
  border-left: 1px solid #858fb1;
}
@media only screen and (max-width: 767px) {
  .tnfd__table {
    font-size: 12px;
  }
}
.tnfd__table__th {
  padding: 10px;
}
.tnfd__table__td {
  padding: 2px 10px;
}
.tnfd__table__td--1 {
  background: #cde0d3;
  text-align: center;
  width: 13em;
}

@media only screen and (max-width: 767px) {
  .tnfd__table__td {
    padding: 2px 5px;
  }
}

.tnfd__heatmap {
  background: #fff;
  padding: 20px 20px 5px;
}
@media only screen and (max-width: 767px) {
  .tnfd__heatmap {
    padding: 5px 5px;
  }
}
/*=============================================================
 pageTtlArea
=============================================================*/
/*#pageTtlArea div{
	position: static;
	top:inherit;
	left:inherit;
	transform:none;
}*/
/*=============================================================
 localMenu
=============================================================*/
#localMenu {
  width: 30%;
  max-width: 250px;
  flex-shrink: 0;
  margin: 0 0 100px auto;
}
/* lm-Ttl
-------------------------------------------------------------*/
.lm-Ttl {
  border-bottom: 1px solid #0b1d65;
}

/* lm-list
-------------------------------------------------------------*/
.lm-list {
  margin: 0 0 30px;
}
.lm-list li {
  line-height: 1.2;
  border-bottom: 1px solid #d2d0e5;
  position: relative;
}
.lm-list a {
  display: flex;
  height: 50px;
  align-items: center;
  box-sizing: border-box;
  padding: 0 10px 0 30px;
  transition: background 0.2s ease-in-out;
  position: relative;
  font-size: 14px;
  font-weight: normal;
}
.lm-list li.toggle-set > a {
  padding: 0 10px 0 10px;
  color: #0b1f64;
  font-size: 14px;
  font-weight: bold;
}
.lm-list a:hover {
  background-color: #f0f4f4;
}
.lm-list .act > a {
  background-color: #f0f4f4;
}
.lm-list li:not(.toggle-set) a::after {
  content: "";
  border-right: 1px solid #0b1d65;
  border-top: 1px solid #0b1d65;
  width: 5px;
  height: 5px;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
  position: absolute;
  top: 50%;
  left: 12px;
  z-index: 2;
  transition: 0.2s ease-in-out;
}
/*.lm-list .open{background-color:#f0f4f4;}*/
.lm-list .toggle-box {
  background-color: #f0f4f4;
}

.lm-list .toggle-set .toggle-btn {
  text-indent: 112%;
  width: 100%;
  height: 50px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
  box-sizing: border-box;
  display: block;
  cursor: pointer;
}
.lm-list .toggle-set .toggle-btn::after,
.lm-list .toggle-set .toggle-btn::before {
  content: "";
  background-color: #0b1f64;
  display: block;
  width: 10px;
  height: 1px;
  margin-top: 1px;
  position: absolute;
  top: 50%;
  right: 4%;
  transition: all 0.3s ease;
  transform: rotate(90);
}
.lm-list .toggle-set .toggle-btn:after {
  transform: rotate(90deg);
}
.lm-list .toggle-set.open .toggle-btn:after {
  transform: rotate(0);
}

.lm-list ul {
  display: none;
}
.lm-list .open > ul {
  display: block;
}
.lm-list li li a {
  padding-left: 24px;
}
.lm-list li li {
  border-top: 1px solid #ccc;
  border-bottom: none;
}
.lm-list li li.act a {
  background-color: #d0d0d0;
}
.lm-list ul ul {
  padding-left: 42px;
}
.lm-list li li li {
  border-top: none;
}
.lm-list li li li a {
  padding: 5px 24px 5px 10px;
}

@media only screen and (max-width: 767px) {
  /*=============================================================
 localMenu
=============================================================*/
  #localMenu {
    display: block;
    max-width: none;
    width: 100%;
    margin: 0;
    float: none;
  }
}
