@charset "UTF-8";
/*
Getup.css is released under the Open Source MIT license.
http://www.opensource.org/licenses/mit-license.php

Getup.css is inspired by OOCSS, inuit.css, Twitter Bootstrap, HTML5 Boilerplate, PocketGrid

LICENSE
https://github.com/nibushibu/getup-css/blob/master/LICENSE
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
.color__message {
  --category-color: #5f9939;
}

.color__story {
  --category-color: #4dab6e;
}

.color__business {
  --category-color: #849d30;
}

.color__governance {
  --category-color: #4aa6b6;
}

.color__other {
  --category-color: #788D91;
}

.color__tabacco {
  --category-color: #2f892f;
}

.color__medicine {
  --category-color: #86b81c;
}

.color__food {
  --category-color: #00a9b1;
}

.color__finance {
  --category-color: #869a91;
}

.color__pharmaceutical {
  --category-color: #229eda;
}

#reportContent__content * {
  font-family: "Noto Sans JP", sans-serif;
}

#reportContent__content * {
  font-family: "Noto Sans JP", sans-serif;
}

#jtweb-wrapper-content * {
  font-family: "Geologica", sans-serif;
}

/* 横スクロールバー非表示 */
html {
  font-size: 62.5%; /* font-sizeは16pxの62.5%の10px */
  line-height: 1.6;
  width: 100%;
  height: 100%;
  scroll-padding-top: 120px;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 55%;
  }
}

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

p {
  color: #444;
  font-weight: 300;
  font-size: clamp(16px, 1rem, 18px);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  p {
    font-size: clamp(13px, 0.812rem, 14px);
  }
}

ul li, ol li {
  color: #444;
  font-weight: 400;
  font-size: clamp(16px, 1rem, 18px);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  ul li, ol li {
    font-size: clamp(13px, 0.812rem, 14px);
  }
}

a {
  font-size: clamp(16px, 1rem, 18px);
}
@media screen and (max-width: 767px) {
  a {
    font-size: clamp(13px, 0.812rem, 14px);
  }
}
a:link, a:visited {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  text-decoration: underline;
}
a:hover {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  color: #05A173;
  -webkit-text-decoration-color: #05A173;
          text-decoration-color: #05A173;
}

sup {
  margin: 0 0.1em;
  font-size: small;
  vertical-align: super;
}
@media screen and (max-width: 767px) {
  sup {
    vertical-align: super;
    position: relative;
    top: -2px;
    font-size: 9px;
  }
}

sub {
  margin: 0 0.1em;
  font-size: small;
  vertical-align: bottom;
}

/*モーダルを開くボタン*/
.modal-open {
  cursor: pointer;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 100;
}
.modal-container + .modal-open {
  margin-top: 15px;
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 800px;
  width: 90%;
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #111;
  cursor: pointer;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
  padding: 10px;
  border-radius: 10px;
  z-index: 100;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* common */
.imgWrap {
  overflow: hidden;
  /*拡大時にはみ出た部分を隠す*/
  background: #000;
}

.imgWrap > img {
  display: block;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  /*変化に掛かる時間*/
}

.imgWrap > img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  /*画像の拡大率*/
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  /*変化に掛かる時間*/
  opacity: 0.6;
  /* 小さくするほど暗くなります */
  cursor: pointer;
}

/* スクロールイベントでのFadeUpアニメーション用 */
.fadeUp {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .l-wrapper_content-outer.contents__toppage {
    padding-top: 0;
  }
}

.l-header a:not([href^="#"]):hover,
.l-footer a:not([href^="#"]):hover,
.l-breadcrumb a:not([href^="#"]):hover,
.new-responsive-template a:not([href^="#"]):hover {
  opacity: 1 !important;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.new-responsive-template #jtweb-wrapper-content {
  overflow-x: hidden;
}

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

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

.margin_top__minimum {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .margin_top__minimum {
    margin-top: 8px;
  }
}
.margin_top__small {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .margin_top__small {
    margin-top: 15px;
  }
}
.margin_top__middle {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .margin_top__middle {
    margin-top: 30px;
  }
}
.margin_top__big {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .margin_top__big {
    margin-top: 50px;
  }
}

/* グラデーションで隠して「もっと見る」 */
.more {
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.more__content {
  position: relative;
  height: auto;
  max-height: 250px;
  overflow: hidden;
  -webkit-transition: max-height 1s;
  transition: max-height 1s;
}
.more__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: 1s;
  transition: 1s;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#ffffff));
  background: -webkit-linear-gradient(top, transparent 0%, #ffffff 100%);
  background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
}
.more__content.open:after {
  z-index: -1;
  opacity: 0;
}
.more__btn {
  width: 200px;
  display: block;
  margin: 0 auto;
  padding: 20px 0 0;
  color: #684130;
  background: transparent;
  cursor: pointer;
  font-family: "Geologica", sans-serif;
  text-align: center;
  border: 0;
}
.more__btn span {
  margin-left: 0.8em;
}
.more__btn .acc__open {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #684130;
  border-right: 1px solid #684130;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
  top: -0.2em;
}
.more__btn .acc__close {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #684130;
  border-left: 1px solid #684130;
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
  position: relative;
  top: 0.2em;
}

a:not([href^="#"]):hover {
  opacity: 1;
}
a.link__disabled {
  pointer-events: none;
}
a.link__disabled span {
  opacity: 0.15;
  font: inherit;
  margin-right: 3px;
}
a.link__disabled img {
  opacity: 0.15;
}
a.grad_btn {
  display: block;
  width: 1000%;
  max-width: 360px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1em;
  height: 60px;
  background: #fff;
  border: 2px solid #05a173;
  text-decoration: none;
  font-weight: 500;
  border-radius: 30px;
  margin-inline: auto;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  a.grad_btn {
    height: 50px;
    width: 90%;
  }
}
a.grad_btn .grad_btn__inner {
  position: relative;
  z-index: 2;
}
a.grad_btn .grad_btn__arrow {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  z-index: 2;
}
a.grad_btn .grad_btn__arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}
a.grad_btn .grad_btn__arrow svg .circle,
a.grad_btn .grad_btn__arrow svg .path {
  -webkit-transition: fill 0.25s ease-out;
  transition: fill 0.25s ease-out;
}
a.grad_btn::after {
  content: "";
  background: -webkit-gradient(linear, right top, left top, from(#00ae68), color-stop(48.02%, #3faea5), color-stop(79.21%, #3aa4b0), to(#349aba));
  background: -webkit-linear-gradient(right, #00ae68 0%, #3faea5 48.02%, #3aa4b0 79.21%, #349aba 100%);
  background: linear-gradient(270deg, #00ae68 0%, #3faea5 48.02%, #3aa4b0 79.21%, #349aba 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
a.grad_btn:not([href^="#"]):hover {
  opacity: 1;
}
a.grad_btn:hover {
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  color: #fff;
}
a.grad_btn:hover::after {
  opacity: 1;
}
a.grad_btn:hover .grad_btn__arrow svg .circle {
  fill: #fff;
}
a.grad_btn:hover .grad_btn__arrow svg .path {
  fill: #06a173;
}
a.target_blank {
  margin-right: 0.2em;
}
a.target_blank::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1.5rem;
  background-image: url("/investors/results/integrated_report/report/2025/cat_assets/img/ic-blank.svg");
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 0.3em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  top: 0.05em;
}
a.link_pdf {
  margin-right: 0.3em;
}
a.link_pdf::after {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 2.4rem;
  background-image: url("/investors/results/integrated_report/report/2025/cat_assets/img/ic-pdf.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 0.2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  top: 0.6em;
  margin-top: -10px;
}
a.link_site {
  color: transparent;
}
a.border__pink {
  -webkit-text-decoration-color: #ff0073 !important;
          text-decoration-color: #ff0073 !important;
}
a.font__bold {
  font-weight: 700;
}

p {
  color: #444;
}
p.h2__sub {
  text-align: center;
  color: #dd131c;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  p.h2__sub {
    font-size: 1.3rem;
  }
}
p.h2__sub + dl, p.h2__sub + p, p.h2__sub + div, p.h2__sub + table, p.h2__sub + ul, p.h2__sub + iframe, p.h2__sub + h3 {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  p.h2__sub + dl, p.h2__sub + p, p.h2__sub + div, p.h2__sub + table, p.h2__sub + ul, p.h2__sub + iframe, p.h2__sub + h3 {
    margin-top: 10px;
  }
}
p.expnote {
  font-size: small;
}
p.expnote + ul {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  p.expnote + ul {
    margin-top: 10px;
  }
}
p.ph__caption {
  margin-top: 15px;
  font-size: clamp(12px, 0.16vw + 12px, 14px);
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 767px) {
  p.ph__caption {
    margin-top: 8px;
  }
}
p + .img__area, p + .common__imgblock {
  margin-top: 6rem;
}
p + h3 {
  margin-top: 60px !important;
}
@media screen and (max-width: 767px) {
  p + h3 {
    margin-top: 30px !important;
  }
}
p.effort__duediligence {
  font-size: 13px;
}
p.effort__duediligence span {
  color: #a0b1aa;
  margin-right: 0.3em;
}
p.p__link {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  p.p__link {
    margin-top: 20px;
  }
}
p.p__link a {
  font-family: "Geologica", sans-serif;
  font-weight: 500;
}
p.p__link a > .arr__right {
  width: 20px;
  height: auto;
  vertical-align: top;
}
p.p__link a i {
  margin-left: 0.2em;
}
p.p__link a:link, p.p__link a:visited {
  color: #414cb9;
  border-bottom: 2px solid #414cb9;
}
p.p__link a:link i, p.p__link a:visited i {
  color: #414cb9;
}
p.p__link a:hover {
  color: #8a91d6;
  border-bottom: 2px solid #8a91d6;
}
p.p__link a:hover i {
  color: #8a91d6;
}
p.p__link--buy {
  margin-top: 30px;
}
p.p__link--buy a {
  display: block;
  text-align: center;
  padding: 5px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px;
  font-family: "Geologica", sans-serif;
  width: 60%;
}
@media screen and (max-width: 767px) {
  p.p__link--buy a {
    width: 100%;
  }
}
p.p__link--buy a i {
  color: #fff;
  margin: 0 0.3em;
  font-size: 1.15em;
}
p.p__link--buy a:link, p.p__link--buy a:visited {
  color: #fff;
  background: #414cb9;
}
p.p__link--buy a:hover {
  color: #fff;
  background: #8a91d6;
}
p.p__link--map {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  p.p__link--map {
    display: none;
  }
}
p.p__link--map a {
  display: block;
  text-align: center;
  padding: 5px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #414cb9;
  font-family: "Geologica", sans-serif;
  width: 60%;
  margin-inline: auto;
}
p.p__link--map a i {
  margin: 0 0.3em;
  font-size: 1.15em;
}
p.p__link--map a:link, p.p__link--map a:visited {
  color: #414cb9;
}
p.p__link--map a:hover {
  color: #8a91d6;
}
p.p__link--map a:hover i {
  color: #8a91d6;
}
p.p__link--reserve {
  margin-top: 30px;
}
p.p__link--reserve a {
  display: block;
  text-align: center;
  padding: 8px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 30px;
  font-family: "Geologica", sans-serif;
  width: 70%;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 1px;
  margin-inline: auto;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  p.p__link--reserve a {
    width: 100%;
    font-size: 18px;
    padding: 9px 20px;
  }
}
p.p__link--reserve a .btn__icon {
  width: 40px;
  height: auto;
  vertical-align: top;
  position: relative;
  margin-bottom: -40px;
  top: -0.2em;
  margin-right: 0.2em;
}
@media screen and (max-width: 767px) {
  p.p__link--reserve a .btn__icon {
    width: 35px;
    top: -0.23em;
  }
}
p.p__link--reserve a i {
  color: #fff;
  margin: 0 0.3em;
  font-size: 1.15em;
  position: relative;
  top: 1px;
}
p.p__link--reserve a:link, p.p__link--reserve a:visited {
  color: #fff;
  background: #414cb9;
}
p.p__link--reserve a:hover {
  color: #fff;
  background: #8a91d6;
}
p.p__link--tel {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  p.p__link--tel {
    margin-top: 15px;
  }
}
p.p__link--tel a {
  text-align: center;
  padding: 8px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Geologica", sans-serif;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 300;
  letter-spacing: 1px;
  margin-inline: auto;
  border-bottom: 1px solid #414cb9;
}
@media screen and (max-width: 767px) {
  p.p__link--tel a {
    border: 1px solid #414cb9;
    padding: 8px 20px;
    border-radius: 30px;
    width: 100%;
    display: block;
    font-size: 18px;
  }
}
p.p__link--tel a .sp {
  display: inline;
  color: inherit;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
}
p.p__link--tel a .tel__number {
  font-family: inherit;
  color: inherit;
  font-weight: inherit;
}
@media screen and (max-width: 767px) {
  p.p__link--tel a .tel__number {
    display: none;
  }
}
p.p__link--tel a .ja-txt {
  font-size: 19px;
  color: inherit;
}
p.p__link--tel a .btn__icon {
  width: 40px;
  height: auto;
  vertical-align: top;
  position: relative;
  margin-bottom: -40px;
  top: -0.2em;
  margin-right: 0.2em;
}
p.p__link--tel a i {
  color: #414cb9;
  margin: 0 0.3em;
  font-size: 1.15em;
  position: relative;
  top: 1px;
}
p.p__link--tel a:link, p.p__link--tel a:visited {
  color: #414cb9;
}
p.p__link--tel a:hover {
  color: #414cb9;
}
p.p__link--menureserve {
  margin-top: 30px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  p.p__link--menureserve {
    text-align: center;
  }
}
p.p__link--menureserve a {
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 1px;
  border-bottom: 1px solid #414cb9;
}
@media screen and (max-width: 767px) {
  p.p__link--menureserve a {
    border: 1px solid #414cb9;
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px;
    line-height: 2;
  }
}
p.p__link--menureserve a .sp {
  display: inline;
  color: inherit;
  font-family: "Geologica", sans-serif;
  font-weight: 500;
}
p.p__link--menureserve a i {
  color: #414cb9;
  margin: 0 0.3em;
  font-size: 1.15em;
  position: relative;
  top: 1px;
}
p.p__link--menureserve a:link, p.p__link--menureserve a:visited {
  color: #414cb9;
}
p.p__link--menureserve a:hover {
  color: #414cb9;
}
p.artwork__title {
  color: #788D91;
  font-weight: 500;
  line-height: 1.4;
  font-size: clamp(16px, 1rem, 18px);
}
p.artwork__title .sub_txt {
  font-size: 90%;
  font-weight: 300;
  color: inherit;
}
p.artwork__title > sup {
  color: #444;
  font-weight: 500;
}
p.artwork__title + .common__imgblock {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  p.artwork__title + .common__imgblock {
    margin-top: 8px;
  }
}
p + .list__link, p + .ul__basic {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  p + .list__link, p + .ul__basic {
    margin-top: 10px;
  }
}
p + ol, p + .dl__expnote, p + .list__disc_color {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  p + ol, p + .dl__expnote, p + .list__disc_color {
    margin-top: 10px;
  }
}
p + .common__accordion:has(> h3) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  p + .common__accordion:has(> h3) {
    margin-top: 30px;
  }
}
p.w30 {
  width: 30%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  p.w30 {
    width: 100%;
  }
  p.w30 img {
    width: 100%;
  }
}
p.w50 {
  width: 50%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  p.w50 {
    width: 100%;
  }
}
p.w60 {
  width: 60%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  p.w60 {
    width: 100%;
  }
}
p.w80 {
  width: 80%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  p.w80 {
    width: 100%;
  }
}
p > span.talk__name_iwai {
  padding: 0 1em;
  margin-right: 1em;
  background-color: #009b96;
  color: #fff;
}
p > span.talk__name_terabatake {
  padding: 0 1em;
  margin-right: 1em;
  background-color: #6eb900;
  color: #fff;
}
p > span.talk__name_tanimoto {
  padding: 0 1em;
  margin-right: 1em;
  background-color: #00621f;
  color: #fff;
}
p > span.talk__name_shoji {
  padding: 0 1em;
  margin-right: 1em;
  background-color: #1da0a4;
  color: #fff;
}
p > span.talk__name_yamashina {
  padding: 0 1em;
  margin-right: 1em;
  background-color: #f5a200;
  color: #fff;
}
p > span.talk__name_nagashima {
  padding: 0 1em;
  margin-right: 1em;
  background-color: #6fba2c;
  color: #fff;
}
p > span.talk__name_yamada {
  padding: 0 1em;
  margin-right: 1em;
  background-color: #729121;
  color: #fff;
}
p > span.talk__name_muratani {
  padding: 0 1em;
  margin-right: 1em;
  background-color: #009b96;
  color: #fff;
}
p.talk__tanimoto {
  color: #00621f;
  font-weight: 500;
}
p.capital__art_sub {
  text-align: right;
  font-size: small;
  margin-top: 0;
}
p.capital__art_sub + .hr--solid {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  p.capital__art_sub + .hr--solid {
    margin-top: 30px;
  }
}

hr.hr--1000px {
  border-top: 1px solid #596e72;
  margin-inline: auto;
  margin-top: 100px;
  margin-bottom: 100px;
  width: 90%;
  max-width: 1000px;
  visibility: inherit;
}
@media screen and (max-width: 767px) {
  hr.hr--1000px {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
hr.hr--dashed {
  border-top: 1px dashed #596e72;
  margin-inline: auto;
  margin-top: 100px;
  margin-bottom: 100px;
  width: 90%;
  max-width: 1000px;
  visibility: inherit;
}
@media screen and (max-width: 767px) {
  hr.hr--dashed {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
hr.hr--solid {
  border-top: 1px solid #7b8f86;
  visibility: inherit;
}

span.txt__dummy {
  color: #ff006a;
  font-weight: 900;
}
span.material-icons {
  color: #999;
  line-height: 1;
  vertical-align: text-top;
  margin-right: 3px;
}
span.exp__star {
  font-size: initial;
}

div.contents__read {
  max-width: 1258px;
  margin-inline: auto;
}
div.contents__read.w95per {
  width: 95%;
}
div.contents__read .read__color {
  color: var(--category-color);
  font-weight: 300;
}
div.contents__read .dialogue__read {
  color: #00621f;
  font-weight: 500;
}
div.contents__read p {
  font-weight: 300;
}
div.contents__read + div {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  div.contents__read + div {
    margin-top: 30px;
  }
}
div.contents__read + h3, div.contents__read + h4 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.contents__read + h3, div.contents__read + h4 {
    margin-top: 15px;
  }
}
div.contents__clm2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  div.contents__clm2 {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    overflow: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    gap: 25px;
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  div.contents__clm2.sp__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px !important;
  }
}
div.contents__clm2.w80 {
  width: 80%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  div.contents__clm2.w80 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  div.contents__clm2.valuechain__clm {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  div.contents__clm2 > div {
    width: 100%;
  }
}
div.contents__clm2 > div img {
  width: 100%;
  height: auto;
}
div.contents__clm2 > div > .detail_link {
  width: 100%;
}
div.contents__clm2 > div > .detail_link a {
  width: 100%;
}
div.contents__clm2 > div > .detail_link a dl {
  width: 100%;
}
div.contents__clm2 > div > .detail_link a dl .detail_link__txt {
  width: 100%;
}
@media screen and (max-width: 767px) {
  div.contents__clm2 > div.sp__padding_bottom {
    padding-bottom: 1.5rem;
  }
}
div.contents__clm2 > div.position__relative {
  position: relative;
}
div.contents__clm2 > div.vertical__center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
div.contents__clm2 > div.vertical__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
div.contents__clm2 > div.flex1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  div.contents__clm2 > div.flex1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
  }
}
div.contents__clm2 > div.flex2 {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
@media screen and (max-width: 767px) {
  div.contents__clm2 > div.flex2 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
  }
}
div.contents__clm2 > div.flex3 {
  -webkit-box-flex: 3;
  -webkit-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
@media screen and (max-width: 767px) {
  div.contents__clm2 > div.flex3 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
  }
}
div.contents__clm2 > div.flex4 {
  -webkit-box-flex: 4;
  -webkit-flex: 4;
      -ms-flex: 4;
          flex: 4;
}
@media screen and (max-width: 767px) {
  div.contents__clm2 > div.flex4 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
  }
}
div.contents__clm2 > div.flex5 {
  -webkit-box-flex: 5;
  -webkit-flex: 5;
      -ms-flex: 5;
          flex: 5;
}
@media screen and (max-width: 767px) {
  div.contents__clm2 > div.flex5 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  div.contents__clm2 > div.sp_order1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 767px) {
  div.contents__clm2 > div.sp_order2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 767px) {
  div.contents__clm2 > div.sp_order3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}
div.contents__clm2 + p, div.contents__clm2 + div, div.contents__clm2 + section, div.contents__clm2 + table, div.contents__clm2 + ul, div.contents__clm2 + ol, div.contents__clm2 + dl, div.contents__clm2 + h3, div.contents__clm2 + h4 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  div.contents__clm2 + p, div.contents__clm2 + div, div.contents__clm2 + section, div.contents__clm2 + table, div.contents__clm2 + ul, div.contents__clm2 + ol, div.contents__clm2 + dl, div.contents__clm2 + h3, div.contents__clm2 + h4 {
    margin-top: 30px;
  }
}
div.contents__clm2 + .detail_link {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.contents__clm2 + .detail_link {
    margin-top: 15px;
  }
}
div.contents__clm2 + p.margin_top__small {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.contents__clm2 + p.margin_top__small {
    margin-top: 15px;
  }
}
div.contents__clm3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  div.contents__clm3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
div.contents__clm3 .detail_link {
  width: 100%;
}
div.contents__clm3 .detail_link > a {
  width: 100%;
}
div.contents__clm3 .detail_link > a dl {
  width: calc(100% - 16px);
}
@media screen and (max-width: 767px) {
  div.contents__sp_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
div.ph__clm2 {
  text-align: center;
  margin-inline: auto;
}
div.ph__clm2 + p, div.ph__clm2 + div, div.ph__clm2 + section, div.ph__clm2 + table, div.ph__clm2 + ul, div.ph__clm2 + ol, div.ph__clm2 + dl, div.ph__clm2 + h3, div.ph__clm2 + h4 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  div.ph__clm2 + p, div.ph__clm2 + div, div.ph__clm2 + section, div.ph__clm2 + table, div.ph__clm2 + ul, div.ph__clm2 + ol, div.ph__clm2 + dl, div.ph__clm2 + h3, div.ph__clm2 + h4 {
    margin-top: 30px;
  }
}
div.ph__clm2 > img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  div.ph__clm2 > img {
    width: 100%;
  }
}
div.ph__clm2 > picture {
  width: 100%;
  height: auto;
}
div.ph__clm2 > picture img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  div.ph__clm2 > picture {
    width: 100%;
  }
}
div.ph__clm2 .ph__clm2 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  div.ph__clm2 .ph__clm2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
div.ph__clm2 .ph__clm2 dd img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
}
div.ph__clm2 .ph__clm2 + p {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  div.ph__clm2 .ph__clm2 + p {
    margin-top: 10px;
  }
}
div.ph__clm2 .ph__clm3 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  div.ph__clm2 .ph__clm3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  div.ph__clm2 .ph__clm3.w80 {
    width: 80%;
    margin-inline: auto;
  }
}
div.ph__clm2 .ph__clm3 dd img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
}
div.ph__clm2 .ph__clm3 dd img + p {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  div.ph__clm2 .ph__clm3 dd img + p {
    margin-top: 5px;
  }
}
div.ph__clm2 .ph__clm3 + p {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  div.ph__clm2 .ph__clm3 + p {
    margin-top: 10px;
  }
}
div.ph__clm2.w50 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  div.ph__clm2.w50 {
    width: 100%;
  }
}
div.ph__clm2.w60 {
  width: 60%;
}
@media screen and (max-width: 767px) {
  div.ph__clm2.w60 {
    width: 100%;
  }
}
div.ph__clm2.w70 {
  width: 70%;
}
@media screen and (max-width: 767px) {
  div.ph__clm2.w70 {
    width: 100%;
  }
}
div.ph__clm2.w80 {
  width: 80%;
}
@media screen and (max-width: 767px) {
  div.ph__clm2.w80 {
    width: 100%;
  }
}
div.photo__profile {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.photo__profile {
    margin-top: 8px;
  }
}
div.photo__profile .profile__name {
  font-weight: 500;
}
div.photo__profile .profile__name + .profile__copy {
  margin-top: 5px !important;
}
div.photo__profile .profile__copy {
  font-size: 14px;
}
div.btn__basic {
  text-align: center;
}
div.btn__basic a {
  font-size: 2.2rem;
  text-align: center;
  width: 60%;
  max-width: 600px;
  height: 8rem;
  display: grid;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  margin-inline: auto;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  div.btn__basic a {
    width: 90%;
    font-size: 1.5rem;
    height: 6rem;
  }
}
div.btn__basic a:after {
  content: "";
  background-image: url("../images/btn-arr-black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 15px;
  top: 30px;
}
@media screen and (max-width: 767px) {
  div.btn__basic a:after {
    width: 20px;
    height: 20px;
    top: 20px;
    right: 1rem;
  }
}
div.btn__basic a:link, div.btn__basic a:visited {
  background: #fff;
  color: #444;
}
div.btn__basic a:hover {
  background: #ffc800;
}
div.btn__basic.btn__red a:link, div.btn__basic.btn__red a:visited {
  background: #c00;
  color: #fff;
}
div.btn__basic.btn__red a:hover {
  background: #ffc800;
  color: #444;
}
div.btn__basic.btn__red a:after {
  background-image: url("../images/btn-arr-white.svg");
}
div.img__circle {
  overflow: hidden;
  border-radius: 50%;
}
div.linkBtn {
  text-align: center;
}
div.linkBtn + .linkBtn {
  margin-top: 20px;
}
div.linkBtn a {
  display: block;
  width: 60%;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  font-size: 2rem;
  padding: 25px 0;
  letter-spacing: 5px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  div.linkBtn a {
    width: 100%;
    font-size: 1.8rem;
    letter-spacing: 0;
    background-size: 15px 15px;
    background-position: 98% center;
    padding: 15px 0;
  }
}
div.linkBtn a:link, div.linkBtn a:visited {
  background-color: #8cc63f;
  color: #fff;
  text-align: center;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-box-shadow: 0 3px 0 #638e2a;
          box-shadow: 0 3px 0 #638e2a;
}
div.linkBtn a:hover {
  color: #111;
  background-color: #ffe100;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-box-shadow: 0 3px 0 #b39e00;
          box-shadow: 0 3px 0 #b39e00;
}
div.float__inner .img__area {
  float: right;
  width: 35%;
  margin-left: 3rem;
  margin-bottom: 5rem;
}
div.float__inner .img__area img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  div.float__inner .img__area {
    float: none;
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-bottom: 0;
  }
  div.float__inner .img__area img {
    width: 60%;
  }
  div.float__inner .img__area + p {
    margin-top: 15px;
  }
}
div.grad__border {
  position: relative;
  z-index: 1;
  border-radius: 40px; /* ← 任意の角丸指定 */
}
div.grad__border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px; /* 擬似ボーダーの厚み */
  background: -webkit-gradient(linear, left top, right top, from(#29f19c), to(#02a1f9));
  background: -webkit-linear-gradient(left, #29f19c 0%, #02a1f9 100%);
  background: linear-gradient(to right, #29f19c 0%, #02a1f9 100%);
  border-radius: 41px; /* ← 本体と同じ数値を指定 */
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
          mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
div.block__indent {
  margin-left: 3.5em;
}
@media screen and (max-width: 767px) {
  div.block__indent {
    margin-left: 0;
  }
}
div.txt__paragraph p + p {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  div.txt__paragraph p + p {
    margin-top: 10px;
  }
}
div.category__kakomi {
  margin-top: 30px;
  padding: 2rem 2rem;
}
@media screen and (max-width: 767px) {
  div.category__kakomi {
    margin-top: 15px;
  }
}
div.category__kakomi > h5 {
  color: var(--category-color);
  font-size: clamp(21px, 0.72vw + 21px, 30px);
  line-height: 1.4;
  text-align: left;
}
div.category__kakomi > h5.control_sys__h5 {
  font-size: clamp(14px, 0.4vw + 14px, 18px);
}
div.category__kakomi > h5.control_sys__h5 + p {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.category__kakomi > h5.control_sys__h5 + p {
    margin-top: 8px;
  }
}
div.category__kakomi > h5 + p {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.category__kakomi > h5 + p {
    margin-top: 15px;
  }
}
div.category__kakomi.bg__governance {
  background-color: #eef6f8;
}
div.category__kakomi.kakomi__border {
  border: 1px solid var(--category-color);
}
div.skillmatrix__outer {
  width: 100%;
  overflow-x: scroll;
}
@media screen and (max-width: 1100px) {
  div.skillmatrix__outer {
    border: 1px solid #ccc;
  }
}
@media screen and (max-width: 767px) {
  div.skillmatrix__outer {
    border: 1px solid #ccc;
  }
}
div.kakomi__yellow {
  border: 1px solid #05A173;
  background-color: #fffdd7;
  padding: 2rem 2rem;
  font-size: clamp(18px, 0.32vw + 18px, 22px);
  line-height: 1.4;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.kakomi__yellow {
    margin-top: 15px;
  }
}
div.kakomi__yellow h5 {
  text-align: left;
  color: #05A173;
  font-weight: 300;
}
div.kakomi__yellow h5.txt__black {
  color: #444;
  font-weight: 500;
}
div.kakomi__yellow h5 + * {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.kakomi__yellow h5 + * {
    margin-top: 8px;
  }
}
div.kakomi__yellow.border__gray {
  border: 1px solid #788D91;
}
div.kakomi__blue {
  border: 2px solid #05A173;
  background-color: #edf5f5;
  padding: 2rem 2rem;
  font-size: clamp(18px, 0.32vw + 18px, 22px);
  line-height: 1.4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.kakomi__blue {
    margin-top: 15px;
  }
}
div.kakomi__blue.cso__sustainability {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  div.kakomi__blue.cso__sustainability {
    width: 100%;
  }
}
div.kakomi__blue.cso__sustainability img {
  width: 400px;
}
@media screen and (max-width: 767px) {
  div.kakomi__blue.cso__sustainability img {
    width: 100%;
  }
}
div.kakomi__blue > h5 {
  color: #444;
  text-align: left;
  font-weight: 500;
}
div.kakomi__blue > h5.txt__center {
  text-align: center;
}
div.kakomi__blue img {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.kakomi__blue img {
    margin-top: 15px;
  }
}
div.kakomi__blue + * {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.kakomi__blue + * {
    margin-top: 15px;
  }
}
div.kakomi__domaintop {
  background-color: #edf5f5;
  padding: 3rem;
  margin-inline: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
div.kakomi__domaintop p {
  font-size: 15px;
}
div.kakomi__domaintop p + p {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.kakomi__domaintop p + p {
    margin-top: 8px;
  }
}
div.kakomi__domaintop + .common__accordion {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  div.kakomi__domaintop + .common__accordion {
    margin-top: 50px;
  }
}
div.common__imgblock {
  width: 100%;
  display: block;
}
div.common__imgblock.caption__over {
  position: relative;
}
div.common__imgblock.border__gray {
  border: 1px solid #788D91;
}
@media screen and (max-width: 767px) {
  div.common__imgblock.pc {
    display: none;
  }
}
div.common__imgblock.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  div.common__imgblock.sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  div.common__imgblock.sp__w60 {
    width: 60% !important;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  div.common__imgblock.sp__w80 {
    width: 80% !important;
    margin-inline: auto;
  }
}
div.common__imgblock.sp + .ph__caption {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.common__imgblock.sp + .ph__caption {
    margin-top: 8px;
  }
}
div.common__imgblock > img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
}
div.common__imgblock > img.no_radius {
  border-radius: 0;
}
div.common__imgblock > img.border__gray {
  border: 1px solid #ccc;
}
div.common__imgblock > picture img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
}
div.common__imgblock > picture img.no_radius {
  border-radius: 0;
}
div.common__imgblock > h4 {
  color: #788D91;
}
div.common__imgblock > h4 + table, div.common__imgblock > h4 + img {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  div.common__imgblock > h4 + table, div.common__imgblock > h4 + img {
    margin-top: 10px;
  }
}
div.common__imgblock p.table__unit {
  text-align: right;
  font-size: small;
  display: block;
}
@media screen and (max-width: 767px) {
  div.common__imgblock p.table__unit {
    text-align: left;
    display: inline;
  }
}
div.common__imgblock p.table__unit + table {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  div.common__imgblock p.table__unit + table {
    margin-top: 5px;
  }
}
div.common__imgblock p.over_caption {
  position: absolute;
  right: 1rem;
  bottom: 0.7rem;
}
div.common__imgblock p.over_caption.dlab_takeda {
  font-family: "Geologica", sans-serif;
  font-size: 12px;
  color: #fff;
}
div.common__imgblock__width60 {
  width: 60%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  div.common__imgblock__width60 {
    width: 100%;
  }
  div.common__imgblock__width60 img {
    width: 100%;
  }
}
div.common__imgblock.w30 {
  width: 30%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  div.common__imgblock.w30 {
    width: 100%;
  }
  div.common__imgblock.w30 img {
    width: 100%;
  }
}
div.common__imgblock.w50 {
  width: 50%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  div.common__imgblock.w50 {
    width: 100%;
  }
  div.common__imgblock.w50 img {
    width: 100%;
  }
}
div.common__imgblock.w60 {
  width: 60%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  div.common__imgblock.w60 {
    width: 100%;
  }
  div.common__imgblock.w60 img {
    width: 100%;
  }
}
div.common__imgblock.w80 {
  width: 80%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  div.common__imgblock.w80 {
    width: 100%;
  }
  div.common__imgblock.w80 img {
    width: 100%;
  }
}
div.common__imgblock.margin__small {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.common__imgblock.margin__small {
    margin-top: 15px;
  }
}
div.common__imgblock.margin__middle {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  div.common__imgblock.margin__middle {
    margin-top: 30px;
  }
}
div.common__imgblock.margin__big {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  div.common__imgblock.margin__big {
    margin-top: 50px;
  }
}
div.common__imgblock.position__right {
  margin-left: auto;
  margin-right: 0;
}
div.common__imgblock.position__left {
  margin-left: 0;
  margin-right: auto;
}
div.common__imgblock > .ph__clm2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 70%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  div.common__imgblock > .ph__clm2 {
    width: 100%;
    gap: 20px;
    grid-template-columns: 1fr;
  }
}
div.common__imgblock > .ph__clm2 > dd img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
}
@media screen and (max-width: 1100px) {
  div.common__imgblock.sp__scroll.wide__scroll {
    display: inherit;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 1px solid #ddd;
    overflow-x: scroll;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) {
  div.common__imgblock.sp__scroll {
    display: inherit;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 1px solid #ddd;
    overflow-x: scroll;
    padding: 15px;
  }
  div.common__imgblock.sp__scroll.sp__nopadding {
    padding: 0;
  }
  div.common__imgblock.sp__scroll img {
    width: auto;
    height: 100%;
    max-height: 550px;
    border-radius: 0;
  }
  div.common__imgblock.sp__scroll img.width500 {
    width: 500px;
    max-width: 1200px;
  }
  div.common__imgblock.sp__scroll img.width600 {
    width: 600px;
    max-width: 1200px;
  }
  div.common__imgblock.sp__scroll img.width700 {
    width: 700px;
    max-width: 1200px;
  }
  div.common__imgblock.sp__scroll picture {
    width: auto;
    height: 100%;
    max-height: 550px;
    border-radius: 0;
  }
  div.common__imgblock.sp__scroll picture.width500 {
    width: 500px;
  }
  div.common__imgblock.sp__scroll:has(> .business__foodtbl) {
    height: auto;
  }
}
div.common__imgblock + .common__linkpage {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.common__imgblock + .common__linkpage {
    margin-top: 15px;
  }
}
div.common__imgblock + h3, div.common__imgblock + h4, div.common__imgblock + h5, div.common__imgblock + .common__imgblock, div.common__imgblock + p, div.common__imgblock + .message__session {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  div.common__imgblock + h3, div.common__imgblock + h4, div.common__imgblock + h5, div.common__imgblock + .common__imgblock, div.common__imgblock + p, div.common__imgblock + .message__session {
    margin-top: 20px;
  }
}
div.common__imgblock + p.ph__caption {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.common__imgblock + p.ph__caption {
    margin-top: 8px;
  }
}
div.common__imgblock + .list__link, div.common__imgblock + .dl__expnote {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  div.common__imgblock + .list__link, div.common__imgblock + .dl__expnote {
    margin-top: 10px;
  }
}
div.detail_link {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.detail_link {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  div.detail_link {
    width: 85%;
    margin-inline: auto;
  }
  div.detail_link.width100 {
    width: 100%;
  }
}
div.detail_link.no_bg a dl {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
}
div.detail_link.no_bg a dl .border__pink {
  text-decoration: underline;
  -webkit-text-decoration-color: #ff0073 !important;
          text-decoration-color: #ff0073 !important;
}
div.detail_link.no_bg a:hover dl {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
}
div.detail_link a {
  text-decoration: none;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  div.detail_link a {
    width: 100%;
  }
}
div.detail_link a:hover dl {
  border: 5px solid #ffeb68;
  background-color: #ffeb68;
  -webkit-box-shadow: 0 3px 0 rgb(192, 165, 60), 0 1px 10px rgba(255, 153, 0, 0.4);
          box-shadow: 0 3px 0 rgb(192, 165, 60), 0 1px 10px rgba(255, 153, 0, 0.4);
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
div.detail_link a dl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 5px solid #fff;
  border-radius: 8px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 0 #ccc, 0 1px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 0 #ccc, 0 1px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
@media screen and (max-width: 767px) {
  div.detail_link a dl {
    width: calc(100% - 16px);
  }
}
div.detail_link a dl dd.detail_link__icon {
  background-color: #c00;
  border-radius: 5px;
  padding: 0 1rem;
  display: grid;
  place-items: center;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  div.detail_link a dl dd.detail_link__icon {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
div.detail_link a dl dd.detail_link__icon p {
  text-align: center;
  color: #fff;
  font-size: clamp(11px, 0.16vw + 11px, 12px);
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}
div.detail_link a dl dd.detail_link__icon .click_ill {
  position: absolute;
  width: 70px;
  bottom: -18px;
  left: 0.5rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  div.detail_link a dl dd.detail_link__icon .click_ill {
    width: 70px;
    left: 1rem;
  }
}
div.detail_link a dl dd.detail_link__icon .click_ill img {
  width: 100%;
  height: auto;
}
div.detail_link a dl dd.detail_link__txt {
  padding: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  div.detail_link a dl dd.detail_link__txt {
    padding: 1.5rem 1rem;
    -webkit-box-flex: 5;
    -webkit-flex: 5;
        -ms-flex: 5;
            flex: 5;
  }
}
div.detail_link a dl dd.detail_link__txt.small__txt p {
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  div.detail_link a dl dd.detail_link__txt.small__txt p {
    font-size: 12px;
  }
}
div.detail_link a dl dd.detail_link__txt p {
  white-space: nowrap;
  font-size: clamp(12px, 0.32vw + 12px, 15px);
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  div.detail_link a dl dd.detail_link__txt p {
    font-size: 14px;
    text-align: center;
  }
}
div.detail_link + h4 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  div.detail_link + h4 {
    margin-top: 30px;
  }
}
div.detail_link.effort__mapon {
  position: absolute;
  bottom: 30px;
}
div.person__info {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.person__info {
    margin-top: 8px;
  }
}
div.person__info .info_class {
  font-size: clamp(12px, 0.16vw + 12px, 14px);
  line-height: 1.5;
}
div.person__info .info_class + .info_name {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  div.person__info .info_class + .info_name {
    margin-top: 5px;
  }
}
div.person__info .info_name {
  font-size: clamp(17px, 0.24vw + 17px, 20px);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  div.person__info .info_name {
    font-size: 15px;
  }
}
div.kakomi__dlab {
  background-color: #edf3d9;
  padding-bottom: 3rem;
}
div.kakomi__dlab h3 {
  text-align: center;
  background-color: #849d30;
  color: #fff !important;
  font-size: clamp(15px, 0.24vw + 15px, 18px);
  line-height: 1.2;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  div.kakomi__dlab h3 {
    font-size: 17px !important;
  }
}
div.kakomi__dlab h4 {
  color: #05A173 !important;
}
div.kakomi__dlab .body__clm {
  width: calc(100% - 6rem);
  margin-inline: auto;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.kakomi__dlab .body__clm {
    margin-top: 15px;
  }
}
div.kakomi__cso {
  background-color: #e8f4f4;
  padding: 2rem 3rem 3rem;
  margin-top: 30px;
  width: 50%;
  margin-inline: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  div.kakomi__cso {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  div.kakomi__cso {
    width: 100%;
    padding: 1rem 2rem 2rem;
  }
}
div.kakomi__cso > h5 {
  text-align: center;
  font-weight: 500;
  font-size: clamp(15px, 0.24vw + 15px, 18px);
}
div.kakomi__cso > h5 + div {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.kakomi__cso > h5 + div {
    margin-top: 8px;
  }
}
div.kakomi__cso > h5.kakomi__cso__h5 {
  color: #006934;
}
div.kakomi__cso__inner {
  background-color: #fff;
  border: 2px solid #05A173;
  padding: 2.5rem;
}
div.kakomi__cso__inner ul {
  margin-left: 1.5rem;
}
div.kakomi__cso__inner ul > li {
  color: #444;
}
div.kakomi__cso__inner ul > li::before {
  content: "●";
  color: #849d30;
  font-size: x-small;
  margin-right: 0.5em;
  vertical-align: 1px;
}
div.kakomi__cso__inner ul > li + li {
  margin-top: 5px;
}
div.kakomi__cso__inner ul > li > ul > li {
  color: #444;
}
div.kakomi__cso__inner ul > li > ul > li::before {
  content: "■";
  color: #849d30;
  font-size: x-small;
  margin-right: 0.5em;
  vertical-align: 1px;
}
div.kakomi__cso__inner ul > li > ul > li + li {
  margin-top: 0;
}
div.kakomi__corp_gov {
  border: 2px solid #596e72;
  background-color: #edf5f5;
  padding: 3rem;
  font-size: clamp(18px, 0.32vw + 18px, 22px);
  line-height: 1.4;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.kakomi__corp_gov {
    margin-top: 15px;
  }
}
div.kakomi__corp_gov > h4 {
  font-weight: 500;
}
div.kakomi__corp_gov > h5 {
  text-align: left;
  font-weight: 500;
  color: #596e72;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.kakomi__corp_gov > h5 {
    margin-top: 15px;
  }
}
div.kakomi__corp_gov > h5.txt__center {
  text-align: center;
}
div.kakomi__corp_gov img {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.kakomi__corp_gov img {
    margin-top: 15px;
  }
}
div.kakomi__corp_gov dd p {
  display: inherit !important;
}
div.kakomi__capital {
  margin-top: 30px;
  background-color: #edf3d9;
  padding: 3rem;
}
@media screen and (max-width: 767px) {
  div.kakomi__capital {
    margin-top: 15px;
  }
}
div.kakomi__capital > h4 {
  border-bottom: 1px solid #05A173;
  padding-bottom: 2px;
}
div.kakomi__capital .person__info .info_class {
  text-align: right;
}
@media screen and (max-width: 767px) {
  div.kakomi__capital .person__info .info_class {
    text-align: center;
  }
}
div.kakomi__capital .person__info .info_name {
  text-align: right;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  div.kakomi__capital .person__info .info_name {
    text-align: center;
  }
}
div.kakomi__shionogi {
  margin-top: 30px;
  padding: 3rem;
  border: 1px solid #05A173;
}
@media screen and (max-width: 767px) {
  div.kakomi__shionogi {
    margin-top: 15px;
  }
}
div.kakomi__shionogi p {
  font-size: 1.4rem;
}
div.kakomi__shionogi a {
  font-size: 1.4rem;
}
div.kakomi__shionogi a.link_pdf {
  border-bottom: 0;
}
div.kakomi__shionogi .btn__pharmaceutical a {
  padding: 1.5rem 0 1.5rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  bottom: 5px;
  background-repeat: no-repeat;
  background-position: calc(100% - 1.5rem) center;
  background-color: #fff;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  z-index: 1;
  border-radius: 40px; /* ← 任意の角丸指定 */
  border: 2px solid #05A173;
  position: relative;
  display: block;
}
div.kakomi__shionogi .btn__pharmaceutical a:link, div.kakomi__shionogi .btn__pharmaceutical a:visited {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  text-decoration: none;
}
div.kakomi__shionogi .btn__pharmaceutical a:hover {
  background: -webkit-gradient(linear, left top, right top, from(#29f19c), to(#02a1f9));
  background: -webkit-linear-gradient(left, #29f19c 0%, #02a1f9 100%);
  background: linear-gradient(to right, #29f19c 0%, #02a1f9 100%);
  border: 2px solid #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #fff;
  -webkit-transition: none;
  transition: none;
}
div.kakomi__shionogi .btn__pharmaceutical a:hover p {
  color: #fff;
}
div.kakomi__shionogi .btn__pharmaceutical a:hover p::after {
  color: #fff;
}
div.kakomi__shionogi .btn__pharmaceutical a p {
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
}
div.kakomi__shionogi .btn__pharmaceutical a p::after {
  font-family: "Material Icons";
  content: "\e5c8";
  position: absolute;
  top: 2.5rem;
  right: 10px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  div.kakomi__shionogi .btn__pharmaceutical a p::after {
    top: 1.5rem;
  }
}
div.overview__data {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px 80px;
}
@media screen and (max-width: 767px) {
  div.overview__data {
    gap: 0;
    width: 82%;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }
}
div.overview__data .data__block {
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("/investors/results/integrated_report/report/2025/story/overview/img/overview-bg_bluer.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  div.overview__data .data__block {
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
div.overview__data .data__block__inner {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  div.overview__data .data__block__inner {
    position: static;
    padding-top: 0;
  }
}
div.overview__data .data__block__inner p {
  text-align: center;
}
div.overview__data .data__block__inner p.overview__name {
  font-weight: 500;
  color: #596e72;
  border-bottom: 1px solid #849d30;
  padding-bottom: 15px;
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  div.overview__data .data__block__inner p.overview__name {
    font-size: 20px;
    padding-bottom: 8px;
  }
}
div.overview__data .data__block__inner p.overview__name sup {
  font-weight: 300;
  color: #444;
  font-size: 11px;
}
div.overview__data .data__block__inner p.overview__value {
  margin-top: 15px;
  line-height: 1.2;
  font-weight: 500;
  color: #444;
}
@media screen and (max-width: 767px) {
  div.overview__data .data__block__inner p.overview__value {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  div.overview__data .data__block__inner p.overview__value {
    font-size: 20px;
  }
}
div.overview__data .data__block__inner p.overview__value strong {
  font-size: 2.2em;
  color: #05A173;
  font-weight: 700;
  font-family: "Geologica", sans-serif;
  vertical-align: middle;
  margin: 0 3px;
  position: relative;
  letter-spacing: -1px;
  top: -2px;
}
@media screen and (max-width: 767px) {
  div.overview__data .data__block__inner p.overview__value strong {
    font-size: 35px;
  }
}
div.overview__data .data__block__inner p.overview__expnote {
  font-size: 1.2rem;
}
div.block__history {
  background-image: url("/investors/results/integrated_report/report/2025/story/history/img/history-arr.svg?a");
  background-repeat: no-repeat;
  background-position: calc(7.5% + 10px) bottom;
  background-size: 20px;
  width: 85%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  div.block__history {
    background-position: 3.3rem bottom;
    background-size: 15px;
    width: 100%;
  }
}
div.block__history.history__first {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  div.block__history.history__first {
    padding-bottom: 40px;
  }
}
div.block__history + .block__history {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  div.block__history + .block__history {
    margin-top: 30px;
  }
}
div.block__history > h2 {
  color: #fff;
  font-weight: 500;
  background-color: #758c82;
  font-size: clamp(18px, 0.48vw + 18px, 24px);
  text-align: center;
  line-height: 1.4;
  border-radius: 25px;
  border: 1px solid #fff;
  padding: 4px 1em 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  div.block__history > h2 {
    font-size: 17px;
  }
}
div.block__history__log {
  display: grid;
  grid-template-columns: 90px auto;
  gap: 40px 30px;
  margin-top: 30px;
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  div.block__history__log {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  div.block__history__log {
    grid-template-columns: 70px auto;
    gap: 10px 20px;
    width: 100%;
  }
}
div.block__history__log > .log__year span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #05A173;
  border: 1px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  div.block__history__log > .log__year span {
    width: 70px;
    height: 70px;
  }
}
div.block__history__log > .log__year span p {
  text-align: center;
  font-family: "Geologica", sans-serif;
  color: #fff;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  div.block__history__log > .log__year span p {
    font-size: 16px;
  }
}
div.block__history__log > .log__contents {
  padding-top: 28px;
}
@media screen and (max-width: 767px) {
  div.block__history__log > .log__contents {
    padding-top: 2.5rem;
  }
}
div.block__history__log > .log__contents dl {
  display: grid;
  grid-template-columns: auto 3fr 3fr;
  gap: 30px 20px;
}
@media screen and (max-width: 767px) {
  div.block__history__log > .log__contents dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 2px;
  }
}
div.block__history__log > .log__contents dl dt,
div.block__history__log > .log__contents dl dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  div.block__history__log > .log__contents dl dt {
    width: 100%;
  }
}
div.block__history__log > .log__contents dl dt p {
  line-height: 1.6;
  font-weight: 500;
  font-size: clamp(16px, 0.32vw + 16px, 20px);
  font-family: "Geologica", sans-serif;
}
@media screen and (max-width: 767px) {
  div.block__history__log > .log__contents dl dt p {
    font-size: 15px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  div.block__history__log > .log__contents dl dd {
    width: 100%;
  }
}
div.block__history__log > .log__contents dl dd h3 {
  color: #333;
  font-size: clamp(16px, 0.32vw + 16px, 20px);
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  div.block__history__log > .log__contents dl dd h3 {
    font-size: 15px;
  }
}
div.block__history__log > .log__contents dl dd h3 .txt__black {
  color: #444;
}
div.block__history__log > .log__contents dl dd h3 + p {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.block__history__log > .log__contents dl dd h3 + p {
    margin-top: 8px;
  }
}
div.block__history__log > .log__contents dl dd p {
  line-height: 1.6;
}
div.block__history__log > .log__contents dl dd.span2 {
  grid-column: 2/span 2;
}
@media screen and (max-width: 767px) {
  div.block__history__log > .log__contents dl dd + dt {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  div.block__history__log > .log__contents dl dd + dd {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  div.block__history__log > .log__contents dl dd img.logo__minimum {
    width: 20%;
  }
  div.block__history__log > .log__contents dl dd img.logo__small {
    width: 35%;
  }
  div.block__history__log > .log__contents dl dd img.logo__middle {
    width: 50%;
  }
  div.block__history__log > .log__contents dl dd img.logo__big {
    width: 80%;
  }
  div.block__history__log > .log__contents dl dd .contents__clm2 {
    gap: 5px;
    margin-bottom: 0;
  }
}
div.block__sustainability_link {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  div.block__sustainability_link {
    margin-top: 30px;
  }
}
div.block__talent_my {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 30px;
}
@media screen and (max-width: 767px) {
  div.block__talent_my {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-inline: auto;
  }
}
div.block__talent_my > .talent_my__contents {
  border-radius: 10px;
  background: #1e945f;
  background: -webkit-gradient(linear, left top, right top, from(rgb(30, 148, 95)), to(rgb(109, 214, 28)));
  background: -webkit-linear-gradient(left, rgb(30, 148, 95) 0%, rgb(109, 214, 28) 100%);
  background: linear-gradient(90deg, rgb(30, 148, 95) 0%, rgb(109, 214, 28) 100%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 15px;
}
div.block__talent_my > .talent_my__contents > .my__icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
div.block__talent_my > .talent_my__contents > .my__icon img {
  width: 100%;
  height: auto;
}
div.block__talent_my > .talent_my__contents > .my__txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
div.block__talent_my > .talent_my__contents > .my__txt p {
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  line-height: 1.6;
}
div.block__talent_my + h4 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  div.block__talent_my + h4 {
    margin-top: 30px;
  }
}
div.block__tobacco_rrp {
  width: 90%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  div.block__tobacco_rrp {
    width: 80%;
    grid-template-columns: 1fr;
  }
}
div.block__tobacco_rrp > .rrp__contents {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 15px;
}
div.block__tobacco_rrp > .rrp__contents.span3 {
  grid-column: 1/span 3;
}
@media screen and (max-width: 767px) {
  div.block__tobacco_rrp > .rrp__contents.span3 {
    grid-column: 1;
  }
}
div.block__tobacco_rrp > .rrp__contents > h4 {
  background-color: #568936;
  text-align: center;
  color: #fff;
  line-height: 1.2;
  padding: 0.2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
div.block__tobacco_rrp > .rrp__contents > h4 + div {
  margin-top: 0;
}
div.block__tobacco_rrp > .rrp__contents .rrp__contents__inner.vertical__center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
div.block__tobacco_rrp > .rrp__contents .rrp__contents__inner.border {
  border: 1px solid #444;
}
div.block__tobacco_rrp > .rrp__contents .rrp__contents__inner img {
  width: 100%;
  height: auto;
}
div.block__tobacco_rrp > .rrp__contents .rrp__contents__inner.grid__row {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 7px;
}
div.block__tobacco_rrp > .rrp__contents .rrp__contents__inner.grid__row div {
  border: 1px solid #444;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
div.sustainability__block {
  background-color: #f0f6e1;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3rem;
}
@media screen and (max-width: 767px) {
  div.sustainability__block {
    padding: 2rem;
  }
}
div.sustainability__block > h3 {
  background-color: #5f9939;
  font-size: 24px !important;
  color: #fff !important;
  text-align: center;
  border-radius: 30px;
  line-height: 1.2;
  padding-bottom: 3px;
}
@media screen and (max-width: 767px) {
  div.sustainability__block > h3 {
    font-size: 18px !important;
  }
}
div.sustainability__block > .block__catch {
  text-align: center;
  color: #05A173;
  font-size: clamp(19px, 0.4vw + 19px, 24px);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  div.sustainability__block > .block__catch {
    font-size: 17px;
    line-height: 1.8;
  }
}
div.sustainability__block > .block__read {
  text-align: center;
  font-weight: 500;
  color: #033824;
}
@media screen and (max-width: 767px) {
  div.sustainability__block > .block__read {
    font-size: 15px;
    text-align: left;
    line-height: 1.6;
  }
}
div.sustainability__block > .sustainability__clm {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  div.sustainability__block > .sustainability__clm {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  div.sustainability__block > .sustainability__clm {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
div.sustainability__block > .sustainability__clm .sustainability__clm__child {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  div.sustainability__block > .sustainability__clm .sustainability__clm__child {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 10px;
  }
}
div.sustainability__block > .sustainability__clm .sustainability__clm__child .child__img {
  text-align: center;
}
div.sustainability__block > .sustainability__clm .sustainability__clm__child .child__img img {
  width: 70%;
  height: auto;
}
@media screen and (max-width: 767px) {
  div.sustainability__block > .sustainability__clm .sustainability__clm__child .child__img img {
    width: 40%;
  }
}
div.sustainability__block > .sustainability__clm .sustainability__clm__child .child__title {
  min-height: 55px;
}
div.sustainability__block > .sustainability__clm .sustainability__clm__child .child__title a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  text-align: center;
  font-weight: 500;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #4dab6e;
  -webkit-box-shadow: 0 3px 0 #3d8857;
          box-shadow: 0 3px 0 #3d8857;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
div.sustainability__block > .sustainability__clm .sustainability__clm__child .child__title a:hover {
  background-color: #6ebd8a;
  -webkit-box-shadow: 0 3px 0 #459963;
          box-shadow: 0 3px 0 #459963;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
div.sustainability__block > .sustainability__clm .sustainability__clm__child .child__copy p {
  font-size: 14px;
  line-height: 1.6;
}
div.sustainability__block + .sustainability__block, div.sustainability__block + div {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.sustainability__block + .sustainability__block, div.sustainability__block + div {
    margin-top: 15px;
  }
}
div.domain__officer {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
div.domain__officer .officer__face {
  text-align: center;
}
div.domain__officer .officer__face img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  div.domain__officer .officer__face img {
    width: 70%;
    margin-inline: auto;
  }
}
div.domain__officer .officer__face + .officer__name {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.domain__officer .officer__face + .officer__name {
    margin-top: 8px;
  }
}
div.domain__officer .officer__name .name__name {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}
div.domain__officer .officer__name .name__name + p {
  margin-top: 0;
}
div.domain__officer .officer__name .name__class {
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
}
div.kakomi__tobacco_rrp {
  padding: 3rem;
  background-color: #ebf5f1;
}
div.kakomi__tobacco_rrp h4 {
  border-bottom: 1px solid #849d30;
  padding-bottom: 0.4em;
}
div.kakomi__tobacco_rrp + .kakomi__tobacco_rrp {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.kakomi__tobacco_rrp + .kakomi__tobacco_rrp {
    margin-top: 15px;
  }
}
div.kakomi__processedfood {
  background-color: #f3f5ea;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  div.kakomi__processedfood {
    margin-top: 30px;
  }
}
div.kakomi__processedfood > h4 {
  background-color: var(--category-color);
  color: #fff !important;
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
  font-size: 18px !important;
  padding: 4px 0 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
div.kakomi__processedfood > .kakomi__processedfood__inner {
  padding: 1rem 3rem 3rem;
  display: grid;
  grid-template-rows: auto auto minmax(-webkit-min-content, 1fr) auto;
  grid-template-rows: auto auto minmax(min-content, 1fr) auto;
  grid-row: 2/3;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  div.kakomi__processedfood > .kakomi__processedfood__inner {
    padding: 1rem 2rem 5rem;
  }
}
div.kakomi__processedfood > .kakomi__processedfood__inner > h5 {
  grid-row: 1/2;
  text-align: center;
  color: #00621f;
  font-weight: 500;
  font-size: 20px !important;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  div.kakomi__processedfood > .kakomi__processedfood__inner > h5 {
    font-size: 18px !important;
  }
}
div.kakomi__processedfood > .kakomi__processedfood__inner > .processfood__materiality {
  grid-row: 2/3;
  display: grid;
  grid-template-columns: 130px auto;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px 10px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.kakomi__processedfood > .kakomi__processedfood__inner > .processfood__materiality {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  div.kakomi__processedfood > .kakomi__processedfood__inner > .processfood__materiality {
    grid-template-columns: 1fr;
  }
}
div.kakomi__processedfood > .kakomi__processedfood__inner > .processfood__materiality > dt span {
  background-color: var(--category-color);
  color: #fff;
  border-radius: 5px;
  white-space: nowrap;
  padding: 0.3em 1em;
  line-height: 1.6;
  font-weight: 500;
  font-size: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  div.kakomi__processedfood > .kakomi__processedfood__inner > .processfood__materiality > dt span {
    font-size: 13px;
  }
}
div.kakomi__processedfood > .kakomi__processedfood__inner > .processfood__materiality > dd {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
div.kakomi__processedfood > .kakomi__processedfood__inner > .processfood__materiality > dd p {
  text-align: left;
}
div.kakomi__processedfood > .kakomi__processedfood__inner > .processfood__materiality > dd p .icon {
  display: inline-block;
  width: 36px;
}
div.kakomi__processedfood > .kakomi__processedfood__inner > .processfood__materiality > dd p .icon img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  div.kakomi__processedfood > .kakomi__processedfood__inner > .processfood__materiality > dd p {
    text-align: center;
  }
}
div.kakomi__processedfood > .kakomi__processedfood__inner > .processfood__materiality_copy {
  grid-row: 3/4;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
div.kakomi__processedfood > .kakomi__processedfood__inner > .processfood__materiality_copy p {
  font-size: 1.4rem;
}
div.kakomi__processedfood > .kakomi__processedfood__inner > .processfood__materiality_copy p + p {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.kakomi__processedfood > .kakomi__processedfood__inner > .processfood__materiality_copy p + p {
    margin-top: 8px;
  }
}
div.kakomi__processedfood > .kakomi__processedfood__inner > .processfood__materiality_copy p + .common__imgblock {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.kakomi__processedfood > .kakomi__processedfood__inner > .processfood__materiality_copy p + .common__imgblock {
    margin-top: 15px;
  }
}
div.kakomi__processedfood > .kakomi__processedfood__inner > .detail_link {
  grid-row: 4/5;
  margin-top: 0 !important;
}
div.kakomi__processedfood + .kakomi__processedfood {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.kakomi__processedfood + .kakomi__processedfood {
    margin-top: 15px;
  }
}
div.kakomi__pharmaceutical {
  background-color: #d3ebf3;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  div.kakomi__pharmaceutical {
    margin-top: 30px;
  }
}
div.kakomi__pharmaceutical > h4 {
  background-color: var(--category-color);
  color: #fff !important;
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
  font-size: 18px !important;
  padding: 4px 0 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
div.kakomi__pharmaceutical .kakomi__pharmblaceutical__inner {
  padding: 0 3rem 3rem;
}
@media screen and (max-width: 767px) {
  div.kakomi__pharmaceutical .kakomi__pharmblaceutical__inner {
    padding: 1rem 2rem 5rem;
  }
}
div.kakomi__pharmaceutical .kakomi__pharmblaceutical__inner h5 {
  color: #111;
  text-align: left;
  font-weight: 700;
  font-size: 20px !important;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  div.kakomi__pharmaceutical .kakomi__pharmblaceutical__inner h5 {
    font-size: 18px !important;
  }
}
div.kakomi__pharmaceutical .kakomi__pharmblaceutical__inner h5 + p {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.kakomi__pharmaceutical .kakomi__pharmblaceutical__inner h5 + p {
    margin-top: 8px;
  }
}
div.kakomi__pharmaceutical .kakomi__pharmblaceutical__inner h6 {
  color: #111;
  text-align: left;
  font-weight: 500;
  font-size: 17px !important;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  div.kakomi__pharmaceutical .kakomi__pharmblaceutical__inner h6 {
    font-size: 15px !important;
  }
}
div.kakomi__pharmaceutical .kakomi__pharmblaceutical__inner h6 + p {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.kakomi__pharmaceutical .kakomi__pharmblaceutical__inner h6 + p {
    margin-top: 8px;
  }
}
div.kakomi__pharmaceutical .kakomi__pharmblaceutical__inner p + ul {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.kakomi__pharmaceutical .kakomi__pharmblaceutical__inner p + ul {
    margin-top: 8px;
  }
}
div.bg__domain_bg1 {
  background-image: url("/investors/results/integrated_report/report/2025/business/domain-tobacco/img/domain-bg_art01.svg?a");
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: center;
}
@media screen and (max-width: 767px) {
  div.bg__domain_bg1 {
    background-size: auto 250px;
  }
}
div.bg__domain_bg2 {
  background-image: url("/investors/results/integrated_report/report/2025/business/domain-tobacco/img/domain-bg_art02.svg?a");
  background-repeat: no-repeat;
  background-size: cover;
  background-size: auto 500px;
  background-position: center;
}
@media screen and (max-width: 767px) {
  div.bg__domain_bg2 {
    background-size: auto 250px;
  }
}
div.bg__domain_bg3 {
  background-image: url("/investors/results/integrated_report/report/2025/business/domain-tobacco/img/domain-bg_art03.svg?b");
  background-repeat: no-repeat;
  background-size: cover;
  background-size: auto 500px;
  background-position: center;
}
@media screen and (max-width: 767px) {
  div.bg__domain_bg3 {
    background-size: auto 220px;
  }
}
div.capital__art_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  div.capital__art_sp {
    display: block;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  div.capital__art_sp {
    margin-top: 15px;
  }
}
div.capital__art_sp > .capital__art_circle {
  width: 80%;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
div.capital__art_sp > .capital__art_circle img {
  width: 100%;
}
div.capital__sp_block {
  background-color: #f1f6e9;
  padding: 2rem;
  -webkit-box-shadow: 0 1px 3px rgba(0, 99, 56, 0.45);
          box-shadow: 0 1px 3px rgba(0, 99, 56, 0.45);
  border-radius: 7px;
}
div.capital__sp_block > .capital_spclm {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
div.capital__sp_block > .capital_spclm > .spclm__midashi {
  background-color: #008e64;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
}
div.capital__sp_block > .capital_spclm > .spclm__midashi p {
  color: #fff;
  font-weight: 500;
}
div.capital__sp_block > .capital_spclm > .spclm__contents > h3 {
  font-weight: 500;
  color: #008e64;
  font-size: 17px;
}
div.capital__sp_block > .capital_spclm > .spclm__contents > h3 + p {
  margin-top: 0.5em;
}
div.capital__sp_block > .capital_spclm > .spclm__contents > p {
  font-size: 13px;
  line-height: 1.6;
}
div.capital__sp_block > .capital_spclm > .spclm__contents > p.contents__data__exp {
  font-size: 11px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.capital__sp_block > .capital_spclm > .spclm__contents > p.contents__data__exp {
    margin-top: 8px;
  }
}
div.capital__sp_block > .capital_spclm > .spclm__contents > p.contents__data__exp strong {
  color: #008e64;
  font-size: 15px;
  font-weight: 500;
}
div.capital__sp_block > .capital_spclm > .spclm__contents > .contents__data {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px 10px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.capital__sp_block > .capital_spclm > .spclm__contents > .contents__data {
    margin-top: 8px;
  }
}
div.capital__sp_block > .capital_spclm > .spclm__contents > .contents__data > dt {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
div.capital__sp_block > .capital_spclm > .spclm__contents > .contents__data > dt.span2 {
  grid-column: 1/span 2;
}
div.capital__sp_block > .capital_spclm > .spclm__contents > .contents__data > dt p {
  font-size: 13px;
  line-height: 1.6;
}
div.capital__sp_block > .capital_spclm > .spclm__contents > .contents__data > dt p::before {
  content: "■";
  color: #008e64;
  margin-right: 0.3em;
}
div.capital__sp_block > .capital_spclm > .spclm__contents > .contents__data > dt p.no_square::before {
  content: "";
  margin-right: 0;
}
div.capital__sp_block > .capital_spclm > .spclm__contents > .contents__data > dt p strong {
  font-family: "Geologica", sans-serif;
  font-size: 22px;
  color: #008e64;
}
div.capital__sp_block > .capital_spclm > .spclm__contents > .contents__data > dt p strong.txt_small {
  font-size: 14px;
}
div.capital__sp_block > .capital_spclm > .spclm__contents > .contents__data > dd {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
div.capital__sp_block > .capital_spclm > .spclm__contents > .contents__data > dd p {
  font-size: 14px;
  line-height: 1.4;
  color: #008e64;
  text-indent: 1.3em;
}
div.capital__sp_block > .capital_spclm > .spclm__contents > .contents__data > dd p strong {
  font-family: "Geologica", sans-serif;
  font-size: 22px;
}
div.capital__sp_block > .capital_spclm > .spclm__contents > .contents__data > dd p .sub__txt {
  color: #444;
  font-size: 11px;
}
div.capital__sp_block + .capital__sp_block {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.capital__sp_block + .capital__sp_block {
    margin-top: 15px;
  }
}
div.corp_gov__clm2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0 10px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.corp_gov__clm2 {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  div.corp_gov__clm2 {
    grid-template-columns: 1fr;
  }
}
div.corp_gov__clm2 + h4 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  div.corp_gov__clm2 + h4 {
    margin-top: 30px;
  }
}
div.corp_gov__clm2 > div {
  border-top: 1px solid var(--category-color);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1em 1em;
}
div.corp_gov__clm2 > div:nth-last-of-type(1) {
  border-bottom: 1px solid var(--category-color);
}
div.corp_gov__clm2 > div:nth-last-of-type(2) {
  border-bottom: 1px solid var(--category-color);
}
@media screen and (max-width: 767px) {
  div.corp_gov__clm2 > div:nth-last-of-type(2) {
    border-bottom: 0;
  }
}
div.corp_gov__clm2 > div p span {
  font-weight: 500;
}
div.corp_gov__clm2 > div p + ul {
  margin-top: 8px;
}
div.corp_gov__clm2 > div p + .common__imgblock {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  div.corp_gov__clm2 > div .corp_gov__circlegraph {
    width: 60%;
    margin-inline: auto;
  }
}
div.governance__member_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 70px 50px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.governance__member_list {
    margin-top: 15px;
  }
}
@media screen and (max-width: 980px) {
  div.governance__member_list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  div.governance__member_list {
    grid-template-columns: 1fr;
    gap: 40px 10px;
  }
}
div.governance__member_list__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  div.governance__member_list__header {
    grid-template-columns: 1fr;
  }
}
div.governance__member_list__header > dd:nth-of-type(2) p {
  text-align: right;
}
div.governance__member_list__header + div {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  div.governance__member_list__header + div {
    margin-top: 20px;
  }
}
div.governance__member_list > .mng_article {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
}
div.governance__member_list > .mng_article .mng_article__ph .mng_article__ph__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  background: #dedede;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(222, 222, 222)), color-stop(52%, rgb(204, 213, 219)), to(rgb(176, 185, 191)));
  background: -webkit-linear-gradient(bottom, rgb(222, 222, 222) 0%, rgb(204, 213, 219) 52%, rgb(176, 185, 191) 100%);
  background: linear-gradient(0deg, rgb(222, 222, 222) 0%, rgb(204, 213, 219) 52%, rgb(176, 185, 191) 100%);
}
div.governance__member_list > .mng_article .mng_article__ph .mng_article__ph__inner img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
div.governance__member_list > .mng_article .mng_article__txt--name {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
}
div.governance__member_list > .mng_article .mng_article__txt--name::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #849d30;
  position: relative;
  top: 0.3em;
}
div.governance__member_list > .mng_article .mng_article__txt--name + p {
  margin-top: 1sem;
}
div.governance__member_list > .mng_article .mng_article__txt--post {
  margin-top: 10px;
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  div.governance__member_list > .mng_article .mng_article__txt--post {
    margin-top: 5px;
  }
}
div.governance__member_list > .mng_article .mng_article__txt--birth, div.governance__member_list > .mng_article .mng_article__txt--term, div.governance__member_list > .mng_article .mng_article__txt--stock {
  font-size: 1.15rem;
  line-height: 1.4;
  margin-top: 0.2em;
}
div.governance__member_list + dl {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.governance__member_list + dl {
    margin-top: 15px;
  }
}
div.effort__mapon {
  position: absolute;
  bottom: 2.5rem;
  width: 100%;
}
div.effort__mapon div.detail_link a dl dd.detail_link__txt {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
div.effort__cdp_clm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
div.tabletitle__clm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.tabletitle__clm {
    margin-top: 15px;
  }
}
div.tabletitle__clm div:nth-of-type(1) p {
  text-align: left;
}
div.tabletitle__clm div:nth-of-type(2) p {
  text-align: right;
  display: inherit;
}
div.tabletitle__clm div:nth-of-type(2) p.table__unit {
  text-align: right;
  font-size: small;
  display: block;
}
@media screen and (max-width: 767px) {
  div.tabletitle__clm div:nth-of-type(2) p.table__unit {
    text-align: left;
    display: inherit;
  }
}
div.tabletitle__clm + .common__imgblock {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  div.tabletitle__clm + .common__imgblock {
    margin-top: 8px;
  }
}
div.directors__btnclm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.directors__btnclm {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  div.directors__btnclm {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
  }
}
div.directors__btnclm > .btnclm__child {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 70px;
}
@media screen and (max-width: 767px) {
  div.directors__btnclm > .btnclm__child {
    width: 100%;
  }
}
div.directors__btnclm > .btnclm__child > .detail_link {
  height: 100%;
  margin-top: 0;
}
div.directors__btnclm > .btnclm__child > .detail_link > a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}
div.directors__btnclm > .btnclm__child > .detail_link > a dl {
  height: 100%;
}
div.capital__valuetalk {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  div.capital__valuetalk {
    margin-top: 30px;
  }
}
div.capital__valuetalk > h6 {
  color: #008e64;
  font-size: clamp(18px, 0.48vw + 18px, 22px);
  line-height: 1.5;
  font-weight: 300;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 30px auto;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  div.capital__valuetalk > h6 {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  div.capital__valuetalk > h6 {
    grid-template-columns: 20px auto;
    font-size: 17px;
  }
}
div.capital__valuetalk > h6::before {
  content: "Q";
  font-size: 32px;
  line-height: 1;
  color: #81b11a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  div.capital__valuetalk > h6::before {
    font-size: 26px;
  }
}
div.capital__valuetalk > h6 + p {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  div.capital__valuetalk > h6 + p {
    margin-top: 15px;
  }
}
div.valuetalk__title {
  background-color: #81b11a;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  div.valuetalk__title {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  div.valuetalk__title {
    grid-template-columns: 1fr;
  }
}
div.valuetalk__title__txt {
  padding: 2.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
div.valuetalk__title__txt h5 {
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.5em;
}
div.valuetalk__title__txt p {
  color: #fff;
}
div.valuetalk__title__ph {
  display: grid;
  grid-template-columns: 3fr 0.6fr 3fr;
}
div.valuetalk__title__ph .talker__ph_block {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  div.valuetalk__title__ph .talker__ph_block {
    overflow: auto;
  }
}
div.valuetalk__title__ph .talker__ph_block .talker_ph {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  div.valuetalk__title__ph .talker__ph_block .talker_ph {
    position: static;
    height: auto;
  }
}
div.valuetalk__title__ph .talker__ph_block .talker__name {
  position: absolute;
  background: -webkit-gradient(linear, right top, left top, color-stop(65%, rgba(32, 41, 36, 0.5)), color-stop(97%, rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(right, rgba(32, 41, 36, 0.5) 65%, rgba(0, 0, 0, 0) 97%);
  background: linear-gradient(-90deg, rgba(32, 41, 36, 0.5) 65%, rgba(0, 0, 0, 0) 97%);
  bottom: 0;
  right: 0;
  width: 100%;
  border-right: 10px solid #aacd0a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  div.valuetalk__title__ph .talker__ph_block .talker__name {
    position: static;
    background-color: #111;
    height: 120px;
  }
}
div.valuetalk__title__ph .talker__ph_block .talker__name .wrapper {
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  div.valuetalk__title__ph .talker__ph_block .talker__name .wrapper {
    padding: 0.6rem;
  }
}
div.valuetalk__title__ph .talker__ph_block .talker__name p {
  text-align: right;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.7);
}
div.valuetalk__title__ph .talker__ph_block .talker__name p.talker__name__class {
  font-size: 14px;
  line-height: 1.3;
  font-family: "Geologica", sans-serif;
}
@media screen and (max-width: 767px) {
  div.valuetalk__title__ph .talker__ph_block .talker__name p.talker__name__class {
    font-size: 11px;
    line-height: 1.2;
  }
}
div.valuetalk__title__ph .talker__ph_block .talker__name p.talker__name__name {
  font-size: 17px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  div.valuetalk__title__ph .talker__ph_block .talker__name p.talker__name__name {
    font-size: 14px;
  }
}
div.valuetalk__title__ph .talker__ph_block .talker__name p + p {
  margin-top: 6px;
}
div.valuetalk__title__ph .talker__cross_blcok {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
div.valuetalk__title__ph .talker__cross_blcok img {
  width: 50%;
}

h2 {
  font-weight: 500;
}
h2.head--border {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
h2.head--border:before, h2.head--border:after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #666;
}
h2.head--border:before {
  margin-right: 1rem;
}
h2.head--border:after {
  margin-left: 1rem;
}
h2.head--border--after {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  h2.head--border--after {
    font-size: 24px;
  }
}
h2.head--border--after:after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #684130;
}
h2.head--border--after:after {
  margin-left: 1rem;
}
h2.h2__border {
  font-family: "Geologica", sans-serif;
  font-weight: 500;
  color: #05A173;
  border-top: 1px solid #e2ece7;
  font-size: 50px;
  position: relative;
  padding-top: 0.3em;
}
@media screen and (max-width: 767px) {
  h2.h2__border {
    font-size: 35px;
  }
}
h2.h2__border::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100px;
  height: 6px;
  background: -webkit-gradient(linear, right top, left top, from(#fffd2c), color-stop(24.92%, #b7e73a), color-stop(99.68%, #6ed047), to(#6ed047));
  background: -webkit-linear-gradient(right, #fffd2c 0%, #b7e73a 24.92%, #6ed047 99.68%, #6ed047 100%);
  background: linear-gradient(270deg, #fffd2c 0%, #b7e73a 24.92%, #6ed047 99.68%, #6ed047 100%);
}
@media screen and (max-width: 767px) {
  h2.h2__border::before {
    width: 50px;
    height: 3px;
  }
}
h2.h2__border + div, h2.h2__border + dl, h2.h2__border + ol, h2.h2__border + ul, h2.h2__border + li, h2.h2__border + table {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  h2.h2__border + div, h2.h2__border + dl, h2.h2__border + ol, h2.h2__border + ul, h2.h2__border + li, h2.h2__border + table {
    margin-top: 15px;
  }
}
h2.h2__gradient span {
  background: -webkit-gradient(linear, left top, right top, from(#12c478), color-stop(70%, #0ab3b9), to(#02a1f9));
  background: -webkit-linear-gradient(left, #12c478 0%, #0ab3b9 70%, #02a1f9 100%);
  background: linear-gradient(to right, #12c478 0%, #0ab3b9 70%, #02a1f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Firefox 対応（必要であれば） */
  background-clip: text;
  color: transparent;
}
h2.h2__gradient + .top__contents__dl {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  h2.h2__gradient + .top__contents__dl {
    margin-top: 20px;
  }
}

h4.talent__h4 {
  background-color: #d7e8b5;
  color: #444 !important;
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.3em;
}

ul.ul__basic {
  margin-left: 2em;
}
ul.ul__basic li {
  list-style-type: disc;
  color: #444;
  font-weight: 300;
}
ul.ul__basic li + li {
  margin-top: 0.3em;
}
ul.ul__basic li > ul {
  margin-left: 2em;
}
ul.ul__basic + p, ul.ul__basic + ul, ul.ul__basic + .dl__expnote {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  ul.ul__basic + p, ul.ul__basic + ul, ul.ul__basic + .dl__expnote {
    margin-top: 5px;
  }
}
ul.ul__basic + h2, ul.ul__basic + h3, ul.ul__basic + h4, ul.ul__basic + h5 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  ul.ul__basic + h2, ul.ul__basic + h3, ul.ul__basic + h4, ul.ul__basic + h5 {
    margin-top: 20px;
  }
}
ul.ul__exp {
  margin-left: 0;
}
ul.ul__exp li {
  list-style-type: none;
  font-size: 97%;
  color: #444;
}
ul.ul__exp li + li {
  margin-top: 0.3em;
}
ul.ul__dash li {
  list-style-type: none;
  color: #444;
  padding-left: 1em;
  text-indent: -1em;
}
ul.ul__dash li + li {
  margin-top: 0.3em;
}
ul.ul__dash li::before {
  content: "―";
}
ul.list__link li {
  margin-left: 1.25em;
  text-indent: -1.25em;
  color: #444;
}
ul.list__link li::before {
  content: "";
  display: inline-block;
  background: var(--category-color);
  height: 1.3856406461rem;
  width: 0.75em;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin-right: 0.35em;
  margin-left: 0.15em;
  position: relative;
  top: 0.1rem;
}
ul.list__link li a {
  text-decoration: underline;
  -webkit-text-decoration-color: #033824;
          text-decoration-color: #033824;
  text-decoration-thickness: 1px;
  opacity: 1;
}
ul.list__link li a:hover {
  color: #05A173;
  -webkit-text-decoration-color: #05A173;
          text-decoration-color: #05A173;
  opacity: 1;
}
ul.list__link li + li {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  ul.list__link li + li {
    margin-top: 15px;
  }
}
ul.list__link + .common__imgblock, ul.list__link + p, ul.list__link + h4 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  ul.list__link + .common__imgblock, ul.list__link + p, ul.list__link + h4 {
    margin-top: 20px;
  }
}
ul.list__disc {
  list-style: none;
  margin-left: 1.3em;
}
ul.list__disc.tobacco__list li::before {
  background-color: #48922f;
}
ul.list__disc li {
  list-style-type: none;
  position: relative;
  padding-left: calc(1em + 6px);
}
ul.list__disc li::before {
  margin-right: 0.25em;
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background-color: var(--category-color);
  top: calc((1.6em - 3px) / 2);
  left: 0;
}
ul.list__disc li + li {
  margin-top: 0.3em;
}
ul.list__disc + h2, ul.list__disc + h3, ul.list__disc + h4, ul.list__disc + h5 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  ul.list__disc + h2, ul.list__disc + h3, ul.list__disc + h4, ul.list__disc + h5 {
    margin-top: 20px;
  }
}
ul.list__disc_color {
  list-style: none;
}
ul.list__disc_color li {
  list-style-type: none;
  padding-left: 1.25em;
  text-indent: -1.25em;
  color: #444;
}
ul.list__disc_color li::before {
  margin-right: 0.25em;
  content: "●";
  color: var(--category-color);
}
ul.list__disc_color li + li {
  margin-top: 0.3em;
}
ul.list__disc_color + p {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  ul.list__disc_color + p {
    margin-top: 10px;
  }
}
ul.list__disc_color + h2, ul.list__disc_color + h3, ul.list__disc_color + h4, ul.list__disc_color + h5 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  ul.list__disc_color + h2, ul.list__disc_color + h3, ul.list__disc_color + h4, ul.list__disc_color + h5 {
    margin-top: 20px;
  }
}
ul.list__square {
  list-style: none;
}
ul.list__square li {
  list-style-type: none;
  padding-left: 1.25em;
  text-indent: -1.25em;
}
ul.list__square li::before {
  margin-right: 0.25em;
  content: "■";
  color: var(--category-color);
}
ul.list__square li + li {
  margin-top: 0.3em;
}
ul.list__square + h2, ul.list__square + h3, ul.list__square + h4, ul.list__square + h5 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  ul.list__square + h2, ul.list__square + h3, ul.list__square + h4, ul.list__square + h5 {
    margin-top: 20px;
  }
}
ul.list__square_color {
  list-style: none;
}
ul.list__square_color li {
  list-style-type: none;
  padding-left: 1.25em;
  text-indent: -1.25em;
  color: #444;
}
ul.list__square_color li::before {
  margin-right: 0.25em;
  content: "■";
  color: var(--category-color);
}
ul.list__square_color li + li {
  margin-top: 0.3em;
}
ul.list__square_color + p {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  ul.list__square_color + p {
    margin-top: 10px;
  }
}
ul.list__square_color + h2, ul.list__square_color + h3, ul.list__square_color + h4, ul.list__square_color + h5 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  ul.list__square_color + h2, ul.list__square_color + h3, ul.list__square_color + h4, ul.list__square_color + h5 {
    margin-top: 20px;
  }
}
ul.list__dots {
  list-style: none;
}
ul.list__dots li {
  list-style-type: none;
  padding-left: 1.25em;
  text-indent: -1.25em;
}
ul.list__dots li::before {
  margin-right: 0.25em;
  content: "・";
  color: var(--category-color);
}
ul.list__dots li + li {
  margin-top: 0.3em;
}
ul.list__dots + h2, ul.list__dots + h3, ul.list__dots + h4, ul.list__dots + h5 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  ul.list__dots + h2, ul.list__dots + h3, ul.list__dots + h4, ul.list__dots + h5 {
    margin-top: 20px;
  }
}
ul.list__dots_color {
  list-style: none;
}
ul.list__dots_color li {
  list-style-type: none;
  padding-left: 1.25em;
  text-indent: -1.25em;
  color: #444;
}
ul.list__dots_color li::before {
  margin-right: 0.25em;
  content: "■";
  color: var(--category-color);
}
ul.list__dots_color li + li {
  margin-top: 0.3em;
}
ul.list__dots_color + p {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  ul.list__dots_color + p {
    margin-top: 10px;
  }
}
ul.list__dots_color + h2, ul.list__dots_color + h3, ul.list__dots_color + h4, ul.list__dots_color + h5 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  ul.list__dots_color + h2, ul.list__dots_color + h3, ul.list__dots_color + h4, ul.list__dots_color + h5 {
    margin-top: 20px;
  }
}
ul.list__ball {
  list-style: none;
}
ul.list__ball li {
  list-style-type: none;
  padding-left: 1.25em;
  text-indent: -1.25em;
  color: #444;
  font-weight: 300;
}
ul.list__ball li::before {
  margin-right: 0.85em;
  content: "●";
  color: var(--category-color);
  font-size: 0.6em;
}
ul.list__ball li + li {
  margin-top: 0.3em;
}
ul.small li {
  font-size: small;
}

ol.list__decimal {
  list-style: none;
  counter-reset: ol_li; /* ol_li カウンタをセットする(値もリセット) */
}
ol.list__decimal.monocolor li {
  color: #444;
}
ol.list__decimal.monocolor li::before {
  color: #444;
  font-weight: 400;
}
ol.list__decimal li {
  list-style-type: none;
  padding-left: 1.75em;
  text-indent: -1.75em;
  color: #444;
}
ol.list__decimal li::before {
  margin-right: 0.25em;
  counter-increment: ol_li; /* ol_li カウンタの値に1加える */
  content: counter(ol_li) "."; /* before擬似要素のcontentで出力 */
  color: var(--category-color); /* 色を変更 */
  width: 1.5em;
  display: inline-block;
  text-align: right;
}
ol.list__decimal li + li {
  margin-top: 0.3em;
}
ol.list__decimal + .common__imgblock {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  ol.list__decimal + .common__imgblock {
    margin-top: 20px;
  }
}
ol.list__decimal + p {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  ol.list__decimal + p {
    margin-top: 10px;
  }
}

dl.dl__expnote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
  width: 100%; /* または固定の幅 (例: 500px) */
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  dl.dl__expnote {
    margin-top: 8px;
  }
}
dl.dl__expnote.margin_top__middle {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  dl.dl__expnote.margin_top__middle {
    margin-top: 30px;
  }
}
dl.dl__expnote.txt__center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
dl.dl__expnote > dt {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
dl.dl__expnote > dt p {
  text-align: right;
  line-height: 1.6;
  font-size: 1.4rem;
}
dl.dl__expnote > dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word; /* または overflow-wrap: break-word; */
  width: 100%;
  min-width: 0; /* 追加 */
  text-overflow: ellipsis;
}
dl.dl__expnote > dd p {
  text-align: left;
  line-height: 1.6;
  font-size: 1.4rem;
  word-wrap: break-word; /* または overflow-wrap: break-word; */
  display: inline-block; /* 追加 */
  text-overflow: ellipsis;
}
dl.dl__expnote > dd p.no__inlineblock {
  display: inherit;
}
dl.dl__expnote > dd p a {
  font-size: 1.4rem;
}
dl.dl__expnote.history__expnote {
  margin-left: 32rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  dl.dl__expnote.history__expnote {
    margin-left: 0;
  }
}
dl.dl__expnote + .common__accordion, dl.dl__expnote + .common__imgblock, dl.dl__expnote + .img__area, dl.dl__expnote + .common__linkpage, dl.dl__expnote + h4, dl.dl__expnote + h5 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  dl.dl__expnote + .common__accordion, dl.dl__expnote + .common__imgblock, dl.dl__expnote + .img__area, dl.dl__expnote + .common__linkpage, dl.dl__expnote + h4, dl.dl__expnote + h5 {
    margin-top: 20px;
  }
}
dl.dl__expnote + h3 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  dl.dl__expnote + h3 {
    margin-top: 30px;
  }
}
dl.dl__expnote + .list__link, dl.dl__expnote + .ul__basic {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  dl.dl__expnote + .list__link, dl.dl__expnote + .ul__basic {
    margin-top: 10px;
  }
}
dl.dl__linknote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  dl.dl__linknote {
    margin-top: 8px;
  }
}
dl.dl__linknote > dt p {
  text-align: right;
  line-height: 1.6;
  font-size: 1.4rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: #05A173;
}
dl.dl__linknote > dd p {
  text-align: left;
  line-height: 1.6;
  font-size: 1.4rem;
}
dl.dl__linknote > dd p a {
  font-size: 1.4rem;
}
dl.dl__linknote + .common__accordion, dl.dl__linknote + .common__imgblock, dl.dl__linknote + .img__area, dl.dl__linknote + .common__linkpage, dl.dl__linknote + h4, dl.dl__linknote + h5 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  dl.dl__linknote + .common__accordion, dl.dl__linknote + .common__imgblock, dl.dl__linknote + .img__area, dl.dl__linknote + .common__linkpage, dl.dl__linknote + h4, dl.dl__linknote + h5 {
    margin-top: 20px;
  }
}
dl.dl__linknote + h3 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  dl.dl__linknote + h3 {
    margin-top: 30px;
  }
}
dl.dl__linknote + .list__link, dl.dl__linknote + .ul__basic {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  dl.dl__linknote + .list__link, dl.dl__linknote + .ul__basic {
    margin-top: 10px;
  }
}
dl.dl__clm2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  dl.dl__clm2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
dl.dl__clm2 > dd.flex1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
dl.dl__clm2 > dd.flex2 {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
dl.dl__clm2 > dd.flex3 {
  -webkit-box-flex: 3;
  -webkit-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
dl.dl__clm2 > dd.flex4 {
  -webkit-box-flex: 4;
  -webkit-flex: 4;
      -ms-flex: 4;
          flex: 4;
}
dl.riskfactor__list {
  display: grid;
  grid-template-columns: 1fr 6fr;
  gap: 15px 20px;
}
@media screen and (max-width: 767px) {
  dl.riskfactor__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
dl.riskfactor__list > dt > span {
  background-color: var(--category-color);
  color: #fff;
  font-size: clamp(13px, 0.16vw + 13px, 15px);
  line-height: 1.2;
  display: block;
  width: 100%;
  border-radius: 30px;
  text-align: center;
  font-weight: 500;
  padding: 5px 3px 7px;
}
@media screen and (max-width: 767px) {
  dl.riskfactor__list > dt > span {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
dl.riskfactor__list > dd p {
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  dl.riskfactor__list > dd {
    padding-bottom: 1rem;
  }
}
dl.stock__info {
  display: grid;
  grid-template-columns: auto 1fr;
  width: 100%;
  gap: 10px;
}
dl.stock__info > dt {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 1em;
}
dl.stock__info > dt p {
  white-space: nowrap;
  line-height: 1.6;
}
dl.stock__info > dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
dl.stock__info > dd p {
  line-height: 1.6;
}
dl.stock__info + h3 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  dl.stock__info + h3 {
    margin-top: 30px;
  }
}
dl.domain__purpose {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 95%;
  max-width: 1258px;
  margin-inline: auto;
  border: 1px solid #033824;
}
dl.domain__purpose > dt {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 200px;
  background-color: #68862d;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.5rem 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  dl.domain__purpose > dt {
    width: 100px;
  }
}
dl.domain__purpose > dt p {
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  dl.domain__purpose > dt p {
    font-size: 14px;
    line-height: 1.4;
  }
}
dl.domain__purpose > dd {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #e7f1be;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.5rem 1rem;
}
dl.domain__purpose > dd p {
  text-align: center;
  font-weight: 500;
  font-size: clamp(18px, 0.48vw + 18px, 24px);
  color: #00621f;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  dl.domain__purpose > dd p {
    font-size: 18px;
    line-height: 1.4;
  }
}
dl.domain__purpose + div {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  dl.domain__purpose + div {
    margin-top: 30px;
  }
}
dl.corp_gov__evaluation {
  display: grid;
  grid-template-columns: 40px auto;
  gap: 20px;
}
dl.corp_gov__evaluation > dt {
  background-color: #788D91;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
dl.corp_gov__evaluation > dt p {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  color: #fff;
  font-weight: 300;
}
dl.corp_gov__evaluation > dd {
  padding: 0.5em;
}
dl.corp_gov__evaluation > .corp_gov__evaluation {
  border-top: 1px solid #111;
  padding-top: 20px;
}
dl.corp_gov__evaluation + hr {
  margin-top: 1px;
  margin-bottom: 1px;
}

table.skillmatrix__table {
  width: 100%;
  font-weight: 400;
  font-size: clamp(13px, 0.16vw + 13px, 15px);
  min-width: 1258px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 1100px) {
  table.skillmatrix__table tr > .sp__fixed {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    background: white;
    z-index: 1;
  }
}
table.skillmatrix__table tr + tr {
  border-top: 1px solid #ccc;
}
table.skillmatrix__table tr > th {
  padding: 0.8em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  vertical-align: middle;
  line-height: 1.4;
}
table.skillmatrix__table tr > th + th {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
table.skillmatrix__table tr > th.th__blue {
  background-color: #3d889f;
  color: #fff;
  font-weight: 300;
}
table.skillmatrix__table tr > th.th__gray1 {
  background-color: #596e72;
  color: #fff;
}
table.skillmatrix__table tr > th.th__gray2 {
  background-color: #6f8a8f;
  color: #fff;
  font-size: 80%;
  font-weight: 300;
}
table.skillmatrix__table tr > th.th__gray2:nth-of-type(1) {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
table.skillmatrix__table tr > td {
  color: #444;
  padding: 0.8em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 7%;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
}
table.skillmatrix__table tr > td:nth-child(even) {
  background-color: #e8e9e9;
}
table.skillmatrix__table tr > td.td__lightgreen {
  background-color: #f0f6e1;
  font-size: 80%;
  font-weight: 300;
}
table.skillmatrix__table tr > td.td__lightblue {
  background-color: #e8f4f4;
  font-size: 80%;
  font-weight: 300;
}
table.skillmatrix__table tr > td.td__name {
  white-space: nowrap;
  text-align: left;
  background-color: #fff;
}
table.skillmatrix__table tr > td.td__class {
  white-space: nowrap;
  text-align: left;
}
table.skillmatrix__table tr.disc__green .td__disc {
  color: #05A173;
}
table.skillmatrix__table tr.disc__blue .td__disc {
  color: #00a3e7;
}
table.table__cfo1 {
  width: 100%;
  font-weight: 400;
  font-size: clamp(13px, 0.16vw + 13px, 15px);
  border-bottom: 1px solid #ccc;
  min-width: 770px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  table.table__cfo1 {
    margin-top: 8px;
  }
}
table.table__cfo1 tr th {
  padding: 2rem 1rem;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background-color: #596e72;
}
table.table__cfo1 tr th + th {
  border-left: 1px solid #fff;
}
table.table__cfo1 tr td {
  padding: 2rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
table.table__cfo1 tr td + td {
  border-left: 1px solid #ccc;
}
table.table__cfo1 tr + tr {
  border-top: 1px solid #ccc;
}
table.table__cfo2 {
  width: 100%;
  font-weight: 400;
  font-size: clamp(13px, 0.16vw + 13px, 15px);
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  min-width: 700px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  table.table__cfo2 {
    margin-top: 8px;
  }
}
table.table__cfo2 tr th {
  padding: 2rem 1rem;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #999;
}
table.table__cfo2 tr th p {
  text-align: left;
  white-space: nowrap;
  color: #5f9939;
  font-weight: 500;
}
@media screen and (max-width: 1100px) {
  table.table__cfo2 tr th p {
    white-space: initial;
  }
}
table.table__cfo2 tr td {
  padding: 2rem 1rem;
  border-bottom: 1px solid #999;
  border-left: 1px solid #999;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
table.table__cfo2 tr td ul li {
  font-weight: 600;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  table.table__cfo2 tr td ul li {
    text-align: left;
  }
}
table.table__cfo2 tr td ul li p {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
}
table.table__link {
  width: 100%;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}
table.table__link tr + tr {
  border-top: 1px solid #999;
}
table.table__link tr > th {
  width: 30%;
  padding: 1em 2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  table.table__link tr > th {
    display: block;
    width: 100%;
    padding-bottom: 0.3em;
  }
}
table.table__link tr > th.sub__th {
  padding-left: 3.5em;
}
@media screen and (max-width: 767px) {
  table.table__link tr > th.sub__th {
    padding-left: 2em;
  }
}
table.table__link tr > th.sub__th > p {
  color: #788D91;
  font-size: 1.4rem;
}
table.table__link tr > th.sub__th > p::before {
  content: "";
  margin-right: 0;
}
table.table__link tr > th > p {
  text-align: left;
  font-weight: 500;
  color: #00621f;
}
table.table__link tr > th > p::before {
  content: "●";
  margin-right: 0.4em;
  font-size: x-small;
  vertical-align: middle;
}
table.table__link tr > td {
  padding: 1em 2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  table.table__link tr > td {
    display: block;
    padding-top: 0.3em;
    padding-bottom: 2em;
  }
}
table.table__link tr > td a {
  display: block;
  font-size: 1.4rem;
}
table.stock__table1 {
  width: 100%;
  border-bottom: 1px solid #999;
}
table.stock__table1 tr.tr__midashi > th {
  background-color: #596e72;
}
@media screen and (max-width: 767px) {
  table.stock__table1 tr.tr__midashi > th {
    display: block;
    width: 100%;
  }
}
table.stock__table1 tr.tr__midashi > th + th {
  border-left: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  table.stock__table1 tr.tr__midashi > th + th {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}
table.stock__table1 tr.tr__midashi > th p {
  color: #fff;
  font-weight: 500;
}
table.stock__table1 tr > td, table.stock__table1 tr > th {
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  table.stock__table1 tr > td {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  table.stock__table1 tr > td + td {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
}
table.stock__table1 tr > td:last-child p {
  text-align: right;
  display: block;
  width: 50%;
  margin-inline: auto;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  table.stock__table1 tr > td:last-child p {
    width: 100%;
  }
}
table.stock__table1 tr:nth-child(odd) td {
  background-color: #e8f4f4;
}
table.stock__table2 {
  width: 100%;
  border-bottom: 1px solid #999;
  min-width: 860px;
}
table.stock__table2 tr > td, table.stock__table2 tr > th {
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
table.stock__table2 tr > th {
  text-align: left;
}
table.stock__table2 tr > td {
  text-align: center;
}
table.stock__table2 tr:nth-child(odd) th,
table.stock__table2 tr:nth-child(odd) td {
  background-color: #e8f4f4;
}
table.stock__table2 tr:nth-child(odd).tr__midashi > th {
  background-color: #596e72;
  text-align: center;
}
table.stock__table2 tr:nth-child(odd).tr__midashi > th + th {
  border-left: 1px solid #fff;
}
table.stock__table2 tr:nth-child(odd).tr__midashi > th p {
  color: #fff;
  font-weight: 500;
}
table.valuechain__table {
  width: 100%;
  min-width: 900px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
table.valuechain__table > tbody > tr.table__header > th {
  background-color: transparent;
  padding: 0;
}
table.valuechain__table > tbody > tr + tr th {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
table.valuechain__table > tbody > tr + tr td {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
table.valuechain__table > tbody > tr > th {
  background-color: #596e72;
  padding: 1em 1em;
}
table.valuechain__table > tbody > tr > th p {
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  display: block;
}
table.valuechain__table > tbody > tr > th > img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  table.valuechain__table > tbody > tr > th > img {
    max-width: 1100px;
  }
}
table.valuechain__table > tbody > tr > td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1em 1em;
  vertical-align: top;
  width: 20%;
}
table.valuechain__table > tbody > tr > td:nth-child(even) {
  background-color: #e8f4f4;
}
table.valuechain__table > tbody > tr > td ul li {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  table.valuechain__table > tbody > tr > td ul li {
    font-size: 12px;
  }
}
table.valuechain__table > tbody > tr > td .valuechain__dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 5px;
}
table.valuechain__table > tbody > tr > td .valuechain__dl dt p,
table.valuechain__table > tbody > tr > td .valuechain__dl dd p {
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  table.valuechain__table > tbody > tr > td .valuechain__dl dt p,
  table.valuechain__table > tbody > tr > td .valuechain__dl dd p {
    font-size: 12px;
  }
}
table.valuechain__table > tbody > tr > td .valuechain__dl dt {
  width: 3em;
}
table.valuechain__table > tbody > tr > td .valuechain__dl dt p {
  white-space: nowrap;
  text-align: right;
  font-size: 1px;
}
table.valuechain__table > tbody > tr > td .valuechain__dl dt p span {
  font-size: 12px;
}
table.effort__talent_table {
  width: 100%;
  min-width: 900px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
table.effort__talent_table > tbody > tr {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
table.effort__talent_table > tbody > tr.table__header {
  border-top: none;
}
table.effort__talent_table > tbody > tr.table__header > th {
  background-color: transparent;
  background-color: #596e72;
  border-right: 0;
}
table.effort__talent_table > tbody > tr.table__header > th p {
  color: #fff;
}
table.effort__talent_table > tbody > tr.table__header > th + th {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
table.effort__talent_table > tbody > tr > th {
  padding: 1em;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  vertical-align: middle;
}
table.effort__talent_table > tbody > tr > th p {
  line-height: 1.1;
  white-space: nowrap;
}
table.effort__talent_table > tbody > tr > td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1em 1em;
  vertical-align: middle;
  width: 20%;
}
table.effort__talent_table > tbody > tr > td + td {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
table.effort__talent_table > tbody > tr > td p {
  text-align: center;
  line-height: 1.1;
}
table.tobacco__plantbl {
  width: 100%;
  min-width: 800px;
}
table.tobacco__plantbl.col2 td {
  width: 50%;
}
table.tobacco__plantbl.col3 td {
  width: 33.3%;
}
table.tobacco__plantbl > tbody tr.table__header {
  background-color: #94b1a1;
}
table.tobacco__plantbl > tbody tr.table__header th + th {
  border-left: 2px solid #fff;
}
table.tobacco__plantbl > tbody tr.table__header th p {
  color: #fff;
}
table.tobacco__plantbl > tbody tr.table__header th.tablehader_bgcolor2 {
  background-color: #748b79;
  width: 40px;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1rem;
}
table.tobacco__plantbl > tbody tr.table__header th.tablehader_bgcolor2 p {
  color: #fff;
  -webkit-writing-mode: sideways-lr;
      -ms-writing-mode: sideways-lr;
          writing-mode: sideways-lr;
}
table.tobacco__plantbl > tbody tr > th.th__vertical {
  background-color: #748b79;
}
table.tobacco__plantbl > tbody tr > td {
  vertical-align: top;
  background-color: #eff8f8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.5rem;
  border-left: 2px solid #fff;
}
table.tobacco__plantbl > tbody tr > td > h4 {
  text-align: center;
  color: #008e64 !important;
}
table.tobacco__plantbl + .tobacco__plantbl {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  table.tobacco__plantbl + .tobacco__plantbl {
    margin-top: 8px;
  }
}
table.corp_gov__table1 {
  width: 100%;
  border-bottom: 1px solid #999;
  min-width: 800px;
}
table.corp_gov__table1 > tbody > .table__header th {
  background-color: #596e72;
}
table.corp_gov__table1 > tbody > .table__header th + th {
  border-left: 1px solid #fff;
}
table.corp_gov__table1 > tbody > .table__header th p {
  color: #fff;
  font-weight: 500;
}
table.corp_gov__table1 > tbody > tr > td {
  padding: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
table.corp_gov__table1 > tbody > tr > td:first-child {
  width: 40%;
}
table.corp_gov__table1 > tbody > tr > td + td {
  border-left: 1px solid #999;
}
table.corp_gov__table2 {
  width: 100%;
  border-bottom: 1px solid #999;
  min-width: 800px;
}
table.corp_gov__table2 > tbody {
  border-collapse: collapse;
}
table.corp_gov__table2 > tbody > .table__header th {
  background-color: #596e72;
  vertical-align: middle;
  padding: 0.6em 0;
}
table.corp_gov__table2 > tbody > .table__header th + th {
  border-left: 1px solid #fff;
}
table.corp_gov__table2 > tbody > .table__header th p {
  color: #fff;
  text-align: center;
  line-height: 1.3;
}
table.corp_gov__table2 > tbody > .table__header + tr {
  border-top: 0;
}
table.corp_gov__table2 > tbody > tr + tr {
  border-top: 1px solid #999;
}
table.corp_gov__table2 > tbody > tr > td {
  padding: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 20%;
  vertical-align: middle;
}
table.corp_gov__table2 > tbody > tr > td.border_left {
  border-left: 1px solid #999;
}
table.corp_gov__table2 > tbody > tr > td p {
  text-align: center;
  line-height: 1.3;
}
table.corp_gov__table2 > tbody > tr > td + td {
  border-left: 1px solid #999;
}
table.corp_gov__table3 {
  width: 100%;
  border-bottom: 1px solid #999;
  min-width: 800px;
}
table.corp_gov__table3 > tbody {
  border-collapse: collapse;
}
table.corp_gov__table3 > tbody > .table__header th {
  background-color: #596e72;
  vertical-align: middle;
}
table.corp_gov__table3 > tbody > .table__header th + th {
  border-left: 1px solid #fff;
}
table.corp_gov__table3 > tbody > .table__header th p {
  color: #fff;
  text-align: center;
  font-size: 14px;
}
table.corp_gov__table3 > tbody > .table__header + tr {
  border-top: 0;
}
table.corp_gov__table3 > tbody > tr + tr {
  border-top: 1px solid #999;
}
table.corp_gov__table3 > tbody > tr:nth-child(even) > td {
  background-color: #fff;
}
table.corp_gov__table3 > tbody > tr > td {
  padding: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
}
table.corp_gov__table3 > tbody > tr > td p {
  text-align: left;
  font-size: 14px;
}
table.corp_gov__table3 > tbody > tr > td:nth-of-type(1) {
  width: 10%;
}
table.corp_gov__table3 > tbody > tr > td:nth-of-type(1) > p {
  white-space: nowrap;
}
table.corp_gov__table3 > tbody > tr > td:last-child {
  width: 10%;
}
table.corp_gov__table3 > tbody > tr > td:last-child > p {
  text-align: center;
}
table.corp_gov__table4 {
  width: 100%;
  border-bottom: 1px solid #999;
  min-width: 800px;
  border-collapse: collapse;
}
table.corp_gov__table4 > tbody > .table__header th {
  background-color: #596e72;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: 1px solid #fff;
  vertical-align: middle;
}
table.corp_gov__table4 > tbody > .table__header th.th__gray2 {
  background-color: #7b8f86;
}
table.corp_gov__table4 > tbody > .table__header th p {
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
}
table.corp_gov__table4 > tbody > .table__header + .table__header {
  border-top: 1px solid #fff;
}
table.corp_gov__table4 > tbody > .table__header + tr {
  border-top: 0;
}
table.corp_gov__table4 > tbody > tr + tr {
  border-top: 1px solid #999;
}
table.corp_gov__table4 > tbody > tr.table__total th, table.corp_gov__table4 > tbody > tr.table__total td {
  background-color: #e8f4f4;
}
table.corp_gov__table4 > tbody > tr > th {
  padding: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
table.corp_gov__table4 > tbody > tr > th p {
  text-align: left;
  font-weight: 700;
  line-height: 1.3;
}
table.corp_gov__table4 > tbody > tr > td {
  padding: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 15%;
  vertical-align: middle;
}
table.corp_gov__table4 > tbody > tr > td p {
  text-align: right;
  font-size: 14px;
}
table.corp_gov__table4 > tbody > tr > td:nth-of-type(1) {
  width: 10%;
}
table.corp_gov__table4 > tbody > tr > td:nth-of-type(1) > p {
  white-space: nowrap;
}
table.corp_gov__table4 > tbody > tr > td:last-child {
  width: 10%;
}
table.corp_gov__table4 > tbody > tr > td:last-child > p {
  text-align: center;
}
table.corp_gov__table5 {
  width: 100%;
  border-bottom: 1px solid #999;
  min-width: 800px;
  border-collapse: collapse;
}
table.corp_gov__table5 > tbody > .table__header th {
  background-color: #596e72;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: 1px solid #fff;
}
table.corp_gov__table5 > tbody > .table__header th.nobg {
  background-color: transparent;
}
table.corp_gov__table5 > tbody > .table__header th p {
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
}
table.corp_gov__table5 > tbody > .table__header + .table__header {
  border-top: 1px solid #fff;
}
table.corp_gov__table5 > tbody > .table__header + tr {
  border-top: 0;
}
table.corp_gov__table5 > tbody > tr + tr {
  border-top: 1px solid #999;
}
table.corp_gov__table5 > tbody > tr + tr > th {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
table.corp_gov__table5 > tbody > tr > th {
  padding: 2rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #7b8f86;
  vertical-align: middle;
}
table.corp_gov__table5 > tbody > tr > th p {
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
}
table.corp_gov__table5 > tbody > tr > td {
  padding: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 13%;
  vertical-align: middle;
}
table.corp_gov__table5 > tbody > tr > td:nth-of-type(1) {
  width: 20%;
}
table.corp_gov__table5 > tbody > tr > td p {
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
}
table.corp_gov__table5 > tbody > tr:not(.table__header) > th {
  width: 19%;
}

.txt__center {
  text-align: center;
}
.txt__left {
  text-align: left;
}
.txt__right {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .txt__right.sp__left {
    text-align: left;
  }
}
.txt__small {
  font-size: 1.4rem;
}

span.disc__green {
  color: #05A173;
}
span.disc__blue {
  color: #292986;
}
span.disc__skyblue {
  color: #229eda;
}
span.disc__orange {
  color: #f18d00;
}

img.svg__shadow {
  -webkit-filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.3));
}
@media screen and (max-width: 767px) {
  img.valuechain_art01 {
    width: 80% !important;
  }
}
img.bg__white {
  background-color: #fff;
}
img.effort__community_investment_art {
  background-color: #fff;
}

.l-header p,
.l-footer p,
.l-breadcrumb p {
  margin: 0;
  line-height: 1.5;
}

#jtweb-site-area-content > .style-component .jtweb-topic-path ul,
.jtweb-topic-path ul {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#jtweb-site-area-content > .style-component .jtweb-topic-path ul > li,
.jtweb-topic-path ul > li {
  display: inline;
  letter-spacing: normal;
  line-height: 1.8;
  position: relative;
}
#jtweb-site-area-content > .style-component .jtweb-topic-path ul > li > span,
.jtweb-topic-path ul > li > span {
  font-size: 14px;
  color: #033824;
}

.top__keyvisual {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.top__keyvisual video {
  width: 100%;
  height: auto;
  border: none;
  outline: none;
  -webkit-filter: drop-shadow(0px 0px #000);
          filter: drop-shadow(0px 0px #000);
  overflow: hidden;
}
.top__keyvisual video:focus {
  outline: none;
}
@media screen and (max-width: 767px) {
  .top__keyvisual video {
    display: none;
  }
}
.top__keyvisual img {
  width: 100%;
  height: auto;
}
.top__keyvisual .top__keyvisual__text {
  width: 95%;
  max-width: 1258px;
  margin-inline: auto;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .top__keyvisual .top__keyvisual__text {
    margin-top: 15px;
  }
}
.top__keyvisual .top__keyvisual__text h1 {
  text-align: right;
  color: #05A173;
  font-size: 75px;
  font-size: clamp(45px, 5.9vw + 3px, 75px);
  line-height: 1.1;
}
.top__keyvisual .top__keyvisual__text h1 span {
  font-size: clamp(50px, 7.4vw + 3px, 95px);
  margin-left: 0.1em;
  position: relative;
  top: 4px;
}
.top__keyvisual + section {
  margin-top: clamp(50px, 5.6vw + 20px, 120px);
}
.top__contents {
  width: 100%;
  background-image: url("/investors/results/integrated_report/report/2025/cat_assets/img/contents_bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  background-color: #fff;
  min-height: 600px;
}
.top__contents__inner {
  width: 95%;
  max-width: 1258px;
  margin-inline: auto;
}
.top__contents__inner h2 span {
  font-family: "Geologica", sans-serif;
  font-size: clamp(40px, 6.1vw + 5px, 80px);
  text-transform: uppercase;
  font-weight: 200;
}
.top__contents + section {
  margin-top: clamp(50px, 5.6vw + 20px, 120px);
}
.top__contents__dl {
  width: 100%;
  display: grid;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .top__contents__dl {
    gap: 20px;
  }
}
.top__contents__dl + .top__contents__dl {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .top__contents__dl + .top__contents__dl {
    margin-top: 20px;
  }
}
.top__contents__dl.column__one {
  grid-template-columns: 1fr;
}
.top__contents__dl.column__three {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .top__contents__dl.column__three {
    grid-template-columns: 1fr;
  }
}
.top__contents__dl > a > dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
.top__contents__dl > a > dd .layer__text {
  position: absolute;
  bottom: 2rem;
  z-index: 3;
  width: 100%;
}
.top__contents__dl > a > dd .layer__text > .btntext__clm {
  display: grid;
  grid-template-columns: 3fr 1fr;
  width: 92%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .top__contents__dl > a > dd .layer__text > .btntext__clm {
    width: 90%;
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.top__contents__dl > a > dd .layer__text > .btntext__clm.clm__vertical {
  grid-template-columns: 1fr;
  width: 85%;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .top__contents__dl > a > dd .layer__text > .btntext__clm.clm__vertical {
    width: 90%;
    gap: 18px;
  }
}
.top__contents__dl > a > dd .layer__text > .btntext__clm.clm__vertical > dd.dd__btn > .grad__border__top {
  width: 100%;
  position: relative;
}
.top__contents__dl > a > dd .layer__text > .btntext__clm > dd p.txt__big {
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 0 #222, 0 1px 6px rgba(0, 0, 0, 0.5);
  font-size: 25px;
}
.top__contents__dl > a > dd .layer__text > .btntext__clm > dd p.txt__big.btn__session {
  font-size: 21px;
}
@media screen and (max-width: 767px) {
  .top__contents__dl > a > dd .layer__text > .btntext__clm > dd p.txt__big.btn__session {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .top__contents__dl > a > dd .layer__text > .btntext__clm > dd p.txt__big {
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.8), 0 0 3px rgba(0, 0, 0, 0.6);
    font-size: 18px;
  }
}
.top__contents__dl > a > dd .layer__text > .btntext__clm > dd p.txt__middle {
  font-weight: 300;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 1px 0 #222, 0 1px 6px rgba(0, 0, 0, 0.3);
  font-size: 20px;
}
@media screen and (max-width: 1100px) {
  .top__contents__dl > a > dd .layer__text > .btntext__clm > dd p.txt__middle {
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .top__contents__dl > a > dd .layer__text > .btntext__clm > dd p.txt__middle {
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.8), 0 0 3px rgba(0, 0, 0, 0.6);
  }
}
@media screen and (max-width: 767px) {
  .top__contents__dl > a > dd .layer__text > .btntext__clm > dd p.txt__middle.session {
    font-size: 19px;
  }
}
.top__contents__dl > a > dd .layer__text > .btntext__clm > dd p.txt__small {
  font-weight: 300;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 1px 0 #222, 0 1px 6px rgba(0, 0, 0, 0.3);
  font-size: clamp(11px, 0.48vw + 11px, 13px);
}
@media screen and (max-width: 767px) {
  .top__contents__dl > a > dd .layer__text > .btntext__clm > dd p.txt__small {
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.8), 0 0 3px rgba(0, 0, 0, 0.6);
  }
}
.top__contents__dl > a > dd .layer__text > .btntext__clm > dd p + p {
  margin-top: 5px;
}
.top__contents__dl > a > dd .layer__text > .btntext__clm > dd.txt__middle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.top__contents__dl > a > dd .layer__text > .btntext__clm > dd.txt__middle p {
  position: relative;
  top: -3px;
}
@media screen and (max-width: 767px) {
  .top__contents__dl > a > dd .layer__text > .btntext__clm > dd.txt__middle p {
    top: 0;
  }
}
.top__contents__dl > a > dd .layer__text > .btntext__clm > dd.dd__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .top__contents__dl > a > dd .layer__text > .btntext__clm > dd.dd__btn {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.top__contents__dl > a > dd .layer__text > .btntext__clm > dd.dd__btn > .grad__border__top {
  padding: 1.2rem 0 1.5rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  right: 0;
  bottom: 5px;
  background-repeat: no-repeat;
  background-position: calc(100% - 1.5rem) center;
  background-color: #fff;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  z-index: 1;
  border-radius: 40px; /* ← 任意の角丸指定 */
  border: 2px solid #05A173;
  position: relative;
}
.top__contents__dl > a > dd .layer__text > .btntext__clm > dd.dd__btn > .grad__border__top p {
  text-align: center;
  font-size: clamp(15px, 1.37vw + 0.7px, 22px);
  line-height: 1.1;
}
.top__contents__dl > a > dd .layer__text > .btntext__clm > dd.dd__btn > .grad__border__top p::after {
  font-family: "Material Icons";
  content: "\e5c8";
  position: absolute;
  right: 10px;
  line-height: 1.2;
}
.top__contents__dl > a > dd .layer__text > .btntext__clm > dd.dd__btn > .grad__border__top::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #fff;
  opacity: 1;
  border-radius: 40px; /* ← 任意の角丸指定 */
}
.top__contents__dl > a > dd .layer__text > .btntext__clm > dd.dd__btn > .grad__border__top::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#29f19c), to(#02a1f9));
  background: -webkit-linear-gradient(left, #29f19c 0%, #02a1f9 100%);
  background: linear-gradient(to right, #29f19c 0%, #02a1f9 100%);
  opacity: 1;
  border-radius: 40px; /* ← 任意の角丸指定 */
}
.top__contents__dl > a > dd .layer__img {
  background-color: #000;
  width: 100%;
  z-index: 1;
}
.top__contents__dl > a > dd .layer__img img {
  width: 100%;
  height: auto;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.top__contents__dl > a > dd .layer__message {
  opacity: 0;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__contents__dl > a > dd .layer__message {
    display: none;
  }
}
.top__contents__dl > a > dd .layer__message_sp {
  position: absolute;
  display: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__contents__dl > a > dd .layer__message_sp {
    display: inherit;
    padding: 5%;
  }
  .top__contents__dl > a > dd .layer__message_sp.size__full {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .top__contents__dl > a > dd .layer__message_sp.size__full > .message__inner {
    width: 100%;
    padding: 2rem 3rem;
  }
  .top__contents__dl > a > dd .layer__message_sp.sp_position {
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
}
.top__contents__dl > a > dd .layer__message_sp > .message__inner {
  background: -webkit-gradient(linear, left top, right top, from(rgba(28, 152, 100, 0.7)), to(rgba(11, 124, 185, 0.7)));
  background: -webkit-linear-gradient(left, rgba(28, 152, 100, 0.7) 0%, rgba(11, 124, 185, 0.7) 100%);
  background: linear-gradient(to right, rgba(28, 152, 100, 0.7) 0%, rgba(11, 124, 185, 0.7) 100%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.5rem;
  border-radius: 8px;
  width: 62%;
}
.top__contents__dl > a > dd .layer__message_sp > .message__inner > p {
  color: #fff;
  font-size: 4.8vw;
  line-height: 1.3;
  font-weight: 300;
}
.top__contents__dl > a > dd .layer__message_sp > .message__inner > p.size__small {
  font-size: 4vw;
}
.top__contents__dl > a > dd .layer__message p {
  color: #fff;
  font-weight: 300;
  line-height: 1.4;
  -webkit-filter: blur(3px);
          filter: blur(3px);
  width: 85%;
  margin-inline: auto;
}
.top__contents__dl > a > dd .layer__message.size__large p {
  font-size: clamp(28px, 2.23vw + 0.8px, 36px);
}
.top__contents__dl > a > dd .layer__message.size__middle p {
  font-size: clamp(22px, 1.78vw + 0.5px, 28px);
}
.top__contents__dl > a > dd .layer__message.align__center {
  text-align: center;
}
.top__contents__dl > a > dd .layer__message.align__left {
  text-align: left;
}
.top__contents__dl > a > dd .layer__message.height__middle {
  height: 75%;
}
.top__contents__dl > a:hover > dd .layer__text > .btntext__clm > dd.dd__btn > .grad__border__top {
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  border: 2px solid transparent;
}
.top__contents__dl > a:hover > dd .layer__text > .btntext__clm > dd.dd__btn > .grad__border__top p {
  color: #fff;
}
.top__contents__dl > a:hover > dd .layer__text > .btntext__clm > dd.dd__btn > .grad__border__top::before {
  opacity: 0;
}
.top__contents__dl > a:hover > dd .layer__img img {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-filter: blur(3px);
          filter: blur(3px);
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .top__contents__dl > a:hover > dd .layer__img img {
    -webkit-transition: none;
    transition: none;
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
.top__contents__dl > a:hover > dd .layer__message {
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .top__contents__dl > a:hover > dd .layer__message {
    -webkit-transition: none;
    transition: none;
  }
}
.top__contents__dl > a:hover > dd .layer__message p {
  -webkit-filter: blur(0);
          filter: blur(0);
}
.top__accordion {
  margin-top: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .top__accordion {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top__accordion {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.top__accordion.accordion__open {
  gap: 1px;
}
@media screen and (max-width: 767px) {
  .top__accordion.accordion__open {
    gap: 15px;
  }
}
.top__accordion > .accordion__element {
  border-radius: 15px;
  height: 580px;
  overflow: hidden;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .top__accordion > .accordion__element {
    height: auto;
  }
}
.top__accordion > .accordion__element.element__active {
  -webkit-box-flex: 13;
  -webkit-flex-grow: 13;
      -ms-flex-positive: 13;
          flex-grow: 13;
  position: relative;
}
.top__accordion > .accordion__element.element__active .element__linklist {
  display: inherit;
  height: calc(100% - 6px);
}
.top__accordion > .accordion__element.element__active > .element__inner {
  grid-template-rows: 1fr;
  position: relative;
}
.top__accordion > .accordion__element.element__active > .element__inner > dd.element__name {
  padding-bottom: 0;
}
.top__accordion > .accordion__element.element__active > .element__inner > dd.element__name > .element__name__txt {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% - 30px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__accordion > .accordion__element.element__active > .element__inner > dd.element__name > .element__name__txt {
    width: 85%;
  }
}
.top__accordion > .accordion__element.element__active > .element__inner > dd.element__name > .element__name__txt p {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  white-space: nowrap;
  position: absolute;
  left: 4rem;
}
@media screen and (max-width: 767px) {
  .top__accordion > .accordion__element.element__active > .element__inner > dd.element__name > .element__name__txt p {
    -webkit-transform: none;
            transform: none;
    left: 0;
    position: relative;
  }
}
.top__accordion > .accordion__element.element__active > .element__inner > dd.element__name > .element__name__txt p::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .top__accordion > .accordion__element.element__active > .element__inner > dd.element__name > .element__name__txt p::after {
    display: inherit;
    content: "\e15b";
    right: -2.3rem;
    top: 0;
  }
}
.top__accordion > .accordion__element.element__active > .element__inner > dd.element__name > .element__name__txt p br {
  display: none;
}
.top__accordion > .accordion__element.element__active > .element__inner > dd.element__img {
  display: none;
}
.top__accordion > .accordion__element.element__passive > .element__inner > dd.element__name > .element__name__txt {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__accordion > .accordion__element.element__passive > .element__inner > dd.element__name > .element__name__txt {
    width: 85%;
  }
}
.top__accordion > .accordion__element.element__passive > .element__inner > dd.element__name > .element__name__txt p {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  white-space: nowrap;
  position: absolute;
  left: 5.5rem;
}
@media screen and (max-width: 767px) {
  .top__accordion > .accordion__element.element__passive > .element__inner > dd.element__name > .element__name__txt p {
    -webkit-transform: none;
            transform: none;
    position: static;
    left: 0;
  }
}
.top__accordion > .accordion__element.element__passive > .element__inner > dd.element__name > .element__name__txt p::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .top__accordion > .accordion__element.element__passive > .element__inner > dd.element__name > .element__name__txt p::after {
    display: inherit;
    right: -2.3rem;
    top: 3rem;
  }
}
.top__accordion > .accordion__element.element__passive > .element__inner > dd.element__name > .element__name__txt p br {
  display: none;
}
.top__accordion > .accordion__element.element__passive > .element__inner > dd.element__img {
  display: none;
}
.top__accordion > .accordion__element > .element__inner {
  height: 100%;
  display: grid;
  grid-template-rows: 1fr 1.5fr;
}
@media screen and (max-width: 767px) {
  .top__accordion > .accordion__element > .element__inner {
    grid-template-rows: 1fr;
  }
}
.top__accordion > .accordion__element > .element__inner.element__message {
  background-color: #5f9939;
}
.top__accordion > .accordion__element > .element__inner.element__story {
  background-color: #4dab6e;
}
.top__accordion > .accordion__element > .element__inner.element__business {
  background-color: #849d30;
}
.top__accordion > .accordion__element > .element__inner.element__governance {
  background-color: #4aa6b6;
}
.top__accordion > .accordion__element > .element__inner.element__other {
  background-color: #788D91;
}
.top__accordion > .accordion__element > .element__inner > dd.element__name {
  padding-top: 2rem;
  padding-bottom: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__accordion > .accordion__element > .element__inner > dd.element__name {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.top__accordion > .accordion__element > .element__inner > dd.element__name > .element__name__txt {
  width: 85%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .top__accordion > .accordion__element > .element__inner > dd.element__name > .element__name__txt {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.top__accordion > .accordion__element > .element__inner > dd.element__name > .element__name__txt p {
  font-family: "Geologica", sans-serif;
  color: #fff;
  font-size: clamp(20px, 0.4vw + 20px, 25px);
  font-weight: 300;
  line-height: 1.5;
  font-weight: 200;
}
@media screen and (max-width: 767px) {
  .top__accordion > .accordion__element > .element__inner > dd.element__name > .element__name__txt p > br {
    display: none;
  }
}
.top__accordion > .accordion__element > .element__inner > dd.element__name > .element__name__txt p::after {
  font-family: "Material Icons";
  content: "\e145";
  position: absolute;
  right: 10px;
  bottom: 10px;
  line-height: 1.2;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .top__accordion > .accordion__element > .element__inner > dd.element__name > .element__name__txt p::after {
    bottom: auto;
    top: auto;
    -webkit-transform: translateY(-16%);
            transform: translateY(-16%);
  }
}
.top__accordion > .accordion__element > .element__inner > dd.element__img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .top__accordion > .accordion__element > .element__inner > dd.element__img {
    display: none;
  }
}
.top__accordion > .accordion__element > .element__inner > dd.element__img.img__message {
  background-image: url("/investors/results/integrated_report/report/2025/img/elements_ph-message.jpg");
}
.top__accordion > .accordion__element > .element__inner > dd.element__img.img__story {
  background-image: url("/investors/results/integrated_report/report/2025/img/elements_ph-story.jpg");
}
.top__accordion > .accordion__element > .element__inner > dd.element__img.img__business {
  background-image: url("/investors/results/integrated_report/report/2025/img/elements_ph-business.jpg");
}
.top__accordion > .accordion__element > .element__inner > dd.element__img.img__governance {
  background-image: url("/investors/results/integrated_report/report/2025/img/elements_ph-governance.jpg");
}
.top__accordion > .accordion__element > .element__inner > dd.element__img.img__other {
  background-image: url("/investors/results/integrated_report/report/2025/img/elements_ph-other.jpg");
}
.top__accordion > .accordion__element > .element__inner > dd.element__img > div {
  width: 100%;
  height: 100%;
  max-height: 250px;
  opacity: 0.5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  box-sizing: border-box;
  background-color: red;
  display: none;
}
.top__accordion > .accordion__element > .element__inner > dd.element__img > div img {
  height: 100%;
  -webkit-filter: scale(1.05);
          filter: scale(1.05);
}
.top__accordion > .accordion__element > .element__header_grad {
  width: 100%;
  height: 6px;
  font-size: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#29f19c), to(#02a1f9));
  background: -webkit-linear-gradient(left, #29f19c 0%, #02a1f9 100%);
  background: linear-gradient(to right, #29f19c 0%, #02a1f9 100%);
}
.top__accordion > .accordion__element .element__linklist {
  width: calc(100% - 70px);
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3rem 5rem;
  display: none;
  border-radius: 15px 0 0 15px;
}
@media screen and (max-width: 767px) {
  .top__accordion > .accordion__element .element__linklist {
    display: none;
    width: 100%;
    position: static;
    border-radius: 15px;
    padding: 2rem;
  }
}
.top__accordion > .accordion__element .element__linklist > ul {
  width: 100%;
}
.top__accordion > .accordion__element .element__linklist > ul > li > a {
  display: block;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1rem 1rem;
  position: relative;
}
.top__accordion > .accordion__element .element__linklist > ul > li > a::after {
  font-family: "Material Icons";
  content: "\e5c8";
  position: absolute;
  right: 10px;
  line-height: 1.2;
}
.top__accordion > .accordion__element .element__linklist > ul > li > a:link, .top__accordion > .accordion__element .element__linklist > ul > li > a:visited {
  color: #033824;
}
.top__accordion > .accordion__element .element__linklist > ul > li > a:hover {
  color: #00999D;
}
.top__accordion > .accordion__element .element__linklist > ul > li > ul {
  margin-left: 4rem;
}
@media screen and (max-width: 767px) {
  .top__accordion > .accordion__element .element__linklist > ul > li > ul {
    margin-left: 1rem;
  }
}
.top__accordion > .accordion__element .element__linklist > ul > li > ul > li > a {
  display: block;
  font-size: clamp(13px, 0.16vw + 14px, 15px);
  text-decoration: none;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .top__accordion > .accordion__element .element__linklist > ul > li > ul > li > a {
    font-size: 13px;
  }
}
.top__accordion > .accordion__element .element__linklist > ul > li + li {
  border-top: 1px solid #033824;
}
.top__link_btn2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .top__link_btn2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.top__link_btn2 > .btn2__block > a {
  text-decoration: none;
  display: block;
  font-size: 27px;
  line-height: 1.4;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4rem 4rem;
  border-radius: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__link_btn2 > .btn2__block > a {
    font-size: 20px;
    padding: 2rem 3rem;
  }
}
.top__link_btn2 > .btn2__block > a.link__purpose {
  background-image: url("/investors/results/integrated_report/report/2025/img/top_link-purpose.png");
  background-repeat: no-repeat;
  background-size: 300px;
  background-position: center right;
}
.top__link_btn2 > .btn2__block > a.link__philosophy {
  background-image: url("/investors/results/integrated_report/report/2025/img/top_link-philosophy.svg");
  background-repeat: no-repeat;
  background-size: 200px;
  background-position: center right;
}
.top__link_btn2 > .btn2__block > a:link, .top__link_btn2 > .btn2__block > a:visited {
  color: #05A173;
  border: 2px solid #05A173;
  -webkit-box-shadow: 0 3px 4px rgba(24, 132, 85, 0.45);
          box-shadow: 0 3px 4px rgba(24, 132, 85, 0.45);
  -webkit-transition: all 0.45s ease-out;
  transition: all 0.45s ease-out;
}
.top__link_btn2 > .btn2__block > a:hover {
  background-color: #05A173;
  color: #fff;
  border: 2px solid #fff;
  -webkit-transition: all 0.45s ease-out;
  transition: all 0.45s ease-out;
  background-image: none;
}
.top__link_btn2 > .btn2__block > a:hover::before {
  font-family: "Material Icons";
  content: "\e5c8";
  position: absolute;
  right: 2rem;
  line-height: 1.4;
}
.top__link_btn2 + h2 {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .top__link_btn2 + h2 {
    margin-top: 50px;
  }
}

.common__contents {
  background-image: url("/investors/results/integrated_report/report/2025/cat_assets/img/common_title_bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
}
.common__contents.bg__none {
  background-image: none;
}
@media screen and (max-width: 767px) {
  .common__contents {
    padding-top: 3rem;
    background-size: 200% auto;
  }
}
.common__contents p a:link, .common__contents p a:visited {
  color: inherit;
}
.common__contents p a:hover {
  color: #05A173;
}
.common__title {
  width: 100%;
}
.common__title.only__txt + section {
  margin-top: 0;
}
.common__title h1 {
  font-size: clamp(28px, 2.07vw + 28px, 54px);
  color: #033824;
}
@media screen and (max-width: 767px) {
  .common__title h1 {
    font-size: 28px;
  }
}
.common__title h1 .en {
  font-family: "Geologica", sans-serif;
  color: #033824;
  font-weight: 200;
}
@media screen and (max-width: 767px) {
  .common__title h1 .h1_sub {
    font-size: clamp(14px, 0.32vw + 14px, 18px);
  }
}
.common__title h1 .sub__txt {
  font-size: 18px;
  margin-left: 1em;
}
.common__title .title__message {
  color: #033824;
  font-size: clamp(13px, 1.35vw + 15px, 32px);
  line-height: 1.4;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .common__title .title__message {
    font-size: 17px;
  }
}
.common__title .title__message.txt__small {
  font-size: clamp(12px, 1.35vw + 12px, 27px);
}
@media screen and (max-width: 767px) {
  .common__title .title__message.txt__small {
    font-size: 15px;
    line-height: 1.3;
  }
}
.common__title .title__message.title__message_cso {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .common__title .title__message.title__message_cso {
    font-size: 12px;
  }
}
.common__title__inner {
  width: 95%;
  max-width: 1258px;
  margin-inline: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.common__title__inner.purpose__title {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .common__title__inner.purpose__title {
    margin-top: 30px;
  }
}
.common__title__inner.purpose__title h1 {
  text-align: center;
  font-size: clamp(20px, 0.79vw + 20px, 30px);
  line-height: 1.4;
}
.common__title__inner > .title__clm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 40px;
  margin-inline: auto;
  max-width: 85%;
}
@media screen and (max-width: 767px) {
  .common__title__inner > .title__clm {
    gap: 15px;
  }
}
.common__title__inner > .title__clm > .dd__img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  .common__title__inner > .title__clm > .dd__img {
    max-width: 150px;
  }
}
.common__title__inner > .title__clm > .dd__img img {
  width: 100%;
}
.common__title__inner > .title__clm > .dd__txt {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .common__title__inner > .title__clm > .dd__txt {
    grid-template-rows: 1fr auto 1fr;
    gap: 10px;
  }
}
.common__title__inner > .title__clm > .dd__txt .div__title_message p {
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.common__title__inner > .title__clm > .dd__txt .name__class {
  font-size: clamp(11px, 0.56vw + 11px, 18px);
  line-height: 1.3;
  color: #033824;
}
@media screen and (max-width: 767px) {
  .common__title__inner > .title__clm > .dd__txt .name__class {
    font-size: 11px;
  }
}
.common__title__inner > .title__clm > .dd__txt .name__class + p {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .common__title__inner > .title__clm > .dd__txt .name__class + p {
    margin-top: 5px;
  }
}
.common__title__inner > .title__clm > .dd__txt .name__officername {
  font-size: clamp(13px, 0.87vw + 13px, 24px);
  line-height: 1.3;
  font-weight: 500;
  color: #033824;
}
.common__title__inner > .title__clm > .dd__txt .name__officername + p {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .common__title__inner > .title__clm > .dd__txt .name__officername + p {
    margin-top: 5px;
  }
}
.common__title__inner > .title__clm > .dd__txt.no_message {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 200px;
}
.common__title__inner > .title__clm > .dd__txt.no_message > div {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}
.common__title__inner > .title__clm > .dd__txt.no_message > div h1 + div {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .common__title__inner > .title__clm > .dd__txt.no_message > div h1 + div {
    margin-top: 15px;
  }
}
.common__title__inner > .title__clm > .dd__txt > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
.common__title__inner > .title__clm > .dd__txt > div.name__clm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .common__title__inner > .title__clm > .dd__txt > div.name__clm {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.common__title__inner > .title__clm > .dd__txt > div.name__clm div {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.common__title__inner > .title__clm > .dd__txt > div.name__clm div img {
  width: 100%;
  max-width: 265px;
}
@media screen and (max-width: 767px) {
  .common__title__inner > .title__clm > .dd__txt > div.name__clm div img {
    max-width: 85px;
  }
}
.common__title__inner.no__clm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 300px;
}
@media screen and (max-width: 767px) {
  .common__title__inner.no__clm {
    min-height: 150px;
  }
}
.common__title__inner.no__clm h1 {
  text-align: center;
  line-height: 1.4;
}
.common__title__inner > .common__imgtitle h1 img {
  width: 100%;
  border-radius: 15px;
}
.common__title__inner > .common__imgtitle h1 > .sp__titlecopy {
  display: none;
  width: 90%;
  margin-inline: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .common__title__inner > .common__imgtitle h1 > .sp__titlecopy {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .common__title__inner > .common__imgtitle h1 > .sp__titlecopy {
    display: block;
  }
  .common__title__inner > .common__imgtitle h1 > .sp__titlecopy > .discussion_title {
    color: #111;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
  }
  .common__title__inner > .common__imgtitle h1 > .sp__titlecopy > .dialogue_title {
    color: #008e64;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .common__title__inner > .common__imgtitle h1 > .sp__titlecopy > .dialogue_title {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .common__title__inner > .common__imgtitle h1 > .sp__titlecopy > .dialogue_title__sub {
    color: #008e64;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
  }
}
.common__title__anchorlink {
  width: 95%;
  max-width: 1258px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 9fr;
  gap: 25px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .common__title__anchorlink {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .common__title__anchorlink {
    display: none;
  }
}
.common__title__anchorlink > .anchor__midashi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.common__title__anchorlink > .anchor__midashi > div {
  background-color: #05A173;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.2em 7px;
}
.common__title__anchorlink > .anchor__midashi > div > p {
  font-family: "Geologica", sans-serif;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}
.common__title__anchorlink > .anchor__linklist {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.common__title__anchorlink > .anchor__linklist p a {
  display: block;
  text-decoration: none;
  border-bottom: 1px dotted #033824;
  padding: 0.2rem 2.5rem 0.2rem 0;
  position: relative;
  font-size: clamp(12px, 0.16vw + 12px, 14px);
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
}
.common__title__anchorlink > .anchor__linklist p a:link, .common__title__anchorlink > .anchor__linklist p a:visited {
  color: #033824;
}
.common__title__anchorlink > .anchor__linklist p a:hover {
  color: #05A173;
}
.common__title__anchorlink > .anchor__linklist p a::after {
  font-family: "Material Icons";
  content: "\e5db";
  position: absolute;
  font-size: clamp(16px, 0.32vw + 16px, 20px);
  font-weight: 500;
  right: 0;
  line-height: 1.2;
  color: #05A173;
}
.common__title__anchorlink > .anchor__linklist p + .linklist__child {
  margin-top: 5px;
}
.common__title__anchorlink > .anchor__linklist dl {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px 20px;
}
.common__title__anchorlink > .anchor__linklist dl.linklist__child {
  width: 97%;
  margin-left: auto;
  margin-right: 0;
}
.common__title__anchorlink > .anchor__linklist dl.linklist__child + p {
  margin-top: 8px;
}
.common__title__anchorlink > .anchor__linklist dl > dd {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.common__title__anchorlink > .anchor__linklist dl > dd > a {
  display: block;
  text-decoration: none;
  border-bottom: 1px dotted #033824;
  padding: 0.2rem 2.5rem 0.2rem 0;
  position: relative;
  font-size: clamp(12px, 0.16vw + 12px, 14px);
  overflow: hidden;
  text-overflow: ellipsis;
}
.common__title__anchorlink > .anchor__linklist dl > dd > a:link, .common__title__anchorlink > .anchor__linklist dl > dd > a:visited {
  color: #033824;
}
.common__title__anchorlink > .anchor__linklist dl > dd > a:hover {
  color: #05A173;
}
.common__title__anchorlink > .anchor__linklist dl > dd > a::after {
  font-family: "Material Icons";
  content: "\e5db";
  position: absolute;
  font-size: clamp(16px, 0.32vw + 16px, 20px);
  font-weight: 500;
  right: 0;
  line-height: 1.2;
  color: #05A173;
}
.common__title + .common__body__message_ceo {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .common__title + .common__body__message_ceo {
    margin-top: 30px;
  }
}
.common__body {
  margin-top: 100px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .common__body {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .common__body {
    width: 90%;
    margin-inline: auto;
  }
}
.common__body h2 {
  font-size: clamp(21px, 0.87vw + 21px, 32px);
  font-weight: 500;
  line-height: 1.4;
  background-color: var(--category-color);
  color: #fff;
  width: 95%;
  max-width: 1258px;
  margin-inline: auto;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1rem 1rem 1.2rem;
}
@media screen and (max-width: 767px) {
  .common__body h2 {
    text-align: left;
    font-size: 2.3rem;
  }
}
.common__body h2 + .common__accordion {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .common__body h2 + .common__accordion {
    margin-top: 30px;
  }
}
.common__body h2.philosophy__h2, .common__body h2.control_sys__h2 {
  background-color: transparent;
  text-align: left;
  padding: 0;
  color: var(--category-color);
  font-size: clamp(19px, 0.87vw + 21px, 28px);
  line-height: 1.4;
}
.common__body h2.h2__nobg {
  background-color: transparent;
  color: var(--category-color);
  text-align: left;
  padding: 0;
}
.common__body h2.color__gray {
  color: #596e72;
}
.common__body h2.bg_color__domain_tobacco {
  background-color: #17825c;
}
.common__body h2.bg_color__domain_processfood {
  background-color: #ec8427;
}
.common__body h2.capital__h2 {
  width: 100%;
  background-color: transparent;
  text-align: left;
  padding: 0;
  color: #596e72;
}
.common__body h2.directors__h2 {
  width: 100%;
  text-align: left;
  color: #444;
  padding: 0;
  background-color: transparent;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .common__body h2.directors__h2 {
    font-size: 16px;
  }
}
.common__body h2.directors__h2 > .sub__txt {
  font-size: 16px;
  margin-left: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .common__body h2.directors__h2 > .sub__txt {
    font-size: 13px;
    margin-left: 0;
  }
}
.common__body p + h3, .common__body p + h4, .common__body p + h5 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .common__body p + h3, .common__body p + h4, .common__body p + h5 {
    margin-top: 15px;
  }
}
.common__body dl.body__clm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .common__body dl.body__clm {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.common__body dl.body__clm > dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.common__body dl.body__clm > dd img {
  width: 100%;
  height: auto;
}
.common__body dl.body__clm > dd.flex1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.common__body dl.body__clm > dd.flex2 {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.common__body dl.body__clm > dd.flex3 {
  -webkit-box-flex: 3;
  -webkit-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.common__body dl.body__clm > dd.flex4 {
  -webkit-box-flex: 4;
  -webkit-flex: 4;
      -ms-flex: 4;
          flex: 4;
}
@media screen and (max-width: 767px) {
  .common__body dl.body__clm > dd.dlab__takeda {
    width: 70%;
    margin-inline: auto;
  }
}
.common__body__inner {
  width: 95%;
  max-width: 1258px;
  margin-inline: auto;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .common__body__inner {
    margin-top: 30px;
  }
}
.common__body__inner + .common__accordion {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .common__body__inner + .common__accordion {
    margin-top: 50px;
  }
}
.common__body__inner.bg__community {
  background-color: #edf3d9;
  border-radius: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
.common__body__inner.bg__community .bg__community__inner {
  padding: 2.5rem 2.5rem 4rem;
}
.common__body__inner > .common__accordion {
  width: 100% !important;
}
.common__body__inner + a.anchorpoint {
  margin-top: 100px;
  display: block;
}
@media screen and (max-width: 767px) {
  .common__body__inner + a.anchorpoint {
    margin-top: 50px;
  }
}
.common__body__inner h2 {
  font-weight: 500;
}
.common__body__inner h2.h2__nobg {
  background-color: transparent;
  color: var(--category-color);
  text-align: left;
  padding: 0;
  width: 100%;
}
.common__body__inner h2.h2__nobg + .contents__read {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .common__body__inner h2.h2__nobg + .contents__read {
    margin-top: 15px;
  }
}
.common__body__inner h2.color__gray {
  color: #596e72;
}
.common__body__inner h2.line__h2 {
  border-top: 1px solid #849d30;
  border-left: 10px solid var(--category-color);
  font-size: clamp(21px, 0.87vw + 21px, 32px);
  color: #444;
  padding: 1rem 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.4;
}
.common__body__inner h2.line__h2 + .txt__paragraph {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .common__body__inner h2.line__h2 + .txt__paragraph {
    margin-top: 15px;
  }
}
.common__body__inner h2.control_sys__h2 {
  border-top: 1px solid var(--category-color);
  border-left: 10px solid var(--category-color);
  font-size: 22px;
  color: #444;
  padding: 1rem 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.4;
  width: 100%;
}
.common__body__inner h2.control_sys__h2 + p, .common__body__inner h2.control_sys__h2 + div, .common__body__inner h2.control_sys__h2 + table, .common__body__inner h2.control_sys__h2 + ul, .common__body__inner h2.control_sys__h2 + ol, .common__body__inner h2.control_sys__h2 + dl, .common__body__inner h2.control_sys__h2 + h4, .common__body__inner h2.control_sys__h2 + h5 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .common__body__inner h2.control_sys__h2 + p, .common__body__inner h2.control_sys__h2 + div, .common__body__inner h2.control_sys__h2 + table, .common__body__inner h2.control_sys__h2 + ul, .common__body__inner h2.control_sys__h2 + ol, .common__body__inner h2.control_sys__h2 + dl, .common__body__inner h2.control_sys__h2 + h4, .common__body__inner h2.control_sys__h2 + h5 {
    margin-top: 15px;
  }
}
.common__body__inner h2.communityinvestment__h2 {
  color: #fff;
  background-color: #8bae32;
  width: 100%;
  font-size: x-large;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .common__body__inner h2.communityinvestment__h2 {
    font-size: large;
    text-align: center;
  }
}
.common__body__inner h3 {
  color: var(--category-color);
  font-size: clamp(19px, 0.87vw + 21px, 28px);
  line-height: 1.4;
  font-weight: 500;
}
.common__body__inner h3 + p, .common__body__inner h3 + div, .common__body__inner h3 + table, .common__body__inner h3 + ul, .common__body__inner h3 + ol, .common__body__inner h3 + dl, .common__body__inner h3 + h4, .common__body__inner h3 + h5 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .common__body__inner h3 + p, .common__body__inner h3 + div, .common__body__inner h3 + table, .common__body__inner h3 + ul, .common__body__inner h3 + ol, .common__body__inner h3 + dl, .common__body__inner h3 + h4, .common__body__inner h3 + h5 {
    margin-top: 15px;
  }
}
.common__body__inner h3 .h3__sub {
  color: transparent;
}
.common__body__inner h3.h3__black {
  color: #444;
}
.common__body__inner h3.link__h3 {
  background-color: var(--category-color);
  font-size: clamp(17px, 0.4vw + 17px, 22px);
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
.common__body__inner h3.control_sys__h3 {
  color: #009b96;
  font-size: clamp(14px, 0.4vw + 14px, 18px);
  line-height: 1.4;
}
.common__body__inner h3.skillmatrix__h3 {
  color: #111;
  font-size: clamp(17px, 0.4vw + 17px, 22px);
  line-height: 1.4;
  font-weight: 500;
}
.common__body__inner h3.pharmaceutical__h3 {
  color: #229eda;
}
.common__body__inner h3.law__h3 {
  color: #4aa6b6;
}
.common__body__inner h3.talent__h3 {
  color: #444 !important;
  border-top: 1px solid #05A173;
  border-left: 10px solid var(--category-color);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.3em 0.5em 0.2em;
}
.common__body__inner h4 {
  color: var(--category-color);
  font-size: clamp(17px, 0.4vw + 17px, 22px);
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .common__body__inner h4 {
    font-size: 15px;
  }
}
.common__body__inner h4.control_sys__h4 {
  color: #788D91;
  font-weight: 500;
  font-size: clamp(13px, 0.16vw + 13px, 15px);
}
@media screen and (max-width: 767px) {
  .common__body__inner h4.control_sys__h4 {
    font-size: 13px;
  }
}
.common__body__inner h4.skillmatrix__h4 {
  color: #788D91;
  font-weight: 500;
}
.common__body__inner h4.skillmatrix__h4 > .sub__txt {
  font-weight: 200;
  color: #333;
  font-size: 80%;
}
.common__body__inner h4.effort__h4 {
  color: #444 !important;
  border-top: 1px solid #05A173;
  border-left: 10px solid var(--category-color);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.3em 0.5em 0.2em;
}
.common__body__inner h4 + p, .common__body__inner h4 + div, .common__body__inner h4 + table, .common__body__inner h4 + ul, .common__body__inner h4 + ol, .common__body__inner h4 + dl, .common__body__inner h4 + h4, .common__body__inner h4 + h5 {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .common__body__inner h4 + p, .common__body__inner h4 + div, .common__body__inner h4 + table, .common__body__inner h4 + ul, .common__body__inner h4 + ol, .common__body__inner h4 + dl, .common__body__inner h4 + h4, .common__body__inner h4 + h5 {
    margin-top: 10px;
  }
}
.common__body__inner h5 {
  font-size: clamp(16px, 0.32vw + 16px, 20px);
  line-height: 1.6;
  color: var(--category-color);
  font-weight: 300;
}
.common__body__inner h5 + * {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .common__body__inner h5 + * {
    margin-top: 8px;
  }
}
.common__body__inner + .common__body__inner {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .common__body__inner + .common__body__inner {
    margin-top: 50px;
  }
}
.common__body .common__accordion {
  width: 95%;
  max-width: 1258px;
  margin-inline: auto;
}
.common__body .common__accordion h3 {
  color: #05A173;
  font-size: clamp(19px, 0.87vw + 21px, 28px);
  line-height: 1.4;
}
.common__body .common__accordion h3 + p, .common__body .common__accordion h3 + div, .common__body .common__accordion h3 + table, .common__body .common__accordion h3 + ul, .common__body .common__accordion h3 + ol, .common__body .common__accordion h3 + dl, .common__body .common__accordion h3 + h4, .common__body .common__accordion h3 + h5 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .common__body .common__accordion h3 + p, .common__body .common__accordion h3 + div, .common__body .common__accordion h3 + table, .common__body .common__accordion h3 + ul, .common__body .common__accordion h3 + ol, .common__body .common__accordion h3 + dl, .common__body .common__accordion h3 + h4, .common__body .common__accordion h3 + h5 {
    margin-top: 15px;
  }
}
.common__body .common__accordion h3 > .sub__txt {
  font-size: 70%;
  font-weight: 300;
  color: inherit;
}
.common__body .common__accordion h3 .h3__sub {
  color: transparent;
}
.common__body .common__accordion h3.h3__black {
  color: #444;
}
.common__body .common__accordion h3.ceo__h3 {
  color: #509032;
}
.common__body .common__accordion h3.cso__h3 {
  color: #509032;
}
.common__body .common__accordion h3.cfo__h3 {
  color: #509032;
}
.common__body .common__accordion h3.link__h3 {
  background-color: var(--category-color);
  font-size: clamp(17px, 0.4vw + 17px, 22px);
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
.common__body .common__accordion h3.control_sys__h3 {
  color: #009b96;
  font-size: clamp(17px, 0.4vw + 17px, 20px);
  line-height: 1.4;
}
.common__body .common__accordion h3.skillmatrix__h3 {
  color: #111;
  font-size: clamp(17px, 0.4vw + 17px, 22px);
  line-height: 1.4;
  font-weight: 500;
}
.common__body .common__accordion h3.pharmaceutical__h3 {
  color: #229eda;
}
.common__body .common__accordion h3.law__h3 {
  color: #4aa6b6;
}
.common__body .common__accordion h3.dialogue__question {
  position: relative;
  z-index: 1;
  color: #008e64;
}
@media screen and (max-width: 767px) {
  .common__body .common__accordion h3.dialogue__question {
    font-size: 15px;
  }
}
.common__body .common__accordion h3.dialogue__question::before {
  content: " ";
  width: 100px;
  height: 100px;
  background-image: url("/investors/results/integrated_report/report/2025/message/dialogue/img/q_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  font-style: italic;
  line-height: 1.2;
  font-family: "Geologica", sans-serif;
  font-size: 90px;
  position: absolute;
  z-index: -1;
  color: #d2ede1;
  pointer-events: none;
  top: -25px;
  left: -45px;
}
@media screen and (max-width: 767px) {
  .common__body .common__accordion h3.dialogue__question::before {
    width: 55px;
    height: 55px;
    top: 0;
    left: 0;
  }
}
.common__body .common__accordion h3.discussion__h3 {
  border-bottom: 1px solid #05A173;
  padding-bottom: 0.2em;
}
.common__body .common__accordion h3.corp_gov__h3 {
  color: #444 !important;
  border-top: 1px solid var(--category-color);
  border-left: 10px solid var(--category-color);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.3em 0.5em 0.2em;
  font-size: 22px;
  font-weight: 500;
}
.common__body .common__accordion h3.corp_gov__h3__small {
  margin-top: 60px;
  padding: 0;
  border: 0;
  font-size: 18px;
  color: #444;
}
@media screen and (max-width: 767px) {
  .common__body .common__accordion h3.corp_gov__h3__small {
    margin-top: 30px;
  }
}
.common__body .common__accordion h3.corp_gov__h3__small::before {
  content: "●";
  color: #009b96;
  font-size: 40%;
  margin-right: 0.7em;
  margin-left: 0.3em;
  vertical-align: middle;
}
.common__body .common__accordion h3.capital__h3 {
  color: #111;
  border-top: 1px solid var(--category-color);
  border-left: 10px solid var(--category-color);
  padding: 0.3em 0.5em 0.2em;
  font-size: 22px;
}
.common__body .common__accordion h4 {
  color: var(--category-color);
  font-size: clamp(17px, 0.4vw + 17px, 22px);
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .common__body .common__accordion h4 {
    font-size: 15px;
  }
}
.common__body .common__accordion h4 + p, .common__body .common__accordion h4 + div, .common__body .common__accordion h4 + table, .common__body .common__accordion h4 + ul, .common__body .common__accordion h4 + ol, .common__body .common__accordion h4 + dl, .common__body .common__accordion h4 + h4, .common__body .common__accordion h4 + h5 {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .common__body .common__accordion h4 + p, .common__body .common__accordion h4 + div, .common__body .common__accordion h4 + table, .common__body .common__accordion h4 + ul, .common__body .common__accordion h4 + ol, .common__body .common__accordion h4 + dl, .common__body .common__accordion h4 + h4, .common__body .common__accordion h4 + h5 {
    margin-top: 10px;
  }
}
.common__body .common__accordion h4.ceo__h4 {
  color: #333;
  font-weight: 500;
}
.common__body .common__accordion h4.ceo__h4::before {
  content: "■";
  margin-right: 0.3em;
}
.common__body .common__accordion h4.law__h4 {
  color: #05A173;
  font-weight: 500;
  border-bottom: 1px solid #05A173;
  padding-bottom: 5px;
}
.common__body .common__accordion .category__kakomi .ceo__message__theme6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 8px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .common__body .common__accordion .category__kakomi .ceo__message__theme6 {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .common__body .common__accordion .category__kakomi .ceo__message__theme6 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.common__body .common__accordion .category__kakomi .ceo__message__theme6 > dd {
  border: 2px solid var(--category-color);
  text-align: center;
  color: #444;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1rem 1.5rem;
  background-color: #fff;
  font-size: clamp(16px, 0.64vw + 16px, 20px);
}
.common__body .common__accordion .common__contentsblock__indent {
  margin-left: 3.5em;
}
.common__body .common__accordion + .common__accordion {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .common__body .common__accordion + .common__accordion {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .common__body .common__accordion.accordion__close {
    max-height: 360px;
    overflow: hidden;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .common__body .common__accordion.accordion__close > .common__accordion__state {
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 15rem;
    padding-top: 2rem;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, #ffffff));
    background: -webkit-linear-gradient(top, transparent 0%, #ffffff 70%);
    background: linear-gradient(to bottom, transparent 0%, #ffffff 70%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .common__body .common__accordion.accordion__close > .common__accordion__state.accordion__bggreen {
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, #eef3da));
    background: -webkit-linear-gradient(top, transparent 0%, #eef3da 70%);
    background: linear-gradient(to bottom, transparent 0%, #eef3da 70%);
  }
}
.common__body .common__accordion > .common__accordion__state {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 40px;
  display: none;
}
@media screen and (max-width: 767px) {
  .common__body .common__accordion > .common__accordion__state {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .common__body .common__accordion > .common__accordion__state {
    display: inherit;
  }
}
.common__body .common__accordion > .common__accordion__state ul {
  width: 100%;
  text-align: center;
}
.common__body .common__accordion > .common__accordion__state ul li img {
  max-width: 50px;
  width: 20%;
  height: auto;
}
.common__body .common__accordion > .common__accordion__state ul li.state__close {
  display: inherit;
}
.common__body .common__accordion > .common__accordion__state ul li.state__open {
  display: none;
}
.common__body .common__accordion > .common__accordion__state.close ul li.state__close {
  display: none;
}
.common__body .common__accordion > .common__accordion__state.close ul li.state__open {
  display: inherit;
}
.common__body .common__accordion + h2 {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .common__body .common__accordion + h2 {
    margin-top: 50px;
  }
}
.common__body .common__accordion + .hr--solid {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .common__body .common__accordion + .hr--solid {
    margin-top: 30px;
  }
}
@-webkit-keyframes purposeAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes purposeAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.common__body .process__purpose {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.common__body .process__purpose h2 {
  background-color: transparent;
  text-align: left;
  font-size: 45px;
  color: rgb(0, 174, 104);
  font-weight: 300;
  padding-left: 0;
  width: 100%;
  white-space: nowrap;
  font-family: "Geologica", sans-serif;
  -webkit-animation-name: purposeAnime;
          animation-name: purposeAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .common__body .process__purpose h2 {
    font-size: 28px;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
.common__body .process__purpose h2 + .process__purpose__block {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .common__body .process__purpose h2 + .process__purpose__block {
    margin-top: 25px;
  }
}
.common__body .process__purpose .process__purpose__block {
  -webkit-animation-name: purposeAnime;
          animation-name: purposeAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
.common__body .process__purpose .process__purpose__block:nth-of-type(1) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.common__body .process__purpose .process__purpose__block:nth-of-type(2) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.common__body .process__purpose .process__purpose__block:nth-of-type(3) {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}
.common__body .process__purpose .process__purpose__block:nth-of-type(4) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
.common__body .process__purpose .process__purpose__block:nth-of-type(5) {
  -webkit-animation-delay: 7.5s;
          animation-delay: 7.5s;
}
.common__body .process__purpose .process__purpose__block p {
  color: #4dab6e;
  font-size: clamp(14px, 0.24vw + 15px, 18px);
  font-weight: 300;
  text-align: left;
  color: rgb(0, 174, 104);
  font-family: "Geologica", sans-serif;
  white-space: normal;
}
@media screen and (max-width: 767px) {
  .common__body .process__purpose .process__purpose__block p {
    font-size: 1.25rem;
  }
}
.common__body .process__purpose .process__purpose__block + .process__purpose__block {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .common__body .process__purpose .process__purpose__block + .process__purpose__block {
    margin-top: 15px;
  }
}
.common__body .purpose__inner {
  position: relative;
  width: 100%;
  max-width: 1258px;
  margin-inline: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.common__body .purpose__inner .purpose__layer1 {
  position: relative;
  z-index: 11;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .common__body .purpose__inner .purpose__layer1 {
    width: 100%;
    margin-inline: auto;
  }
}
.common__body .philosophy__clm {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .common__body .philosophy__clm {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.common__body .philosophy__4s {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .common__body .philosophy__4s {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .common__body .philosophy__4s {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.common__body .philosophy__4s > dd {
  gap: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .common__body .philosophy__4s > dd {
    grid-template-columns: 2fr 1fr;
  }
}
.common__body .philosophy__4s > dd > .factor__title {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px dashed #788D91;
  position: relative;
}
@media screen and (max-width: 767px) {
  .common__body .philosophy__4s > dd > .factor__title {
    grid-column: span 2;
  }
}
.common__body .philosophy__4s > dd > .factor__title > h3 {
  width: 100%;
  color: #788D91;
  font-size: clamp(15px, 0.48vw + 15px, 20px);
  text-align: left;
  padding: 1rem 0;
  white-space: nowrap;
}
.common__body .philosophy__4s > dd > .factor__title > .factor__img {
  position: absolute;
  display: block;
  width: 140px;
  bottom: -5px;
  right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.8em;
  background-color: #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .common__body .philosophy__4s > dd > .factor__title > .factor__img {
    width: 100px;
    padding: 0.4em;
  }
}
.common__body .philosophy__4s > dd > .factor__title > .factor__img img {
  width: 100%;
  height: auto;
}
.common__body .philosophy__4s > dd > .factor__txt {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .common__body .philosophy__4s > dd > .factor__txt {
    margin-top: 8px;
  }
}

.link__ir_top {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .link__ir_top {
    margin-top: 50px;
  }
}
.link__ir_top a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 1.2rem 5.5rem 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  border-radius: 40px; /* ← 任意の角丸指定 */
  position: relative;
  text-decoration: none;
}
.link__ir_top a p {
  text-align: center;
  font-size: clamp(14px, 0.16vw + 14px, 16px);
  font-weight: 500;
  white-space: nowrap;
}
.link__ir_top a:link, .link__ir_top a:visited {
  background-color: #fff;
  border: 2px solid #05A173;
}
.link__ir_top a:link p::after, .link__ir_top a:visited p::after {
  font-family: "Material Icons";
  content: "\e5c4";
  position: absolute;
  font-size: clamp(16px, 0.32vw + 16px, 20px);
  font-weight: 300;
  top: 1.7rem;
  left: 15px;
  line-height: 1.2;
}
.link__ir_top a:hover {
  background: -webkit-gradient(linear, left top, right top, from(#29f19c), to(#02a1f9));
  background: -webkit-linear-gradient(left, #29f19c 0%, #02a1f9 100%);
  background: linear-gradient(to right, #29f19c 0%, #02a1f9 100%);
  border: 2px solid #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.link__ir_top a:hover p {
  color: #fff;
}
.link__ir_top a:hover p::after {
  color: #fff;
}

div[data-config*="sitemap.html"] {
  display: inherit;
}

.report2025__sitemap {
  width: 100%;
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  z-index: 100001;
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(194, 209, 203, 0.98);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.report2025__sitemap.open {
  opacity: 1;
  visibility: visible;
}
.report2025__sitemap .sitemap_inner {
  display: block !important;
}
.report2025__sitemap .btn-close {
  display: block !important;
}
.report2025__sitemap .btn-open {
  display: none;
}
.report2025__sitemap .sitemap-close {
  cursor: pointer;
}
.report2025__sitemap .btn-close {
  width: 154px;
  position: absolute;
  right: 1em;
  bottom: 2em;
  display: none;
}
.report2025__sitemap .btn-close img {
  width: 100%;
  height: auto;
}
.report2025__sitemap__opener {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  right: 0;
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .report2025__sitemap__opener {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .report2025__sitemap__opener {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .report2025__sitemap__opener {
    -webkit-transform: translateX(calc(1.85% + 1px));
            transform: translateX(calc(1.85% + 1px));
  }
}
.report2025__sitemap__opener.is-floating {
  position: fixed;
  left: unset;
  width: 100%;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 1025px) {
  .report2025__sitemap__opener.is-floating {
    right: calc((100% - 50px) * 0.185);
    padding-right: 58px;
  }
}
.report2025__sitemap__opener .sitemap-opener {
  cursor: pointer;
  position: relative;
  bottom: 0;
  top: -52.57px;
}
.report2025__sitemap__opener .sitemap-opener img {
  width: 80px;
  height: auto;
}
.report2025__sitemap .btn-open {
  width: 154px;
  position: absolute;
  right: 1em;
  bottom: 2em;
  display: block;
}
.report2025__sitemap .btn-open img {
  width: 100%;
  height: auto;
}
.report2025__sitemap .sitemap_inner {
  width: 95%;
  max-width: 1258px;
  margin-inline: auto;
  padding: 4em 0 8em;
  display: none;
}
@media screen and (max-width: 767px) {
  .report2025__sitemap .sitemap_inner {
    width: 100%;
  }
}
.report2025__sitemap .sitemap_inner .sitemap__link_library {
  width: 100%;
  border-bottom: 2px solid #05A173;
  padding-bottom: 2em;
}
.report2025__sitemap .sitemap_inner .sitemap__link_library a {
  text-decoration: none;
  font-weight: 500;
}
.report2025__sitemap .sitemap_inner .sitemap__link_library a::before {
  display: inline-block;
  content: "";
  width: 23px;
  height: 23px;
  margin-right: 0.4em;
  background-image: url("/investors/results/integrated_report/report/2025/cat_assets/img/ic-circle_arr.svg");
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: bottom;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.report2025__sitemap .sitemap_inner .sitemap__link_library + .sitemap__clm {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .report2025__sitemap .sitemap_inner .sitemap__link_library + .sitemap__clm {
    margin-top: 25px;
  }
}
.report2025__sitemap .sitemap_inner .sitemap__clm {
  display: grid;
  grid-template-columns: 1fr 6fr;
  gap: 40px;
}
.report2025__sitemap .sitemap_inner .sitemap__clm--logo img {
  width: 100%;
  height: auto;
}
.report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl {
  width: 100%;
  display: grid;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}
.report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd.space2 {
  grid-column: span 2; /* 2つのグリッド列にまたがる */
}
.report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd > h3 {
  text-align: center;
  color: #fff;
  background-color: var(--category-color);
  padding: 0.3em 1em 0.4em;
  font-size: clamp(14px, 0.24vw + 14px, 17px);
  line-height: 1.2;
}
.report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd > h3.h3__pharmaceutical {
  background-color: #229eda;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd > h3.h3__pharmaceutical {
    margin-top: 15px;
  }
}
.report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd > h3 + ul, .report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd > h3 + dl {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd > h3 + ul, .report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd > h3 + dl {
    margin-top: 8px;
  }
}
.report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd > .sitemap__storyclm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 90%;
  margin-inline: auto;
}
.report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd .sitemap__linklist {
  width: 90%;
  margin-inline: auto;
}
.report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd .sitemap__linklist.story__list {
  width: 100%;
}
.report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd .sitemap__linklist > li > a {
  text-decoration: none;
  display: block;
  font-size: clamp(12px, 0.16vw + 12px, 14px);
  padding: 0.3em 1em;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd .sitemap__linklist > li > a .txt__small {
  font-size: 1.3rem;
}
.report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd .sitemap__linklist > li > a:hover {
  background-color: #fff;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  color: #033824;
}
.report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd .sitemap__linklist > li + li {
  margin-top: 0.4em;
}
.report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd .sitemap__linklist > li .story__list__sub {
  margin-left: 1em;
}
.report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd .sitemap__linklist > li .story__list__sub > li {
  padding-left: calc(1em + 5px);
  text-indent: -1em;
}
.report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd .sitemap__linklist > li .story__list__sub > li a {
  text-decoration: none;
  font-size: clamp(11px, 0.16vw + 11px, 13px);
}
.report2025__sitemap .sitemap_inner .sitemap__clm--list .sitemap__dl > dd .sitemap__linklist > li .story__list__sub > li a::before {
  font-family: "Material Icons";
  content: "\e5cc";
  line-height: 1.2;
  margin-right: 3px;
  position: relative;
  top: 2px;
}
.report2025__sitemap__sp {
  display: none;
  background-color: #ebf2ef;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2rem 4.2666666667vw 6rem;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .report2025__sitemap__sp {
    margin-top: 50px;
  }
}
.report2025__sitemap__sp .sitemap__link_library__sp {
  width: 100%;
  border-bottom: 1px solid #05A173;
  padding-bottom: 2em;
}
.report2025__sitemap__sp .sitemap__link_library__sp a {
  text-decoration: none;
}
.report2025__sitemap__sp .sitemap__link_library__sp a::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 0.4em;
  background-image: url("/investors/results/integrated_report/report/2025/cat_assets/img/ic-circle_arr.svg");
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: bottom;
}
.report2025__sitemap__sp .sitemap__link_library__sp + .sitemap__clm {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .report2025__sitemap__sp .sitemap__link_library__sp + .sitemap__clm {
    margin-top: 25px;
  }
}
.report2025__sitemap__sp .sitemap__clm__sp {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.report2025__sitemap__sp .sitemap__clm__sp--logo {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
.report2025__sitemap__sp .sitemap__clm__sp--logo img {
  width: 40%;
  height: auto;
}
.report2025__sitemap__sp .sitemap__clm__sp--list {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 3rem;
}
.report2025__sitemap__sp .sitemap__clm__sp--list a {
  text-decoration: none;
}
.report2025__sitemap__sp .sitemap__clm__sp--list a:hover {
  text-decoration: underline;
}
.report2025__sitemap__sp .sitemap__clm__sp--list h3 {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  color: #033824;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.report2025__sitemap__sp .sitemap__clm__sp--list h3 + div {
  margin-top: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .report2025__sitemap__sp .sitemap__clm__sp--list h3 + div {
    margin-top: 10px;
  }
}
.report2025__sitemap__sp .sitemap__clm__sp--list h3 + ul {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .report2025__sitemap__sp .sitemap__clm__sp--list h3 + ul {
    margin-top: 15px;
  }
}
.report2025__sitemap__sp .sitemap__clm__sp--list h3 .icon__symbol {
  position: absolute;
  top: 0.5rem;
  right: 0.3em;
}
.report2025__sitemap__sp .sitemap__clm__sp--list h3 .icon__symbol.plus {
  color: #05A173;
  position: absolute;
  margin-left: 3px;
  margin-top: 10px;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
}
.report2025__sitemap__sp .sitemap__clm__sp--list h3 .icon__symbol.plus:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 1px;
  background-color: currentColor;
}
.report2025__sitemap__sp .sitemap__clm__sp--list h3 .icon__symbol.plus:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 1px;
  background-color: currentColor;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.report2025__sitemap__sp .sitemap__clm__sp--list h3 .icon__symbol.minus {
  color: #05A173;
  position: absolute;
  margin-left: 3px;
  margin-top: 10px;
  width: 15px;
  height: 1px;
  background-color: currentColor;
}
.report2025__sitemap__sp .sitemap__clm__sp--list .list__clm__block + .list__clm__block {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .report2025__sitemap__sp .sitemap__clm__sp--list .list__clm__block + .list__clm__block {
    margin-top: 20px;
  }
}
.report2025__sitemap__sp .sitemap__clm__sp--list .list__clm__block ul {
  margin-left: 1.5em;
}
.report2025__sitemap__sp .sitemap__clm__sp--list .list__clm__block ul > li > a {
  font-size: 13px;
}
.report2025__sitemap__sp .sitemap__clm__sp--list .list__clm__block ul > li > a:link, .report2025__sitemap__sp .sitemap__clm__sp--list .list__clm__block ul > li > a:visited {
  color: #033824;
}
.report2025__sitemap__sp .sitemap__clm__sp--list .list__clm__block ul > li > a:hover {
  color: #5f9939;
}
.report2025__sitemap__sp .sitemap__clm__sp--list .list__clm__block ul > li > a::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #444;
  border-right: 1px solid #444;
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
  top: -0.2rem;
  margin-left: 0.5em;
}
.report2025__sitemap__sp .sitemap__clm__sp--list .list__clm__block ul > li + li {
  margin-top: 1.5rem;
}
.report2025__sitemap__sp .sitemap__clm__sp--list .list__clm__block ul > li > ul {
  margin-top: 1.5rem;
  margin-left: 1.5rem;
}
.report2025__sitemap__sp .sitemap__clm__sp--list .list__clm__block ul > li > ul > li {
  font-size: 12px;
}
.report2025__sitemap__sp .sitemap__clm__sp--list .list__clm__block ul > li > ul > li a::before {
  font-family: "Material Icons";
  content: "\e037";
  line-height: 1.2;
  opacity: 0.5;
  position: relative;
  top: 2px;
  margin-right: 0.2em;
}
.report2025__sitemap__sp .sitemap__clm__sp--list .list__clm__block .close__accordion {
  width: 31px;
  height: auto;
  margin-top: 2rem;
  margin-left: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1px;
}
.report2025__sitemap__sp .sitemap__clm__sp--list .list__clm__block .close__accordion img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .report2025__sitemap__sp {
    display: block;
  }
}

/* 拡大アニメーション */
@-webkit-keyframes zoomFadeOut {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; /* スライド切替前に透明状態でキープ */
  }
}
@keyframes zoomFadeOut {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; /* スライド切替前に透明状態でキープ */
  }
}
.slide-animation img {
  -webkit-animation: zoomFadeOut 6s ease-in forwards;
          animation: zoomFadeOut 6s ease-in forwards;
}

.top__contents__inner .contents__link::after {
  content: none;
}

.top__contents__inner .contents__link__modalmenu {
  position: fixed !important;
  opacity: 0;
  visibility: hidden;
}
.top__contents__inner .contents__link__modalmenu.close {
  display: grid;
  opacity: 0;
  visibility: hidden;
}

.top__contents__inner .contents__link .contents__link__overmenu {
  background: transparent !important;
}

.contents__link {
  position: relative;
  overflow: hidden;
}
.contents__link__icon {
  width: 136px;
  height: 136px;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}
@media screen and (max-width: 767px) {
  .contents__link__icon {
    width: 100px;
    height: 100px;
  }
}
.contents__link__icon--hover {
  background-color: #d2ee39;
  border-radius: 50%;
  -webkit-transition: width 0.8s, height 0.8s, background-color 0.3s;
  transition: width 0.8s, height 0.8s, background-color 0.3s;
}
.contents__link__icon--default {
  background: -webkit-radial-gradient(circle, #6dd046 0%, #d2ee39 100%);
  background: radial-gradient(circle, #6dd046 0%, #d2ee39 100%);
  border-radius: 50%;
  -webkit-transition: width 0.8s, height 0.8s, opacity 0.8s;
  transition: width 0.8s, height 0.8s, opacity 0.8s;
}
.contents__link__icon--plus {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 68px;
  height: 68px;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  z-index: 2;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media screen and (max-width: 767px) {
  .contents__link__icon--plus {
    width: 45px;
    height: 45px;
  }
}
.contents__link__icon--plus::before, .contents__link__icon--plus::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 24px;
  right: 14px;
  width: 21px;
  height: 2px;
  background: #005d41;
}
@media screen and (max-width: 767px) {
  .contents__link__icon--plus::before, .contents__link__icon--plus::after {
    bottom: 20px;
    right: 10px;
  }
}
.contents__link__icon--plus::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.contents__link.open .contents__link__icon--default {
  opacity: 0;
  width: 2000px;
  height: 2000px;
}
.contents__link.open .contents__link__icon--hover {
  width: 2000px;
  height: 2000px;
  z-index: 2;
}
.contents__link.open .contents__link__icon--hover.icon--ceo {
  background-color: #05a173;
}
.contents__link.open .contents__link__icon--hover.icon--process {
  background-color: #40916f;
}
.contents__link.open .contents__link__icon--hover.icon--sustainability {
  background-color: #8bb03c;
}
.contents__link.open .contents__link__icon--hover.icon--biz {
  background-color: #599f5c;
}
.contents__link.open .contents__link__icon--hover.icon--gov {
  background-color: #4aa5bd;
}
.contents__link.open .contents__link__icon--hover.icon--about {
  background-color: #788d91;
}
.contents__link.open .contents__link__icon--plus {
  opacity: 0;
}/*# sourceMappingURL=main.css.map */