@charset "UTF-8";
/* ==========================================================================
  Reset
  ========================================================================== */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  vertical-align: baseline;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

img {
  font-size: 0;
  line-height: 0;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
  font-style: italic;
  color: #000;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset,
img {
  line-height: 0;
  vertical-align: top;
}

hr {
  display: none;
}

input,
select {
  vertical-align: middle;
}

* {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
}

html,
body {
  width: 100%;
  height: 100%;
}

ul,
li {
  list-style: none;
}

b {
  font-weight: bold;
}

iframe {
  border: none;
  outline: none;
}

/* ==========================================================================
  Animation
  ========================================================================== */
.anim-fadeout {
  -webkit-animation: fadeIn 0.2s 0.2s both ease-out;
  animation: fadeIn 0.2s 0.2s both ease-out;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
}
.anim-fadein {
  opacity: 0;
}

.anim-fadein.is-show {
  -webkit-animation: fadeIn 0.8s 0.2s both ease-out;
  animation: fadeIn 0.8s 0.2s both ease-out;
}

@keyframes fadeIn {
  0% {
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slidein-l {
  opacity: 0;
}

.anim-slidein-l.is-show {
  -webkit-animation: slideInL 0.8s 0.2s both ease-out;
  animation: slideInL 0.8s 0.2s both ease-out;
}

@-webkit-keyframes slideInL {
  0% {
    transform: translate(-10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes slideInL {
  0% {
    transform: translate(-10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slidein-r {
  opacity: 0;
}

.anim-slidein-r.is-show {
  -webkit-animation: slideInR 0.8s 0.2s both ease-out;
  animation: slideInR 0.8s 0.2s both ease-out;
}

@-webkit-keyframes slideInR {
  0% {
    transform: translate(10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes slideInR {
  0% {
    transform: translate(10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* ==========================================================================
  Include
  ========================================================================== */
/* ==========================================================================
  Base
  ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  background: #fff;
}
body {
  color: #000;
  font-size: 1.6em;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, Roboto,
    "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium",
    "Yu Gothic", "Noto Sans JP", Verdana, Meiryo, sans-serif;
  line-height: 1;
  letter-spacing: 0.02em;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
@media screen and (min-width: 769px) {
  body {
    min-width: 1024px;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4em;
  }
}

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

::-moz-selection {
  background: #127acc;
  color: #fff;
}

::selection {
  background: #127acc;
  color: #fff;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.nolink {
  cursor: default;
}
.nolink:hover {
  opacity: 1 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: bold;
}

a {
  color: #000;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  a,
  img {
    transition: 0.2s linear;
  }
  a:hover img,
  img:hover img {
    opacity: 0.8;
  }
}
/* ここから下がコンポーネント、モディファイヤー、ユーティリティ部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

.c-pageTitle {
  font-size: 3.7rem;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 600;
}
.c-guide {
  font-size: 14px;
  line-height: 2;
  color: #000000;
  font-weight: 600;
  letter-spacing: 0;
  max-width: 850px;
  margin: 0 auto;
}
.c-guide__Thirdlevel {
  font-size: 14px;
  line-height: 2;
  color: #000000;
  font-weight: 600;
  letter-spacing: 0;
}
.c-listItem {
  border-bottom: 0.5px solid #d6d6d6;
  margin-top: 8px;
}

.c-listItem__noborder {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}

.c-btnmainfolder {
  display: inline-block;
  font-size: 32px;
  color: #000000;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  transition: color 0.4s ease;
}
.c-btnmainfolder:hover {
  color: #127acc;
}
.c-btnmainfolder:hover .c-btnmainfolder__icon {
  transform: translateX(0px);
}

.c-btnmainfolder span {
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
}

.c-btnmainfolder__icon {
  display: inline-block;
  position: relative;
  padding-left: 10px;
  width: 34px;
  height: 24px;
  transform: translateX(-5px);
  transition: transform 0.4s ease;
}
.c-caption {
  margin: 30px 0px;
  font-size: 15px;
  line-height: 2;
  color: #000000;
  letter-spacing: 0;
}
.c-caption ul {
  list-style: disc;
}
.c-caption ul li {
  padding-left: 15px;
}
.c-caption ul li::before {
  content: "•"; /* 黒点 */
  color: black; /* 色を黒に */
  display: inline-block;
  width: 15px; /* 点の幅を確保 */
  margin-left: -12px; /* 位置を調整 */
}
.c-caption ol li {
  counter-increment: number;
  position: relative;
  padding-left: 18px;
}
.c-caption ol li::before {
  content: counter(number) ".";
  position: absolute;
  left: 2px;
}
.c-listItem {
  border-bottom: 0.5px solid #d6d6d6;
  margin-top: 8px;
}
.c-btnmainfolder__page {
  display: flex;
  width: 100%;
  font-size: 16px;
  line-height: 1.75;
  justify-content: space-between;
  align-items: center;
  padding: 2px 0;
  transition: opacity 0.4s ease;
}
.c-btnmainfolder__page:hover {
  opacity: 0.4;
}
.c-btnmainfolder__page__icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transform: translateX(-5px);
  transition: transform 0.4s ease;
}
.c-btnmainfolder__page:hover .c-btnmainfolder__page__icon {
  transform: translateX(0px);
}

.c-btnmainfolder__page__img {
  vertical-align: top;
}
.c-btnmainfolder__page__text {
  font-weight: bold;
}

.c-btnfolder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  transition: color 0.4s ease;
}
.c-btnfolder:hover {
  color: #127acc;
}
.c-btnfolder.hovered {
  color: #127acc;
}
.c-btnfolder:hover .c-btnfolder__icon {
  transform: translateX(0px);
}
.c-btnfolder__icon.hovered {
  transform: translateX(0px);
}
.c-btnfolder__icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transform: translateX(-5px);
  transition: transform 0.4s ease;
}
.c-captionSub {
  margin-top: 12px;
  font-size: 14px;
  line-height: 2;
  color: #000000;
  letter-spacing: 0;
}
.c-btnfolder__page {
  display: flex;
  width: 100%;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  gap: 12px;
  padding: 2px 0;
  letter-spacing: 0;
  transition: opacity 0.4s ease;
}
.c-btnfolder__page:hover {
  opacity: 0.4;
}
.c-btnfolder__page:hover .c-btnfolder__page__icon {
  opacity: 0.4;
}
.c-btnfolder__page__icon {
  display: inline-block;
  width: 7px;
  height: 10.5px;
  flex-shrink: 0;
}

.c-btnfolder__page__text {
  font-weight: 600;
}
.c-btnfolder__page__img {
  vertical-align: top;
}

.c-btndataindex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
  border-bottom: 1px solid #127acc;
  color: #127acc;
  letter-spacing: 0;
  padding: 10px 0;
}
.c-btndataindex__icon {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transform: translateX(-5px);
  transition: transform 0.4s ease;
}
.c-btndataindex:hover {
  opacity: 0.6;
}
.c-btndataindex:hover .c-btndataindex__icon {
  transform: translateX(0px);
}

.c-pageTitle.m-colorblue {
  font-size: 28px;
  line-height: 1.4;
  color: #127acc;
  font-weight: 600;
}

.c-btnpage {
  display: flex;
  justify-content: space-between;
  color: #000000;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
  transition: color 0.4s ease;
}
.c-btnpage:hover {
  color: #127acc;
}
.c-btnpage.hovered {
  color: #127acc;
}

.c-btnpage__icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 10px;
  padding-top: 2px;
  transform: translateX(-5px);
  transition: transform 0.4s ease;
}
.c-btnpage:hover .c-btnpage__icon {
  transform: translateX(0px);
}
.c-btnpage.hovered .c-btnpage__icon {
  transform: translateX(0px);
}
.c-categoryTitle {
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
  font-weight: 600;
}

.c-anchorContainer {
  margin: 0 0 80px 0;
}
.c-integratedlistItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border-bottom: 0.5px solid #d6d6d6;
  padding: 18px 0;
}

.c-anchorList {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  max-width: 1024px;
  align-items: stretch;
}
.c-anchorListItem {
  display: flex;
  width: 340px;
  max-width: calc(34% - 4px);
}

.c-pdfItem {
  max-width: 284px;
}
.c-integratedpdfItem {
  width: 100%;
  max-width: 500px;
  margin: 25px 0;
}
.c-pdfflexList {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  max-width: 1024px;
}
.c-pdfflexlistItem {
  margin-top: 12px;
}
.c-btnpdf {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 14px;
  color: #ffffff;
  background-color: #127acc;
  align-items: center;
  padding: 8px 50px 8px 42px;
  min-height: 40px;
  border-radius: 60px;
  border: 1px solid transparent;
  transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
}
.c-btnpdf:hover {
  background-color: #ffffff;
  color: #127acc;
  border: 1px solid #127acc;
}

.c-btnpdf__text {
  position: relative;
  font-weight: 600;
}
.c-btnpdf__text::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12px;
  bottom: 0;
  left: auto;
  margin: auto;
  width: 13px;
  height: 22px;
  background: url(../../assets/img/governance/corporategovernance/img_pdficon_white.svg)
    no-repeat;
  background-size: 100% auto;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.c-btnpdf__text::before {
  content: "";
  position: absolute;
  top: 0;
  right: -12px;
  bottom: 0;
  left: auto;
  margin: auto;
  width: 13px;
  height: 22px;
  background: url(../../assets/img/governance/corporategovernance/img_pdficon_blue.svg)
    no-repeat;
  background-size: 100% auto;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.c-btnpdf__icon {
  margin-left: 12px;
}
.c-btnpdf:hover .c-btnpdf__text::after {
  opacity: 0;
}
.c-btnpdf:hover .c-btnpdf__text::before {
  opacity: 1;
}
.c-btnanchor {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 16px;
  align-items: center;
  padding: 8px 30px;
  background-color: #e7f3fc;
  transition: background-color 0.4s ease;
}
.c-btnanchor:hover {
  background-color: #127acc;
}
.c-btnanchor__text {
  position: relative;
  padding-right: 8px;
  color: #000000;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 600;
  transition: color 0.4s ease;
}
.c-btnanchor:hover .c-btnanchor__text {
  color: #ffffff;
}
.c-btnanchor__text::after {
  position: absolute;
  content: "";
  top: 0;
  right: -8px;
  bottom: 0;
  margin: auto 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2f80ed;
  border-left: 2px solid #2f80ed;
  transform: rotate(225deg) translateY(5px) skew(5deg, 5deg);
  transition: border-top 0.4s ease, border-left 0.4s ease;
}
.c-btnanchor:hover .c-btnanchor__text::after {
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
}
.c-contentTitle {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  padding-bottom: 28px;
  margin-top: 80px;
}
.c-underline {
  height: 2px;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto 30px auto;

  background: linear-gradient(
    105deg,
    #127acc 0%,
    #127acc 19%,
    #d6d6d6 19%,
    #d6d6d6 100%
  );
}
.c-contentsubTitle {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: 0;
  margin: 60px 0 40px 0;
}
.c-articleTitle {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0;
  margin: 50px 0 20px 0;
}
.c-articleTitle::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #127acc;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 6px;
  margin-bottom: 3.5px;
}
.c-integratedlistItem__text {
  color: #000000;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
}

.c-integratedvalueItem {
  max-width: 180px;
}
.c-btnbacknumber {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #127acc;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  width: 100%;
  padding: 25px 32px 25px 50px;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.c-btnbacknumber:hover {
  opacity: 0.6;
}
.c-btnbacknumber:hover .c-btnbacknumber__icon {
  transform: translateX(0px);
}

.c-btnbacknumber__icon {
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  padding-left: 10px;
  width: 34px;
  height: 24px;
  transform: translateX(-5px);
  transition: transform 0.4s ease;
}
.c-tableoverflow {
  margin-top: 20px;
}
.p-productForth__externallinkArea .m-enmarginExternallink {
  margin: 20px 0;
}

.p-productForth__reportArea.m-enpdfmargin {
  margin: 20px 0 48px 0;
}
.p-productForth__reportArea.m-societypdfmargin {
  margin: 20px 0 80px 0;
}
.m-tableGRIaftersecond {
  margin-top: 0;
}
.m-integratedTitle {
  text-align: center;
}
.m-dataindexpadding {
  padding: 0 0;
}
.m-btnpdf__flattentext {
  text-align: center;
  font-size: 12px;
}
.m-marginRL {
  margin-right: 75px;
  margin-left: 75px;
}
.c-btnpdf.m-reportpdfheight {
  min-height: 32px;
  padding: 8px 37px 8px 30px;
}
.c-tableoverflow {
  overflow: auto;
}
.u-pc {
  display: block;
}
.u-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .c-guide {
    font-size: 14px;
    line-height: 2;
    color: #000000;
    font-weight: 400;
    letter-spacing: 0;
  }
  .c-pageTitle {
    font-size: 19px;
    line-height: 1;
    color: #ffffff;
    font-weight: 600;
    margin-left: 29px;
  }

  .c-btnmainfolder {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .c-caption {
    margin-top: 10px;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 16px;
    color: #000000;
    letter-spacing: 0;
  }
  .c-btnmainfolder__page {
    font-size: 14px;
    line-height: 1.7;
  }
  .circledarrow {
    top: 43px;
    left: 200px;
  }

  .c-list {
    margin: 10px auto 0 auto;
    width: 100%;
  }

  .c-btnfolder {
    display: flex;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0;
  }
  .c-btnmainfolder:hover {
    color: #000000;
  }
  .c-btnmainfolder.hovered {
    color: #000000;
  }

  .c-btnpage.hovered {
    color: #000000;
  }
  .c-btnpage.hovered .c-btnpage__icon {
    transform: translateX(-5px);
  }
  .c-btnmainfolder:hover .c-btnmainfolder__icon {
    transform: translateX(-5px);
  }
  .c-btnfolder__icon.hovered {
    transform: translateX(-5px);
  }
  .c-captionSub {
    margin-top: 12px;
    font-size: 14px;
    line-height: 2;
    color: #000000;
    letter-spacing: 0;
  }
  .c-btnfolder.hovered {
    color: #000000;
  }
  .c-btnfolder__page {
    display: flex;
    width: 100%;
    font-weight: 600;
    gap: 12px;
    letter-spacing: 0;
    padding: 1px 0;
  }

  .c-btnmainfolder__page:hover .c-btnmainfolder__page__icon {
    transform: translateX(-5px);
  }

  .c-btnmainfolder__page:hover {
    opacity: 1;
  }
  .c-btnfolder__page:hover {
    opacity: 1;
  }
  .c-btnfolder__page:hover .c-btnfolder__page__icon {
    opacity: 1;
  }
  .c-btndataindex {
    font-size: 16px;
    line-height: 1.25;
    padding-top: 0px;
  }

  .c-btnpdf {
    padding: 8px 33px 8px 20px;
  }
  .c-listItem__noborder {
    display: flex;
    padding: 5px 0;
  }

  .c-guide {
    font-size: 14px;
    line-height: 2;
    color: #000000;
    font-weight: 400;
    letter-spacing: 0;
  }

  .c-pageTitle.m-colorblue {
    font-size: 19px;
    line-height: 1;
    color: #127acc;
    font-weight: 600;
  }
  .c-btnbacknumber:hover .c-btnbacknumber__icon {
    transform: translateX(-5px);
  }
  .c-btnbacknumber:hover {
    opacity: 1;
  }
  .c-btnpage {
    font-size: 18px;
  }
  .c-btnpage:hover {
    color: #000000;
  }
  .c-btnpage:hover .c-btnpage__icon {
    transform: translateX(-5px);
  }
  .c-btnfolder:hover {
    color: #000000;
  }
  .c-btnfolder:hover .c-btnfolder__icon {
    transform: translateX(-5px);
  }
  .c-btndataindex:hover {
    opacity: 1;
  }
  .c-btndataindex:hover .c-btndataindex__icon {
    transform: translateX(-5px);
  }
  .c-anchorListItem {
    width: 100%;
    max-width: none;
  }
  .c-anchorListItem:nth-child(n + 2) {
    margin-top: 2px;
  }
  .c-anchorList {
    display: block;
    max-width: none;
    width: 100%;
  }

  .c-contentTitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0;
    padding-bottom: 16px;
    margin-top: 40px;
  }
  .c-contentsubTitle {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0;
    margin: 40px 0 20px 0;
  }
  .c-pdfflexList {
    gap: 12px;
    display: block;
    width: 100%;
  }
  .c-pdfflexlistItem {
    margin: 12px 0;
  }
  .c-pdfItem {
    max-width: none;
    width: 100%;
  }
  .c-pdfItem {
    width: 100%;
  }
  .c-integratedpdfItem {
    width: 100%;
    max-width: none;
    margin: 25px 0;
  }
  .c-integratedvalueItem {
    max-width: 75px;
  }
  .c-articleTitle {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: 0;
    padding: 0 0 0 0;
    margin-top: 40px;
  }
  .c-categoryTitle {
    font-size: 12px;
    margin-left: 29px;
  }
  .c-anchorContainer {
    margin: 0 0 40px 0;
  }
  .c-pdfBox {
    width: 100%;
  }

  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
  .u-diplayblock {
    display: block !important;
  }
  .m-topicFirstrow {
    padding-bottom: 20px;
  }
  .m-btnpdf {
    padding: 2px 33px 2px 20px;
    min-height: 34px;
  }
  .m-btnpdf__flattenicon {
    margin-left: 4px;
  }
  .m-btnpdfseparateddownload {
    padding: 8px 26px 8px 20px;
  }
  .m-marginRL {
    margin-right: 0px;
    margin-left: 0px;
  }
  .l-header .topmenu .menu .menu-list.m-headernavESG {
    width: 100%;
    padding-left: 0px;
  }
}

/* ここから上がコンポーネントおよびモディファイヤー部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

@media screen and (max-width: 768px) {
  .l-header .function ul li.function-lang a {
    background: url(https://www.nof.co.jp/assets/images/common/icon-language.png)
      center center no-repeat;
    background-size: 100% 100%;
    height: 32px;
  }
  .l-header .function ul li.function-contact a {
    background: url(https://www.nof.co.jp/assets/images/common/icon-mail.png)
      center center no-repeat;
    background-size: 100% 100%;
    height: 32px;
  }
}

@media screen and (min-width: 769px) {
  .menu-close__text {
    display: inline-block;
    vertical-align: middle;
    color: #707070;
    font-size: 14px;
    line-height: 24px;
    transition: 0.25s ease-out;
  }
  .close-btn1 {
    display: block;
    position: absolute;
    left: 0px;
    width: 100%;
    height: 2px;
    background-color: #127acc;
    border-radius: 4px;
    transform: translateY(10px) rotate(45deg);
  }
  .close-btn2 {
    display: block;
    position: absolute;
    left: 0px;
    width: 100%;
    height: 2px;
    background-color: #127acc;
    border-radius: 4px;
    transform: translateY(10px) rotate(-45deg);
  }
  .l-header .menu {
    display: none;
    position: absolute;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    top: 130px;
    left: 0;
    background: #e7f3fc;
    padding: 53px 0 51px 0;
  }
  .l-header .gnav > ul {
    max-width: 1540px;
    padding: 0 5%;
  }

  .l-header .gnav .menu-close {
    display: none;
    opacity: 0;
    position: absolute;
    text-align: center;
    right: 1.5%;
    top: 145px;
    width: 150px;
    height: 26px;
    border-radius: 13px;
    background: #fff;
    border: 1px solid #707070;
    z-index: 99;
    text-align: center;
    cursor: pointer;
    transition: 0.25s ease-out;
  }
  .l-header .gnav .menu-close span {
    display: inline-block;
    vertical-align: middle;
    color: #707070;
    font-size: 14px;
    line-height: 24px;
    transition: 0.25s ease-out;
  }
  .l-header .gnav .menu-close.is-active {
    opacity: 1;
    display: block;
  }
  .l-header .gnav .menu-close:hover {
    background: #707070;
  }

  .l-header .menu .menu-list > div > li {
    margin-bottom: 20px;
  }

  .menu-wrap .menu-list.m-headernavESG .menu-block1 .c-folderTitle {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 600;
  }
  .menu-wrap .menu-list.m-headernavESG .menu-block1 .c-folderTitle::before {
    content: "";
    position: absolute;
    display: block;
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    border-top: 2px solid #127acc;
    border-right: 2px solid #127acc;
    transform: rotate(45deg);
  }

  .l-header .menu .menu-bnr {
    width: 300px;
    padding-left: 50px;
    margin-left: 50px;
    border-left: none;
  }
  .l-header .menu .menu-bnr.menu-bnr-inside li a {
    padding: 0;
  }
}

/* ここから下がサステナビリティtopページ部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.p-fv {
  background-image: url(../img/sustainability_top/img_fv.png);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 252px;
}
.p-fv__innerwrap {
  max-width: 1540px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  min-height: 252px;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.p-mv {
  min-height: 900px;
  background-image: url(../img/sustainability_top/img_mv.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.p-mv__text {
  display: inline-block;
}
.p-mv__guide {
  font-size: 15px;
  font-weight: 600;
}
.p-mv .c-list {
  width: 500px;
}
.l-breadcrumbs__innerwrap {
  padding-top: 14px;
  max-width: 1540px;
  margin: 0 auto;
  padding: 15px 5%;
}
.l-breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
}
.l-breadcrumbs ul li:first-child {
  margin-right: 5px;
}
.l-breadcrumbs ul li:nth-child(2) {
  font-size: 16px;
  line-height: 1.4;
  color: #707070;
}
.l-breadcrumbs li a {
  display: block;
  text-decoration: none;
  padding-right: 20px;
  color: #707070;
  font-size: 16px;
  line-height: 1.4;
}
.l-breadcrumbs ul li:first-child a {
  color: #333333;
}
.l-breadcrumbs li a:hover {
  opacity: 0.75;
}
.l-breadcrumbs li a::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 8.24px;
  height: 8.24px;
  top: 0px;
  bottom: 0;
  right: 5px;
  left: auto;
  margin: auto 0 auto auto;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: rotate(45deg);
  z-index: 10;
}
.l-breadcrumbs__box {
  position: relative;
  margin-right: 5px;
}

.p-mv__innerwrapSustainability {
  padding: 106px 50px 0 50px;
  max-width: 1124px;
  margin: 0 auto;
}

.p-mv__subtop {
  display: flex;
  margin-top: 161px;
  gap: 110px;
}
.p-mv__subtopBlock {
  max-width: 413px;
}

.p-mv__btnBlock {
  display: flex;
  position: relative;
}
.p-product__innerwrap {
  max-width: 1124px;
  margin: 120px auto 80px auto;
  padding: 0 50px;
}
.p-productMateriality {
  display: flex;
  gap: 24px;
}

.p-productMateriality__link {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.p-productMateriality__link img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-productMateriality__link:hover img {
  opacity: 1;
}
.p-productMateriality__textArea {
  max-width: 500px;
}
.p-productMateriality__imgBox {
  width: 500px;
  height: 307px;
  overflow: hidden;
}
.p-productMateriality__imgBox img {
  transition: 0.4s ease;
}
.p-productMateriality .c-list {
  margin-top: 20px;
}
.p-productIndex {
  background-color: #f5f5f5;
}
.p-productIndex__link {
  display: block;
  width: 100%;
  height: 100%;
}
.p-productIndex__link img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-productIndex__link:hover img {
  opacity: 1;
}
.p-productIndex__innerwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 80px 20px;
  max-width: 1064px;
  margin: 0 auto;
}
.p-productIndex__indexBox {
  background-color: #ffffff;
  padding: 30px 30px;
  width: 48.7%;
}
.p-productIndex__imgBox {
  max-width: 440px;
  height: 247.5px;
  overflow: hidden;
}
.p-productIndex__imgBox img {
  transition: 0.4s ease;
}
.p-productIndex__imgBox:hover img {
  transform: scale(1.1);
}
.p-productIndex__imgBox.hovered img {
  transform: scale(1.1);
}
.p-productIndex__textArea {
  margin-top: 21px;
}

.p-productIndex .c-list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 0px 28px;
}
.p-productDataindex__innerwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1124px;
  margin: 0 auto;
  padding: 80px 50px;
}
.p-productDataindex__indexBox {
  max-width: 325px;
  width: 325px;
  border: 1px solid #127acc;
  padding: 10px 20px 20px 20px;
}

.p-productDataindex .c-list {
  margin-top: 12px;
}
.p-productDataindex .c-btnfolder__page {
  display: flex;
  justify-content: space-between;
  line-height: 1.2;
}
.p-productDataindex .c-btnfolder__page__text {
  font-weight: normal;
}

.l-header .menu .menu-bnr > li a span {
  margin-top: 15px;
  display: block;
  position: relative;
  padding-left: 20px;
}
.l-header .menu .menu-bnr > li a span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-top: 2px solid #707070;
  border-right: 2px solid #707070;
  transform: rotate(45deg);
}

.menu-wrap .menu-list.m-headernavESG .menu-block1 {
  width: 326px;
  padding-top: 0px;
}
@media screen and (max-width: 768px) {
  .l-main {
    padding-top: 55px;
  }
  .p-mv__innerwrapSustainability {
    padding: 34px 10vw 60px 10vw;
    max-width: 1024px;
    margin: 0 auto;
  }
  .p-fv {
    min-height: 155px;
  }
  .p-fv__innerwrap {
    min-height: 155px;
    padding: 0 0;
  }
  .p-mv {
    min-height: 0;
    background-image: url(../img/sustainability_top/img_mv_sp.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .p-mv__text {
    display: none;
  }
  .p-mv .c-list {
    width: 100%;
  }
  .l-breadcrumbs ul li:nth-child(2) {
    font-size: 16px;
    line-height: 1.7;
    color: #707070;
  }
  .l-breadcrumbs li a {
    display: block;
    text-decoration: none;
    padding-right: 20px;
    color: #707070;
    font-size: 16px;
    line-height: 1.7;
  }
  .l-breadcrumbs__box {
    position: relative;
  }
  .p-mv__innerwrap {
    padding: 34px 0 60px 0;
    max-width: 313px;
    margin: 0 auto;
  }
  .p-mv__subtop {
    display: block;
    margin-top: 66px;
    gap: 110px;
  }

  .p-product__innerwrap {
    padding: 60px 10vw;
    margin: 0 auto;
  }
  .p-productMateriality {
    flex-direction: column-reverse;
  }
  .p-productMateriality__imgBox {
    width: 100%;
    height: auto;
  }
  .p-productMateriality__imgBox:hover img {
    transform: scale(1);
  }
  .p-productMateriality__imgBox.hovered img {
    transform: scale(1);
  }
  .p-productIndex__imgBox:hover img {
    transform: scale(1);
  }
  .p-productIndex__imgBox.hovered img {
    transform: scale(1);
  }
  .p-productIndex__innerwrap {
    display: block;
    padding: 16px 0 80px 0;
    margin: 0 auto;
  }
  .p-productIndex__imgBox {
    width: 100%;
    max-width: none;
    height: auto;
  }

  .p-productIndex__indexBox {
    background-color: #ffffff;
    padding: 20px 5vw;
    margin: 24px 5vw;
    width: auto;
  }
  .p-productIndex__textArea {
    margin-top: 10px;
  }
  .p-productIndex .c-list {
    margin-top: 8px;
  }
  .p-productDataindex__innerwrap {
    max-width: 313px;
    margin: 0 auto;
    padding: 60px 0;
  }
  .p-productDataindex__indexBox {
    padding: 20px 20px 18px 20px;
  }

  .p-productDataindex .c-list {
    margin-top: 10px;
  }
  .p-productDataindex .c-btnfolder__page {
    font-size: 14px;
    line-height: 1.2;
    padding: 0 0;
    justify-content: flex-start;
  }
  .p-productMateriality__textArea {
    max-width: none;
  }
  .p-mv__subtopBlock {
    max-width: none;
  }
  .l-breadcrumbs li a:hover {
    opacity: 1;
  }
  .menu-wrap .menu-list.m-headernavESG .menu-block2 {
    padding: 0 0 0 0;
    margin-top: 0;
  }
  .topmenu .menu .sustainability-btnBlock .c-btncsr {
    font-size: 15px;
  }
}
/* ここから上がサステナビリティtopページ部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

/* ここから下が第3階層ページ部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

.l-breadcrumbs ul li:nth-child(3) {
  font-size: 16px;
  line-height: 1.4;
  color: #707070;
}

.p-mv__innerwrap {
  padding-top: 40px;
  max-width: 1024px;
  margin: 0 auto;
}
.p-fvThird {
  min-height: 252px;
}
.p-mvThird__innerwrap {
  padding: 40px 50px 0 50px;
  max-width: 1124px;
  margin: 0 auto;
}
.p-fvThird__innerwrap {
  padding: 91px 5% 121px 5%;
  max-width: 1540px;
  margin: 0 auto;
}
.p-productThirdlevelIndex__innerwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 24px;
  padding: 80px 50px;
  max-width: 1124px;
  margin: 0 auto;
}
.p-productThirdLevelIndex__link {
  display: block;
  width: 100%;
  height: 100%;
}
.p-productThirdLevelIndex__link img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-productThirdLevelIndex__link:hover img {
  opacity: 1;
}
.p-productThirdlevelIndex__indexBox {
  width: 31.7%;
}
.p-productThirdlevelIndex__imgBox {
  max-width: 325px;
  height: 182px;
  overflow: hidden;
}
.p-productThirdlevelIndex__imgBox img {
  transition: 0.4s ease;
}
.p-productThirdlevelIndex__imgBox:hover img {
  transform: scale(1.1);
}
.p-productThirdlevelIndex__imgBox.hovered img {
  transform: scale(1.1);
}

.p-productThirdlevelIndex__textArea {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .l-main {
    padding-top: 55px;
  }

  .l-breadcrumbs ul li:nth-child(2) {
    font-size: 16px;
    line-height: 1.7;
    color: #707070;
  }
  .l-breadcrumbs ul li:nth-child(3) {
    font-size: 16px;
    line-height: 1.7;
  }
  .p-fvThird {
    min-height: 155px;
  }
  .p-fvThird__innerwrap {
    padding: 63px 0 0 0;
    max-width: 1024px;
    margin: 0 auto;
  }
  .p-mvThird__innerwrap {
    padding: 0 5%;
    margin: 0 auto;
    margin: 34px auto 60px auto;
  }

  .p-productThirdlevel__innerwrap {
    padding: 60px 0;
    max-width: 313px;
    margin: 0 auto;
  }

  .p-productThirdlevelIndex__innerwrap {
    display: block;
    padding: 0 5%;
    margin: 60px auto;
  }
  .p-productThirdlevelIndex__imgBox {
    width: 100%;
    max-width: none;
  }
  .p-productThirdlevelIndex__imgBox.hovered img {
    transform: scale(1);
  }
  .p-productThirdlevelIndex__imgBox:hover img {
    transform: scale(1);
  }
  .p-productThirdlevelIndex__indexBox {
    width: 100%;
  }
  .p-productThirdlevelIndex__indexBox:nth-child(n + 2) {
    margin-top: 20px;
  }

  .p-productThirdlevelIndex__indexBox {
    background-color: #ffffff;
    max-width: none;
  }
  .p-productThirdlevelIndex__textArea {
    margin-top: 10px;
  }
  .p-productThirdlevelIndex .c-list {
    margin-top: 8px;
  }
}

/* ここから上が第3階層ページ部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

/* ここから下が第4階層ページ部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

.p-fvForth {
  background-color: #127acc;
  height: 252px;
}
.p-fvForth__innerwrap {
  padding: 63px 5% 121px 5%;
  max-width: 1540px;
  margin: 0 auto;
}
.p-mvForth {
  min-height: 0;
  background-image: none;
}

.l-breadcrumbs ul li:nth-child(4) {
  font-size: 16px;
  line-height: 1.4;
  color: #707070;
}
.p-productForth__innerwrap {
  padding: 80px 50px 120px 50px;
  max-width: 1124px;
  margin: 0 auto;
}
.p-productForth__imgArea {
  margin: 40px auto 30px auto;
  max-width: 850px;
}
.p-productForth__imgAreaSecondrow {
  display: flex;
  gap: 0 50px;
  margin: 40px 0px 70px 0px;
}
.p-productForth__caption {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
}
.p-productForth__topicArea {
  background-color: #e7f3fc;
  padding: 10px 40px;
  margin: 40px 0 120px 0;
}

.p-productForth__topicTitle {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: #127acc;
  letter-spacing: 0;
  margin: 0px 0 16px 0;
  padding-top: 40px;
}
.p-productForth__reportArea {
  margin: 20px 0 40px 0;
}
.p-productForth__imgAreaFirstrow .p-productForth__imgBox {
  width: 700px;
  margin: 0 auto;
}

.p-productForth__imgAreaSecondrow .p-productForth__imgBox {
  aspect-ratio: 16 / 9;
  width: 400px;
  height: 225px;
}
.p-productForth__imgAreaSecondrow .p-productForth__imgBox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-productForth__externallink {
  display: block;
  position: relative;
  font-size: 15px;
  line-height: 2;
  font-weight: bold;
  padding-left: 24px;
  margin: 20px 0;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.p-productForth__externallink:hover {
  opacity: 0.4;
}
.p-productForth__externallink::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background: url(../../assets/img/governance/corporategovernance/img_externallink.svg)
    no-repeat;
  background-size: 100% auto;
}
.p-prductForth__anchorarrowBlue {
  display: block;
}
.p-prductForth__anchorarrowWhite {
  display: none;
}

@media screen and (max-width: 768px) {
  .p-fvForth {
    height: 155px;
  }
  .p-fvForth__innerwrap {
    padding: 53px 0 0 0;
  }
  .p-productForth__innerwrap {
    padding: 30px 40px 80px 40px;
  }
  .p-productForth__reportArea {
    display: block;
  }
  .p-productForth__topicArea {
    margin-bottom: 60px;
    padding: 0 20px;
  }
  .l-breadcrumbs ul li:nth-child(4) {
    font-size: 16px;
    line-height: 1.7;
  }
  .p-productForth__imgArea {
    margin-top: 16px;
  }
  .p-productForth__imgAreaFirstrow .p-productForth__imgBox {
    width: 100%;
  }

  .p-productForth__imgAreaSecondrow {
    display: block;
  }
  .p-productForth__topicTitle {
    margin: 0px 0 10px 0;
  }
  .p-productForth__caption {
    font-size: 12px;
    margin-top: 10px;
  }
  .p-productForth__externallinkArea {
    display: none;
  }
  .p-productForth__imgAreaSecondrow .p-productForth__imgBox {
    width: 100%;
    height: auto;
  }
}

/* ここから上が第4階層ページ部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
/* ここから下が第4階層の表の部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 1000px;
  table-layout: fixed;
  font-size: 15px;
  line-height: 2;
}
thead {
  font-weight: 600;
}

th,
td {
  border: 1px solid #ccc;
  padding: 4px 8px;
  text-align: center;
  overflow-wrap: break-word;
}
td:first-child {
  text-align: left;
}

th {
  background-color: #2f72c4; /* 青色 */
  color: white;
  font-weight: bold;
}

thead th {
  background-color: #2f6eb9;
  color: white;
}

.table_csv thead tr th:first-child {
  width: 230px;
}
.table_csv tbody tr td:first-child {
  width: 230px;
}

/* ここからがウィジウィグで作成した表にあてるスタイル部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

.table_tinymce ul {
  list-style: disc;
}
.table_tinymce ul li {
  padding-left: 15px;
}
.table_tinymce ul li::before {
  content: "•"; /* 黒点 */
  color: black; /* 色を黒に */
  display: inline-block;
  width: 15px; /* 点の幅を確保 */
  margin-left: -12px; /* 位置を調整 */
}
.table_tinymce ol li {
  counter-increment: number;
  position: relative;
  padding-left: 18px;
}
.table_tinymce ol li::before {
  content: counter(number) ".";
  position: absolute;
  left: 2px;
}

.table_tinymce table {
  font-size: 15px;
  line-height: 1.2;
}

.table_tinymce td {
  vertical-align: middle;
  line-height: 1.5;
}
.table_tinymce td p {
  line-height: 1.5;
}
.table_tinymce td a {
  text-decoration: underline;
}
.table_tinymce {
  margin: 40px 0 80px 0;
  overflow: auto;
}
.table_tinymce p {
  overflow: hidden;
}

strong span {
  font-weight: 600;
}
/* ここまでがウィジウィグで作成した表にあてるスタイル部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

/* ここから上が第4階層の表の部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
/* ここから下が第4階層統合報告書ダウンロード特有の部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

.p-reportArea__contentTitle {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
}
.p-reportArea__innerwrap {
  display: flex;
  gap: 64px;
  margin: 60px 0 80px 0;
}
.p-reportArea__caption {
  font-size: 15px;
  line-height: 2;
  color: #000000;
  letter-spacing: 0;
  margin-bottom: 30px;
}
.p-reportArea__imgbox {
  flex-shrink: 0;
  width: 460px;
}
.p-downloadTitleBox {
  margin: 10px 0 0px 0;
}
.p-downloadCategoryTitle {
  color: #127acc;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 600;
  padding: 16px 0;
}
.p-downloadCategoryBox {
  margin: 60px 0 0 0;
}
.p-anchorBacknumber {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e7f3fc;
  margin-top: 88px;
}
@media screen and (max-width: 768px) {
  .p-reportArea__contentTitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0;
  }
  .p-reportArea__caption {
    margin-top: 20px;
    font-size: 14px;
    line-height: 2;
    color: #000000;
    letter-spacing: 0;
  }
  .p-reportArea__innerwrap {
    display: block;
    margin: 60px 0 80px 0;
  }
  .p-reportArea__imgbox {
    width: auto;
  }
  .pdf-size {
    font-size: 10px;
  }
}

/* ここから上が第4階層統合報告書ダウンロード特有の部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
/* ここから下が第4階層バックナンバー特有の部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.p-backmunberreportBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 740px;
  font-size: 18px;
}
.p-backmunberreportBox {
  margin-bottom: 12px;
}
.p-backnumberBox {
  display: flex;
  justify-content: space-between;
  padding: 18px 30px 6px 30px;
  margin: 20px 0;
  background-color: #e7f3fc;
}

.p-backnumberFy__text {
  color: #127acc;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0;
}
.p-backmunberreportname__text {
  color: #000000;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0;
}
.p-backnumberreportArea {
  width: 76%;
}

@media screen and (max-width: 768px) {
  .p-backmunberpdf {
    max-width: 75px;
  }
  .p-backmunberreportBox {
    gap: 10px;
  }
  .p-backnumberreportArea {
    width: 100%;
  }
  .p-backnumberBox {
    display: block;
    padding: 26px 20px;
    margin: 20px 0;
    background-color: #e7f3fc;
  }
  .p-backmunberreportname__text {
    color: #000000;
    font-size: 16px;
  }
}

/* ここから上が第4階層バックナンバー特有の部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

/* ここからbottomのヘッダー部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

@media screen and (min-width: 769px) {
  .menu-Bottom {
    display: block;
    width: 100%;
    background: #e7f3fc;
    padding: 55px 0 50px 0;
  }

  .c-btncsr_bottom {
    display: flex;
    align-items: center;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
    padding: 10px 0;
    max-width: 280px;
    transition: all 0.25s ease-out;
  }
  .c-btncsr_bottom:hover {
    opacity: 0.6;
  }
  .menu-wrap__bottom {
    display: flex;
    justify-content: space-between;
    gap: 23px;
    margin-top: 13px;
  }
  .menu-list__bottom {
    padding: 0 15px;
    width: calc(100% / 3 * 2);
    column-count: 2;
    column-gap: 18px;
    flex: unset;
  }
  .menu-listItem__bottom {
    margin-bottom: 20px;
    break-inside: avoid;
  }

  .title-bottom {
    display: block;
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 600;
    transition: all 0.25s ease-out;
  }
  .title-bottom:hover {
    opacity: 0.6;
  }
  .title-bottom::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    border-top: 2px solid #127acc;
    border-right: 2px solid #127acc;
    transform: rotate(45deg);
  }

  .menu-subtitleList {
    width: 296px;
    padding-top: 6px;
    break-inside: avoid;
  }
  .menu-subtitleListItem {
    margin-bottom: 8px;
    padding-left: 10px;
  }
  .subtitle-bottom {
    display: block;
    position: relative;
    font-size: 14px;
    line-height: 1.14;
    padding-left: 20px;
    font-weight: 400;
    transition: all 0.25s ease-out;
  }
  .subtitle-bottom:hover {
    opacity: 0.6;
  }
  .subtitle-bottom::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    border-top: 2px solid #707070;
    border-right: 2px solid #707070;
    transform: rotate(45deg);
  }
  .menu-list__bottomSecond {
    width: calc(100% / 3);
  }
}
@media screen and (max-width: 768px) {
  .menu-Bottom {
    display: none;
  }
}

/* ここまでがbottomのヘッダー部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
/* ここから下がフッター部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

@media screen and (min-width: 769px) {
  .l-inner__sustainability {
    position: relative;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 5%;
  }
  .l-inner {
    position: relative;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 5%;
  }
  .l-footer .fnav dl dt {
    font-size: 1.6rem;
  }
  .l-footer .fnav dl dd ul li {
    font-size: 1.6rem;
  }
  .l-footer .fsub .copyright {
    font-size: 1.6rem;
  }
  .l-footer .fsub .fsub-list li {
    font-size: 1.6rem;
  }
  .link-blank::after {
    content: "";
    display: inline-block;
    margin: 0 0 0 8px;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    background: url(https://www.nof.co.jp/assets/images/common/icon-open.svg)
      no-repeat;
    background-size: 100% auto;
  }
}

@media screen and (max-width: 768px) {
  .l-inner__contact {
    width: 100%;
    padding: 0 2.5%;
    min-width: inherit;
  }
  .sec-ttl i {
    font-size: 16px;
  }
  .btn.btn-contact {
    font-size: 19px;
  }
  .btn {
    width: 100%;
  }
}

/* ここから上がフッター部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

/* ここからがcsv形式の表にあてるスタイル部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

.table_csv thead tr th:first-child {
  width: 230px;
}
.table_csv tbody tr td:first-child {
  width: 230px;
}
.table_csv tbody tr td {
  line-height: 1.5;
}

/* ここまでがcsv形式の表にあてるスタイル部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
/* ここから下がテキストエディタのコメマークとアスタリスク部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

.c-caution01 {
  padding-left: 18px;
  text-indent: 1px;
  position: relative;
  line-height: 1.6;
  font-size: 14px;
}

.c-caution01::before {
  content: "※";
  position: absolute;
  left: 2px;
}
.c-caution02 {
  text-indent: 1px;
  position: relative;
  line-height: 1.6;
  font-size: 14px;
}
ol.c-caution02::before {
  content: "";
  display: none;
}
.c-caption ol.c-caution02 li {
  padding-left: 30px;
  counter-increment: caution02;
  position: relative;
}
.c-caption ol.c-caution02 li::before {
  content: "※ " counter(caution02);
  margin-left: 0px;
}

.c-asterisk01 {
  padding-left: 18px;
  text-indent: 1px;
  position: relative;
  line-height: 1.6;
  font-size: 14px;
}

.c-asterisk01::before {
  content: "*";
  position: absolute;
  left: 2px;
}
.c-asterisk02 {
  text-indent: 1px;
  position: relative;
  line-height: 1.6;
  font-size: 14px;
}
ol.c-asterisk02::before {
  content: "";
  display: none;
}
.c-caption ol.c-asterisk02 li {
  padding-left: 30px;
  counter-increment: caution02;
  position: relative;
}
.c-caption ol.c-asterisk02 li::before {
  content: "＊" counter(caution02);
  margin-left: 0px;
}
@media screen and (max-width: 768px) {
  .c-caution01 {
    font-size: 13px;
  }
  .c-caution02 {
    font-size: 13px;
  }
  .c-asterisk01 {
    font-size: 13px;
  }
  .c-asterisk02 {
    font-size: 13px;
  }
}
/* ここまでがテキストエディタのコメマークとアスタリスク部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

/* ここから下がヘッダーのサステナ部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.topmenu .menu .l-inner__sustainability .sustainability-btnBlock .c-btncsr {
  display: flex;
  align-items: center;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  padding: 10px 0;
  max-width: 280px;
  transition: all 0.25s ease-out;
}
.c-btncsr__icon {
  display: inline-block;
  flex-shrink: 0;
  padding-left: 5px;
  width: 25px;
  height: 20px;
}
.c-btncsr__underline {
  border-bottom: 1px solid #127acc;
}
.l-header .topmenu .menu .l-inner__sustainability .menu-list.m-headernavESG {
  padding: 0 0 0 18px;
  display: block;
  column-count: unset;
  width: calc(100% / 3);
  flex: unset;
}
.l-inner__sustainability .menu-wrap .menu-list.m-headernavESG .menu-block2 {
  padding: 24px 16px 16px 16px;
  margin-top: 40px;
  background-color: #ffffff;
  width: 100%;
}
.l-inner__sustainability
  .menu-wrap
  .menu-list__ESG.m-headernavESG
  .menu-block2
  .menu-block2__inner {
  padding-left: 0px;
}
.l-header
  .menu
  .l-inner__sustainability
  .menu-bnr.menu-bnr-inside
  > li:not(:last-child) {
  margin-bottom: 30px;
  padding-left: 0px;
}
.l-header .menu .l-inner__sustainability .menu-bnr > li a span {
  margin-top: 15px;
  display: block;
  position: relative;
  padding-left: 20px;
}
.l-header .menu .l-inner__sustainability .menu-list .menu-bnr-inside li {
  padding-left: 0px;
}
.l-header .menu .l-inner__sustainability .menu-bnr > li a span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-top: 2px solid #707070;
  border-right: 2px solid #707070;
  transform: rotate(45deg);
}
.u-pc {
  display: block;
}
.u-sp {
  display: none;
}

@media screen and (min-width: 769px) {
  .l-inner__sustainability {
    position: relative;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 5%;
  }
  .l-header .menu.m-menusustainability {
    display: none;
    position: absolute;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    top: 130px;
    left: 0;
    background: #e7f3fc;
    padding: 53px 0 51px 0;
  }
  .l-header .menu .l-inner__sustainability .menu-wrap {
    display: flex;
    margin-top: 13px;
  }
  .l-header .menu .l-inner__sustainability .menu-wrap .menu-list {
    width: calc(100% / 3 * 2);
    column-count: 2;
    column-gap: 18px;
    flex: unset;
    padding-left: 18px;
  }
  .l-header .menu .l-inner__sustainability .menu-list > li {
    margin-bottom: 20px;
    break-inside: avoid;
  }

  .l-header .menu .l-inner__sustainability .menu-list > li > .c-folderTitle {
    position: relative;
    padding-left: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.75;
    transition: all 0.25s ease-out;
    display: block;
  }
  .l-header .menu .l-inner__sustainability .menu-list li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    border-top: 2px solid #127acc;
    border-right: 2px solid #127acc;
    transform: rotate(45deg);
  }

  .l-header .menu .l-inner__sustainability .menu-list li ul {
    padding-top: 6px;
  }
  .l-header .menu .l-inner__sustainability .menu-list li ul li {
    margin-bottom: 8px;
    padding-left: 10px;
  }

  .l-header .menu .l-inner__sustainability .menu-list li ul li a {
    position: relative;
    font-size: 14px;
    line-height: 1.14;
    padding-left: 20px;
    font-weight: 400;
    display: block;
    transition: all 0.25s ease-out;
  }
  .l-header .menu .l-inner__sustainability .menu-list li ul li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    border-top: 2px solid #707070;
    border-right: 2px solid #707070;
    background: none;
    transform: rotate(45deg);
  }
  .l-header
    .menu
    .l-inner__sustainability
    .menu-list.m-headernavESG
    li
    .menu-bnr
    li
    a::before {
    content: "";
    display: none;
  }

  .l-header .menu .l-inner__sustainability .menu-bnr.menu-bnr-inside li a {
    padding: 0px;
  }
}
@media screen and (max-width: 768px) {
  .l-inner__sustainability {
    padding: 5%;
    background: #e7f3fc;
    min-width: inherit;
    width: 100%;
  }
  .topmenu .menu .l-inner__sustainability .sustainability-btnBlock .c-btncsr {
    font-size: 15px;
  }
  .l-header .menu .l-inner__sustainability .menu-wrap .menu-list {
    background: #e7f3fc;
    padding: 0;
  }
  .l-header .menu .l-inner__sustainability .menu-list > li > .c-folderTitle {
    display: block;
    padding: 3% 5%;
    position: relative;
    font-size: 1.5rem;
  }
  .l-header .menu .l-inner__sustainability .menu-list li ul li a {
    display: block;
    padding: 2.5% 5% 2.5% 10%;
    position: relative;
  }

  .l-header .menu .l-inner__sustainability .menu-bnr.menu-bnr-inside li a {
    text-align: left;
    padding: 0;
    max-width: 320px;
  }
  .l-header .topmenu .menu .l-inner__sustainability .menu-list.m-headernavESG {
    width: 100%;
    padding-left: 0px;
  }
  .l-inner__sustainability .menu-wrap .menu-list.m-headernavESG .menu-block2 {
    padding: 0 0 0 0;
    margin-top: 0;
  }
  .l-header .menu .l-inner__sustainability .menu-bnr > li a span::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: auto;
    bottom: 0;
    left: 5px;
    margin: auto;
    width: 5px;
    height: 5px;
    border-top: 2px solid #707070;
    border-right: 2px solid #707070;
    transform: rotate(45deg);
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}

.l-inner__sustainability a,
.l-inner__sustainability img {
  transition: 0.2s linear;
}
/* ここまでがヘッダーのサステナ部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

/* ここから下がヘッダーのサステナ以外の部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

.topmenu .menu .l-inner .sustainability-btnBlock .c-btncsr {
  display: flex;
  align-items: center;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  padding: 10px 0;
  max-width: 280px;
  transition: all 0.25s ease-out;
}
.c-btncsr__icon {
  display: inline-block;
  flex-shrink: 0;
  padding-left: 5px;
  width: 25px;
  height: 20px;
}
.c-btncsr__underline {
  border-bottom: 1px solid #127acc;
}
.l-header .topmenu .menu .l-inner .menu-list.m-headernavESG {
  padding: 0 0 0 18px;
  display: block;
  column-count: unset;
  width: calc(100% / 3);
  flex: unset;
}
.l-inner .menu-wrap .menu-list.m-headernavESG .menu-block2 {
  padding: 24px 16px 16px 16px;
  margin-top: 40px;
  background-color: #ffffff;
  width: 100%;
}
.l-inner
  .menu-wrap
  .menu-list__ESG.m-headernavESG
  .menu-block2
  .menu-block2__inner {
  padding-left: 0px;
}
.l-header .menu .l-inner .menu-bnr.menu-bnr-inside > li:not(:last-child) {
  margin-bottom: 30px;
  padding-left: 0px;
}
.l-header .menu .l-inner .menu-bnr > li a span {
  margin-top: 15px;
  display: block;
  position: relative;
  padding-left: 20px;
}
.l-header .menu .menu-list .menu-bnr-inside li {
  padding-left: 0px;
}

.u-pc {
  display: block;
}
.u-sp {
  display: none;
}

@media screen and (min-width: 769px) {
  .l-header .menu .l-inner .menu-wrap {
    display: flex;
    margin-top: 13px;
  }
  .l-header .menu .l-inner .menu-wrap .menu-list {
    width: calc(100% / 3 * 2);
    column-count: 2;
    column-gap: 18px;
    flex: unset;
    padding-left: 18px;
  }
  .l-header .menu .l-inner .menu-list > li {
    margin-bottom: 20px;
    break-inside: avoid;
  }

  .l-header .menu .l-inner .menu-list > li > .c-folderTitle {
    position: relative;
    padding-left: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.75;
    transition: all 0.25s ease-out;
    display: block;
  }
  .l-header .menu .l-inner .menu-list li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    border-top: 2px solid #127acc;
    border-right: 2px solid #127acc;
    transform: rotate(45deg);
  }

  .l-header .menu .l-inner .menu-list li ul {
    padding-top: 6px;
  }
  .l-header .menu .l-inner .menu-list li ul li {
    margin-bottom: 8px;
    padding-left: 10px;
  }

  .l-header .menu .l-inner .menu-list li ul li a {
    position: relative;
    font-size: 14px;
    line-height: 1.14;
    padding-left: 20px;
    font-weight: 400;
    display: block;
    transition: all 0.25s ease-out;
  }
  .l-header .menu .l-inner .menu-list li ul li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    border-top: 2px solid #707070;
    border-right: 2px solid #707070;
    background: none;
    transform: rotate(45deg);
  }
  .l-header .menu .menu-bnr {
    width: 300px;
    padding-left: 50px;
    margin-left: 50px;
    border-left: none;
  }
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding: 5%;
    background: #e7f3fc;
    min-width: inherit;
    width: 100%;
  }
  .topmenu .menu .l-inner .sustainability-btnBlock .c-btncsr {
    font-size: 15px;
  }
  .l-header .menu .l-inner .menu-wrap .menu-list {
    background: #e7f3fc;
    padding: 0;
  }
  .l-header .menu .l-inner .menu-list > li > .c-folderTitle {
    display: block;
    padding: 3% 5%;
    position: relative;
    font-size: 1.5rem;
  }
  .l-header .menu .l-inner .menu-list li ul li a {
    display: block;
    padding: 2.5% 5% 2.5% 10%;
    position: relative;
    font-size: 1.3rem;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}

.l-inner a,
.l-inner img {
  transition: 0.2s linear;
}
/* ここまでがヘッダーのサステナ以外の部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

/* ここからがCSR配下のサステナ以外のヘッダーグロナビ修正部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
@media screen and (min-width: 769px) {
  .l-header .menu.m-old {
    display: none;
    position: absolute;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    top: 130px;
    left: 0;
    background: #e7f3fc;
    padding: 16px 0;
  }
  .l-header .menu.m-old .l-inner .menu-wrap {
    display: flex;
    margin-top: 0;
  }
  .l-header .menu.m-old .l-inner .menu-wrap .menu-list {
    flex: 1;
    padding-left: 18px;
    width: 100%;
    column-count: auto;
  }
  .l-header .menu.m-old .menu-list > li > a {
    font-size: 1.6rem;
    position: relative;
    padding-left: 20px;
  }
  .l-header .menu.m-old .l-inner .menu-list li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    border-top: 2px solid #707070;
    border-right: 2px solid #707070;
    transform: rotate(45deg);
  }
  .l-header .menu.m-old .l-inner .menu-list > li {
    margin-bottom: 12px;
  }
  .l-header .menu.m-old .menu-wrap .menu-bnr {
    border-left: 1px solid #000;
  }
  .l-header .menu.m-old .menu-list > li ul li {
    margin-bottom: 12px;
    padding-left: 22px;
  }
  .l-header .menu.m-old .menu-list > li ul li a {
    position: relative;
    font-size: 1.6rem;
    padding-left: 20px;
    line-height: 1;
  }
  .l-header .menu.m-old.m-layer3 .menu-list > li ul li a::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 12px;
    height: 2px;
    background: #707070;
    transform: none;
    border: none;
  }
  .l-header .menu.m-old.m-layer3 .l-inner .menu-list li ul {
    padding-top: 12px;
  }
}

@media screen and (max-width: 768px) {
  .l-header .menu.m-old .menu-list > li > a {
    font-size: 1.6rem;
  }
}

/* ここまでがCSR配下のサステナ以外のヘッダーグロナビ修正部分ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
