@charset "UTF-8";
/************************************************************
 * Boost2028 styles (Improved)
 * - index.html 専用スタイル
 * - レイアウト / ナビゲーション / タイトル / フローティングボタン
 ************************************************************/

html {
  font-size: 16px;
}

/* ---------------------------------------------
   グローバル：横スクロール抑止
   - iPhone Safari で KV やナビがわずかにはみ出し
     横スクロールが出るのを防止するため
   --------------------------------------------- */
html,
body {
  overflow-x: hidden !important;
}

/* Boost2028 の横ズレ源（flex 子要素の最小幅）を強制修正 */
* {
  min-width: 0; /* flex item の横はみだしを抑制 */
}

/*----------------------------------------------------------
 1. 基本カラー変数
----------------------------------------------------------*/
:root {
  --smp--color--smp-green: rgb(0, 122, 76);
  --smp--color--black: #000000;
  --smp--color--white: #ffffff;
  --smp--color--site-white: rgb(252, 250, 250);
  --smp--color--site-glay: rgb(223, 223, 223);
  --smp--color--silver: #cbd5dc;
  --smp--color--gold: rgb(212, 181, 113);
  --smp--color--olive-green: #6dba4f;
  --smp--color--bright-green: #bedfc2;
  --smp--color--light-blue: hsl(207, 65%, 71%);
  --smp--color--medium-gray: rgb(167, 168, 170);
  --smp--color--purple: rgb(153, 151, 201);
  --smp--color--orange: hsl(27, 87%, 56%);
  --smp--color--pink: hsl(358, 77%, 78%);
  --smp--color--light-yellow: hsl(49, 100%, 74%);
}

/************************************************************
 * 2. レイアウト・内側余白
 * - 本文エリア画像用ラッパ & section コンテナ
 ************************************************************/

.l-img-inner-01 {
  box-sizing: border-box;
}

@media screen and (min-width: 2501px) {
  .l-img-inner-01 {
    width: 1689.49px;
    margin: auto;
  }
}

@media screen and (min-width: 1068px) and (max-width: 2500px) {
  .l-img-inner-01 {
    padding-inline: 15% 15%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1067px) {
  .l-img-inner-01 {
    padding-inline: 6% 6%;
  }
}

@media screen and (max-width: 768px) {
  .l-img-inner-01 {
    padding-inline: 6% 6%;
  }
}

@media screen and (min-width: 769px) {
  .section-container {
    display: flex;
    align-items: stretch;
  }

  .nav-container {
    flex: 0 0 175px;
    position: relative;
    background-color: var(--smp--color--site-white);

    border-right: 1px solid var(--smp--color--smp-green);
  }

  .b-midterm-container-02 {
    flex: 1;
  }

  .nav-container::before {
    content: "";
    display: block;
    height: 100%;
    visibility: hidden;
  }
}

.b-midterm-01 .b-midterm-container-02 {
  padding-bottom: 0;
}

/************************************************************
 * 3. nav-container（水平ナビ用：汎用スタイル）
 ************************************************************/
.nav-container {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-container li {
  display: inline-block;
}

.nav-container .anchor {
  display: inline-block;
  text-decoration: none;
  color: #333;
  text-align: left;
  line-height: 1.2;
}

/************************************************************
 * 4. nav-sub / nav-main（縦・横共通で使うテキスト）
 ************************************************************/

.nav-container .nav-sub {
  display: block;
  font-size: 0.75rem;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.1rem 0;
  color: var(--smp--color--medium-gray);
}

.nav-container .nav-main {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--smp--color--medium-gray);
}

.nav-container li .anchor:hover .nav-main {
  color: var(--smp--color--smp-green);
}

.c-nav-anchor-01 li.current .nav-main {
  color: var(--smp--color--smp-green);
}

.c-nav-anchor-01 li.current .nav-sub {
  color: var(--smp--color--medium-gray) !important;
}

/************************************************************
 * 5. 縦ナビ本体（c-nav-anchor-01 = Boost 2028 専用）
 ************************************************************/
.c-nav-anchor-01 {
  position: absolute;
  top: 0;
  left: 1.25rem;
  width: 8.75rem;
  padding-top: 1.875rem;
  z-index: 100;
}

.c-nav-anchor-01.is-fixed {
  position: fixed;
  top: 35%;
  left: 1.25rem;
}

.c-nav-anchor-01.is-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 1.25rem;
}

.c-nav-anchor-01 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-nav-anchor-01 li {
  margin-bottom: 0.875rem;
}

.c-nav-anchor-01 li a {
  display: block;
  padding: 0.375rem 0.2rem;
  text-decoration: none;
  font-weight: 600;
  color: #555;
  border-left: 4px solid transparent;
}

/************************************************************
 * 6. PC：current のビジュアル（左緑バー）
 ************************************************************/
@media screen and (min-width: 769px) {
  .c-nav-anchor-01 li a {
    position: relative;
    padding-left: 0.625rem;
  }

  .c-nav-anchor-01 li.current a {
    color: var(--smp--color--smp-green);
    border-left: none;
  }

  .c-nav-anchor-01 li.current a::before {
    content: "";
    position: absolute;
    top: 0.6875rem;
    left: 0;
    width: 0.25rem;
    height: 1.25rem;
    background-color: var(--smp--color--smp-green);
  }
}

/************************************************************
 * 7. PC（769〜1068px）の縮小仕様（ナビ縮小）
 ************************************************************/
@media screen and (max-width: 1068px) and (min-width: 769px) {
  .nav-container {
    flex: 0 0 8.5rem;
  }

  .nav-container .nav-sub {
    font-size: 0.6rem;
    line-height: 1.1;
    margin-bottom: 0.05rem;
  }

  .nav-container .nav-main {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .c-nav-anchor-01 {
    width: 7.8rem;
    left: 1rem;
  }

  .c-nav-anchor-01.is-fixed {
    left: 1rem;
  }

  .c-nav-anchor-01 li a {
    font-size: 0.875rem;
    padding-left: 0.25rem;
  }

  .c-nav-anchor-01 li.current a::before {
    height: 1rem;
    left: -0.375rem;
  }
}

/************************************************************
 * 8. SP（〜768px）ナビ
 * - 横並びボタン + current マーカー
 ************************************************************/
@media screen and (max-width: 768px) {
  .nav-container .anchor {
    line-height: 1.1;
  }

  .nav-container .nav-sub {
    font-size: 0.6rem;
    line-height: 1.1;
    margin-bottom: 0.05rem;
  }

  .nav-container .nav-main {
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .c-nav-anchor-01 {
    position: relative;
    width: 100%;
    left: 0;
    background: #ffffff;
    border-top: 1px solid #dddddd;
    padding-inline: 0.3125rem 0.5rem;
    box-sizing: border-box;
    padding-top: 0;
    z-index: 10;
  }

  .c-nav-anchor-01 ul {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0 0.2rem;
  }

  .c-nav-anchor-01 li {
    margin: 0;
    width: 25%;
    text-align: center;
    position: relative;
  }

  .c-nav-anchor-01 li a {
    border: none;
    color: #666666;
    font-size: 1rem;
  }

  .c-nav-anchor-01 li.current a {
    color: #009373;
    font-weight: 700;
  }

  .js-side-nav.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
}

/************************************************************
 * 9. Boost2028：SP current アイコン（▼印）
 ************************************************************/
@media screen and (max-width: 768px) {
  .c-nav-anchor-01 li.current > a.anchor::before {
    content: "";
    position: absolute;
    top: -0.5625rem;
    left: 55%;
    transform: translateX(-50%);
    width: 1.25rem;
    height: 0.625rem;
    background-image: url(/ir/managerial_policy/boost2028/assets/img/icon-current-01.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
}

/************************************************************
 * 10. フロートボタン実装（Boost2028 説明会資料リンク）
 ************************************************************/
._boost2028 #b-boost-float-link-01 {
  position: absolute;
  bottom: 2.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
}

#b-boost-float-link-01,
#b-boost-float-link-01 a {
  pointer-events: auto;
}

@media screen and (min-width: 769px) {
  ._boost2028 #b-boost-float-link-01 {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  ._boost2028 #b-boost-float-link-01 {
    bottom: 2.1875rem;
    width: 65%;
  }

  @media screen and (max-width: 768px) {
    ._boost2028 .c-btn-02 {
      padding: 1.125vw 11.71875vw 1.125vw 5.8125vw;
    }
  }
}

._boost2028 #b-boost-float-link-01.is-fixed {
  position: fixed;
  bottom: 2rem;
  left: 0.3125rem;
  z-index: 9999;
}

@media screen and (max-width: 768px) {
  ._boost2028 #b-boost-float-link-01.is-fixed {
    bottom: 3.3vw;
    left: 3.125rem;
  }
}

._boost2028 #b-boost-float-link-01.is-hide {
  opacity: 0;
  transition: opacity 0.2s;
}

._boost2028 #b-boost-float-link-01 .c-btn-list-01 {
  margin-top: 0;
}

._boost2028 #b-boost-float-link-01 .c-btn-list-01 .c-btn-02 {
  font-size: 0.88rem;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  ._boost2028 #b-boost-float-link-01 .c-btn-list-01 .c-btn-02 {
    font-size: 0.8rem;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  ._boost2028 #b-boost-float-link-01 .c-btn-list-01 .c-btn-02 {
    border-radius: 1.25rem;
  }
}

@media screen and (max-width: 1068px) and (min-width: 769px) {
  ._boost2028 #b-boost-float-link-01 .c-btn-list-01 .c-btn-02 {
    border-radius: 0.625rem;
    width: 7.1875rem;
    padding: 0.625rem 0.5rem 1.875rem 0.5rem;
  }

  ._boost2028 #b-boost-float-link-01 .c-btn-02::after {
    content: "";
    display: block;
    position: absolute;
    right: 3.125rem;
    top: 80%;
    transform: translateY(-50%);
  }
}

/************************************************************
 * 11. タイトルまわりのレイアウト・タイポグラフィ
 ************************************************************/

.boost-title-container {
  display: block;
  width: auto;
  height: auto;
}

.boost-title-container > .column:first-child .c-lyt-media-01 .image {
  text-align: end;
}

.boost-title-container > .column:first-child .c-lyt-media-01 .image img {
  display: block;
}

.image-container .c-lyt-media-01 {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .image-container .c-lyt-media-01 {
    margin-bottom: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .boost-title-container .c-lyt-media-01 .image {
    max-width: 1690px;
  }
}

.boost-title-container .c-list-notes-01 {
  margin-top: 0.9375rem;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.025em;
}

@media screen and (max-width: 768px) {
  .boost-title-container .c-list-notes-01 {
    font-size: 1.2rem;
  }
}

.boost-title-container .c-list-check-01 li span {
  position: relative;
  margin-left: 4vw;
}

.boost-title-container .c-list-notes-01.smp-list-check li span::before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 1.8vw;
  height: 1.8vw;
  max-width: 1em;
  max-height: 1em;
  background-image: url(/assets/img/icon-check-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .boost-title-container .c-list-notes-01.smp-list-check li span::before {
    left: 0;
    top: 0.4em;
    width: 4.5vw;
    height: 4.5vw;
    max-width: 1em;
    max-height: 1em;
  }
}

.boost-slide-container .c-list-notes-01 {
  margin-top: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.025em;
}

.boost-slide-container .c-list-notes-01.smp-list-check li span {
  position: relative;
  margin-left: 0;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .boost-slide-container .c-list-notes-01.smp-list-check li span {
    font-size: 1.4rem;
  }
}
.boost-slide-container .c-list-notes-01.smp-list-check.gemtesa li span {
  position: relative;
  margin-left: 0;
  font-size: 1.15rem;
}

@media screen and (max-width: 768px) {
  .boost-slide-container .c-list-notes-01.smp-list-check.gemtesa li span {
    font-size: 1.15rem;
  }
}

.boost-slide-container .c-list-notes-01.smp-list-check li span::before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: -1.5em;
  width: 1.8vw;
  height: 1.8vw;
  max-width: 1em;
  max-height: 1em;
  background-image: url(/assets/img/icon-check-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .boost-slide-container .c-list-notes-01.smp-list-check li span::before {
    left: -1.5em;
    top: 0.4em;
    width: 4.5vw;
    height: 4.5vw;
    max-width: 1em;
    max-height: 1em;
  }
}

/************************************************************
 * 12. タイトルの文字サイズ（黒背景・白背景共通）
 ************************************************************/

.boost-title-01 {
  color: var(--smp--color--black);
  font-family: Montserrat, sans-serif;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

@media screen and (max-width: 768px) {
  .boost-title-01 {
    font-size: 3.8rem;
  }
}

.boost-title-02 {
  margin-top: 1.375rem;
  margin-bottom: 1.25rem;
  color: var(--smp--color--black);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
}

@media screen and (min-width: 769px) {
  .boost-title-02 span {
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .boost-title-02 {
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 2rem;
  }
}

.boost-title-03 {
  margin-top: 1.25rem;
  color: var(--smp--color--black);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .boost-title-03 {
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.boost-title-04 {
  color: var(--smp--color--black);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .boost-title-04 {
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
  }
}

.boost-title-01-w {
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

@media screen and (max-width: 768px) {
  .boost-title-01-w {
    font-size: 3.8rem;
  }
}

.boost-title-02-w {
  margin-top: 1.375rem;
  margin-bottom: 2.5rem;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
}

@media screen and (min-width: 769px) {
  .boost-title-02-w span {
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .boost-title-02-w {
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 2rem;
  }
}

.boost-title-03-w {
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .boost-title-03-w {
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
  }
}

.boost-slide-font-01 {
  color: var(--smp--color--black);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .boost-slide-font-01 {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.boost-slide-font-02 {
  color: var(--smp--color--smp-green);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .boost-slide-font-02 {
    font-size: 1.6rem;
  }
}
.boost-slide-font-03 {
  color: var(--smp--color--black);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .boost-slide-font-03 {
    font-size: 1.15rem;
  }
}

.boost-inner-box-font-01 {
  color: var(--smp--color--black);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .boost-inner-box-font-01 {
    font-size: 1.2rem;
  }
}

.boost-inner-box-font-02 {
  color: var(--smp--color--black);
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .boost-inner-box-font-02 {
    font-size: 1.6rem;
  }
}

.smp-color {
  color: var(--smp--color--smp-green);
}

.smp-color-orgovix {
  color: #0e0078;
}
.smp-color-gemtesa {
  color: #d43d4a;
}
.smp-color-purple {
  color: #4e5aa7 !important;
}

.boost-font-small {
  font-size: 0.8rem;
  align-items: baseline;
  line-height: 1.5;
  display: inline-block;
}

.center-break-left {
  text-align: center;
}

.center-break-left > span {
  display: inline-block;
  text-align: left;
  max-width: 100%;
}

.c-list-basic-01.smp-font-size-list-basic {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .c-list-basic-01.smp-font-size-list-basic {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
.c-list-bullet-01.smp-font-size-list-bullet {
  font-size: 1.25rem;
}

@media screen and (max-width: 768px) {
  .c-list-bullet-01.smp-font-size-list-bullet {
    font-size: 1rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  .finance-diagram-grid .c-list-bullet-01.smp-font-size-list-bullet {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

.c-list-bullet-01.smp-font-size-list-bullet > li:before,
.smp-font-size-list-bullet.c-list-bullet-02 > li:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 16px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c-list-bullet-01.smp-font-size-list-bullet > li:before {
    top: 8px;
  }
}

.u-smp-vertical-align {
  display: inline-flex;
  align-items: baseline;
}

.u-smp-vertical-align-br {
  align-items: baseline;
}

@media screen and (min-width: 769px) and (max-width: 1302px) {
  .section-growth .c-lyt-column-01.col2.ratio-1-1 > .column > .c-hdg-level3-01,
  .section-finance
    .c-lyt-column-01.col2.ratio-1-1
    > .column
    > .c-hdg-level3-01 {
    display: flex;
    align-items: flex-end;
    min-height: 3.4em;
  }
}

@media screen and (max-width: 768px) {
  .section-growth .c-lyt-column-01.col2.ratio-1-1 > .column > .c-hdg-level3-01,
  .section-finance.c-lyt-column-01.col2.ratio-1-1 > .column > .c-hdg-level3-01 {
    display: block;
    min-height: auto;
  }
}

/************************************************************
 * 13. ラベル / GSP セクション / ステートメント下線
 ************************************************************/

.b-midterm-01 .b-midterm-section-02 .label-black {
  margin-top: 5.625rem;
  margin-bottom: 5.625rem;
  color: #2c3b3a;
  background-color: #ffffff;
}

.b-midterm-01 .b-midterm-section-02.gsp {
  background-color: var(--smp--color--smp-green);
  padding-bottom: 2.8125rem;
}

.statement .outer {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.15em;
  padding-top: 0.5em;
}

.statement .outer .inner {
  display: inline-block;
}

.statement .outer .underline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--smp--color--white);
  transform-origin: left center;
  transform: scaleX(0);
}

.js-underline-anim .outer,
.js-underline-anim-list .outer {
  position: relative;
  display: inline;
  background-image: linear-gradient(
    var(--smp--color--orange),
    var(--smp--color--orange)
  );
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 0.15em;
  line-height: 1.8;
}

.js-underline-anim .inner,
.js-underline-anim-list .inner {
  display: inline;
}

.js-underline-anim .underline,
.js-underline-anim-list .underline {
  display: none;
}

/************************************************************
 * section-growth
 ************************************************************/
.b-midterm-01 .b-midterm-section-03.section-growth > .l-inner-01 {
  padding-top: 30px;
  padding-bottom: 96px;
}

.boost-disclaimer {
  margin-top: 0px;
  margin-bottom: 60px;
  font-size: 0.8rem;
}

.boost-disclaimer .c-box-content-01 {
  background-color: var(--smp--color--site-white);
}

.section-growth .c-lyt-column-01 .column {
  position: relative;
}

.section-growth .c-lyt-column-01 .column .smp-inner-box {
  position: absolute;
  right: 0%;
  top: 20%;
  width: max-content;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 1rem 1.25rem;
  box-sizing: border-box;
  text-align: center;
  border-radius: 0.5rem;
  z-index: 2;
}

@media screen and (min-width: 769px) and (max-width: 1302px) {
  .section-growth .c-lyt-column-01 .column .smp-inner-box {
    top: 25%;
    padding: 0.5rem 0.75rem;
  }
}

@media screen and (max-width: 768px) {
  .section-growth .c-lyt-column-01 .column .smp-inner-box {
    position: absolute;
    padding: 0.5rem 0.75rem;
    right: 0%;
    top: 20%;
    width: max-content;
  }
}

.section-growth .smp-inner-box .c-doc-plain-01 {
  margin: 0;
}

.section-growth .smp-inner-box .c-doc-plain-01 + .c-doc-plain-01 {
  margin-top: 0.375rem;
}

.section-growth .smp-inner-box {
  will-change: transform, opacity;
}

.boost-slide-container-image {
  position: relative;
  overflow: hidden;
  padding-left: 10px;
}

.boost-slide-container-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/ir/managerial_policy/boost2028/assets/img/img-growth-04.webp");
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.boost-slide-container-imag > * {
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 1700px) {
  .boost-slide-container-image::before {
    opacity: 1;
  }
}

/* ============================================
   SECTION VALUE（グラフ・テーブル）
   ============================================ */

.boost-value-graph-cover {
  display: none;
  position: absolute;
  inset: 0;
  background-color: #fff;
  transform: translateX(0);
  will-change: transform;
  pointer-events: none;
}
body.is-gsap-enabled .boost-value-graph-cover,
.boost-no-gsap .boost-value-graph-cover {
  display: block;
}

.boost-value-graph {
  margin-top: 0;
}
.boost-value-graph-inner,
.c-lyt-media-01-inner {
  position: relative;
  overflow: hidden;
}
.boost-value-graph-img {
  width: 100%;
  height: auto;
  display: block;
}

.section-value .c-tbl-data-01 thead th {
  background-color: var(--smp--color--orange);
  font-size: 1.4rem;
}

.section-value .c-tbl-data-01 thead,
.section-value .c-tbl-data-01-b thead {
  border-top: 1px solid var(--smp--color--orange);
  border-right: 1px solid var(--smp--color--orange);
}

.section-value table td {
  font-size: 1.1rem;
}
.section-value .smp-border-top {
  border-right: none;
  border-bottom: none;
  border-left: none;
}

@media (max-width: 768px) {
  .section-value .c-tbl-data-01 thead th {
    font-size: 1.3rem;
  }
  .section-value table td {
    font-size: 1.0rem;
  }
  .section-value .c-tbl-data-01.is-en td {
    font-size: 0.9rem;
  }
  .boost-value-graph {
    margin-top: 0;
  }
}

.section-value .c-tbl-data-01 {
  width: 100% !important;
  table-layout: fixed;
}

/* .section-value .c-tbl-data-01 td,
.section-value .c-tbl-data-01 th {
  word-break: break-word;
  white-space: normal;
} */

.icon-us {
  position: relative;
  padding-left: 20px;
}

.icon-us::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 52%;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  background-image: url("/ir/managerial_policy/boost2028/assets/img/icon-usa.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}



/* ============================================
 DEVELOPMENT STRATEGY FOR ONCOLOGY (PC GRID)
 ============================================ */
.development-strategy-for-oncology {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: auto repeat(4, 1fr);
  gap: 6px;
  margin-top: 90px;
  box-sizing: border-box;
}

.onco-01 {
  grid-area: 1 / 1 / 2 / 4;
}
.onco-02 {
  grid-area: 1 / 4 / 2 / 8;
}
.onco-03 {
  grid-area: 1 / 8 / 2 / 12;
}
.onco-group-45 {
  grid-area: 2 / 1 / 3 / 4;
}
.onco-06 {
  grid-area: 2 / 4 / 3 / 12;
}
.onco-group-89 {
  grid-area: 3 / 1 / 5 / 4;
}
.onco-10 {
  grid-area: 3 / 4 / 4 / 8;
}
.onco-11 {
  grid-area: 3 / 8 / 4 / 12;
}
.onco-12 {
  grid-area: 4 / 4 / 5 / 8;
}
.onco-13 {
  grid-area: 4 / 8 / 5 / 12;
}
.onco-group-1415 {
  grid-area: 5 / 1 / 6 / 4;
}
.onco-16 {
  grid-area: 5 / 4 / 6 / 12;
}

@media (max-width: 768px) {
  .onco-group-89 {
    grid-area: 3 / 1 / 4 / 4;
  }
}

.development-strategy-for-oncology > div {
  border: 1px solid #ccc;
  padding: 8px 10px;
  box-sizing: border-box;
  font-size: 1.2rem;
}

.development-strategy-for-oncology > .onco-01 {
  border: none;
  height: 0;
  min-height: 0;
  padding: 0;
}

.development-strategy-for-oncology > .onco-02,
.development-strategy-for-oncology > .onco-03 {
  border: none;
  border-bottom: 1px solid #ccc;
  background-color: var(--smp--color--orange);
  color: var(--smp--color--white);
  font-size: 1.4rem;
  padding: 10px 0;
}

.onco-group-45,
.onco-group-89,
.onco-group-1415 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 0;
  border: none;
  background: var(--smp--color--site-white);
  box-sizing: border-box;
}

.onco-group-45 > div,
.onco-group-89 > div,
.onco-group-1415 > div {
  padding: 8px 10px;
  font-size: 1.4rem;
  font-family: Montserrat, sans-serif;
}

@media (min-width: 768px) {
  .onco-group-45 > .onco-04,
  .onco-group-89 > .onco-08,
  .onco-group-1415 > .onco-14 {
    grid-column: 1;
  }
  .onco-group-45 > .onco-05,
  .onco-group-89 > .onco-09,
  .onco-group-1415 > .onco-15 {
    grid-column: 2;
  }
}

.onco-group-45 .image,
.onco-group-89 .image,
.onco-group-1415 .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.onco-group-45 img,
.onco-group-89 img,
.onco-group-1415 img {
  width: 90%;
  max-width: 76px;
  height: auto;
}

.onco-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.onco-left-middle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.development-strategy-for-oncology > .onco-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 10px 8px 48px;
}

.onco-item::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 18px;
  height: 18px;
  border: 2px solid #555;
  border-radius: 2px;
}

.onco-item.is-checked-01::after {
  content: "✓";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--smp--color--black);
  font-size: 18px;
  font-weight: 800;
}

.onco-item.is-checked-02::after {
  content: "✓";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--smp--color--bright-green);
  font-size: 18px;
  font-weight: 800;
}

.onco-item.is-checked-01 {
  color: #222;
}

.onco-item.is-unchecked {
  color: #666;
}

/* ============================================
 SP LAYOUT（767px 以下）
 ============================================ */
@media (max-width: 767px) {
  .development-strategy-for-oncology {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-top: 40px;
    box-sizing: border-box;
    /* border: 1px solid var(--smp--color--site-glay); */
  }

  .onco-01 {
    display: none;
  }

  /* グループラッパーは display: contents で中身だけを Grid に載せる */
  .onco-group-45,
  .onco-group-89,
  .onco-group-1415 {
    display: contents !important;
    border: none;
  }

  .onco-group-45 > div,
  .onco-group-89 > div,
  .onco-group-1415 > div {
    padding-top: 20px;
  }

  /* 見出しセル（最速かつ確実な上市 / 価値最大化）の区切り線 */
  .development-strategy-for-oncology > .onco-02 {
    border-right: #fff 2px solid;
    padding: 0.2rem !important;
  }

  /* ▼▼▼ ここがレイアウトの要 ▼▼▼
     SP では「Right Plan（onco-09）」の『直下の行』に
     onco-02 / onco-03 を横並び（2カラム）で配置 */

  /* 1行目：Right Target ラベル（onco-05） */
  .onco-05 {
    grid-area: 1 / 1 / 2 / 3;
  }

  /* 2行目：Target のチェック付き本文（onco-06） */
  .onco-06 {
    grid-area: 2 / 1 / 3 / 3;
  }

  /* 3行目：Right Plan ラベル（onco-09） */
  .onco-09 {
    grid-area: 3 / 1 / 4 / 3;
  }

  /* 4行目：Right Plan の下に 2項目を横並び表示 */
  .onco-02 {
    grid-area: 4 / 1 / 5 / 2; /* 左カラム：最速かつ確実な上市 */
  }

  .onco-03 {
    grid-area: 4 / 2 / 5 / 3; /* 右カラム：価値最大化 */
  }

  /* 5行目以降：従来どおり 10〜16 を順に配置 */
  .onco-10 {
    grid-area: 5 / 1 / 6 / 2;
  }
  .onco-11 {
    grid-area: 5 / 2 / 6 / 3;
  }
  .onco-12 {
    grid-area: 6 / 1 / 7 / 2;
  }
  .onco-13 {
    grid-area: 6 / 2 / 7 / 3;
  }
  .onco-15 {
    grid-area: 7 / 1 / 8 / 3;
  }
  .onco-16 {
    grid-area: 8 / 1 / 9 / 3;
  }

  .development-strategy-for-oncology > div {
    padding: 10px 12px;
    box-sizing: border-box;
    height: auto !important;
    min-height: 0 !important;
    font-size: 1rem;
  }

  .development-strategy-for-oncology > .onco-02,
  .development-strategy-for-oncology > .onco-03 {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  /* .development-strategy-for-oncology.en-font > .onco-02,
  .development-strategy-for-oncology.en-font > .onco-03 {
    font-size: 1.1rem !important;
  } */

  .development-strategy-for-oncology.en-font > div {
    font-size: 0.9rem !important;
  }

  .development-strategy-for-oncology > .onco-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 8px 10px 8px 48px;
    background-color: var(--smp--color--site-white);
    /* border-left: none; */
    /* border-right: none; */
  }

  .development-strategy-for-oncology > .onco-item.onco-10,
  .development-strategy-for-oncology > .onco-item.onco-12 {
    border-right: 3px solid var(--smp--color--white);
  }

  .onco-05,
  .onco-09,
  .onco-15 {
    display: block;
    text-align: left;
  }
}

/* ============================================
 ICON / TYPOGRAPHY 公開共通
 ============================================ */
@media (max-width: 1024px) {
  .onco-04,
  .onco-08,
  .onco-14 {
    display: none !important;
  }
}

/* ============================================
 Onco Typography
 ============================================ */
.onco-right-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  color: var(--smp--color--smp-green);
  min-width: 0;
  overflow: hidden;
  word-break: break-word;
}

.onco-right-label {
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 500;
}

.onco-right-main {
  margin-top: 0.15em;
  font-size: clamp(1.6rem, 8vw, 2.6rem);
  line-height: 1.1;
  font-weight: 700;
}

.en-fon .onco-right-label {
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 500;
}

.en-font .onco-right-main {
  margin-top: 0.15em;
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  line-height: 1.1;
  font-weight: 700;
}

@media screen and (min-width: 768px) and (max-width: 1302px) {
  .onco-right-main {
    margin-top: 0.15em;
    font-size: clamp(1.4rem, 2.5vw, 2.6rem);
    line-height: 1.1;
    font-weight: 700;
  }
}

/* ============================================
 SP ORDER（Target → Plan → Action）
 ============================================ */
@media (max-width: 768px) {
  .onco-group-45 {
    order: 1;
  }
  .onco-group-89 {
    order: 2;
  }
  .onco-group-1415 {
    order: 3;
  }
  .onco-16 {
    order: 4;
  }
}

.c-lyt-column-01.col2 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.c-lyt-column-01.col2 .column {
  flex: 1 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .c-lyt-column-01.col2 .column {
    flex-basis: 100%;
    max-width: 100%;
  }

  .c-lyt-column-01.col2 {
    gap: 32px;
  }
}

@media screen and (max-width: 767px) {
  .c-lyt-column-01.col2 {
    flex-direction: column;
    gap: 24px;
  }

  .c-lyt-column-01.col2 .column {
    width: 100%;
    max-width: 100%;
  }
}

.c-lyt-column-01.col2.ratio-1-1.innovation-height .column {
  display: flex;
  flex-direction: column;
}

.c-lyt-column-01.col2.ratio-1-1.innovation-height .innovation-card {
  flex: 1;
  display: grid;
  grid-template-columns: 180px 1fr;
  border: 1px solid var(--smp--color--medium-gray);
  margin-bottom: 6px;
  min-height: 72px;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .c-lyt-column-01.col2.ratio-1-1.innovation-height .innovation-card {
    margin-bottom: 15px;
  }
}

.innovation-card-label-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.innovation-card-label {
  color: var(--smp--color--white);
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.innovation-card-btn {
  margin: 4px 8px 15px;
  padding: 6px 30px;
  font-size: 12px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  color: var(--smp--color--black);
}

.innovation-card-text {
  padding: 10px 12px;
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-direction: column;
  line-height: 1.6;
}

.innovation-card-text ul {
  padding-left: 0rem;
  margin: 0;
}

.innovation-card-text ul li {
  display: block;
  line-height: 1.6;
}
.innovation-card-text .c-list-notes-01 > li {
  padding-left: 7px;
}

.innovation-card-01 .innovation-card-label-area {
  background: var(--smp--color--olive-green);
}
.innovation-card-02 .innovation-card-label-area {
  background: var(--smp--color--purple);
}
.innovation-card-03 .innovation-card-label-area {
  background: var(--smp--color--orange);
}
.innovation-card-04 .innovation-card-label-area {
  background: var(--smp--color--light-blue);
}

@media screen and (max-width: 767px) {
  .c-lyt-column-01.col2.ratio-1-1.innovation-height {
    flex-direction: column;
    gap: 20px;
  }

  .c-lyt-column-01.col2.ratio-1-1.innovation-height .innovation-card {
    grid-template-columns: 1fr;
  }

  .innovation-card-label-area {
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
  }

  .innovation-card-label {
    text-align: left;
    justify-content: flex-start;
  }

  .innovation-card-btn {
    margin: 0 8px 0 16px;
    align-self: center;
  }
  .innovation-card-btn.is-en {
    margin: 0 63px 0 0px;
    align-self: center;
  }

  .innovation-card-text {
    justify-content: center;
    text-align: center;
    font-size: 14px;
  }
}

.pipeline-item .c-simple-modal__container,
.innovation-card .c-simple-modal__container {
  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}

.pipeline-item .c-simple-modal__strech,
.innovation-card .c-simple-modal__strech {
  min-height: 0;
}
@media screen and (min-width: 769px) {
  .pipeline-item .c-lyt-media-01,
  .innovation-card .c-lyt-media-01 {
    margin-top: 30px;
    padding: 0 10%;
  }
}

/* =======================================
   基本レイアウト（共通）
======================================= */

.pipeline-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 60px;
  padding-right: 40px;
  box-sizing: border-box;
}

.pipeline-row {
  min-height: 60px;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  padding: 16px 24px;
  position: relative;
  background: linear-gradient(90deg, #f7fffb 0%, #bedfc2 50%, #6dba4f 100%);
  clip-path: polygon(
    0 0,
    calc(100% - 40px) 0,
    100% 50%,
    calc(100% - 40px) 100%,
    0 100%
  );
}

.pipeline-icon {
  grid-column: 1 / 2;
}

.pipeline-icon img {
  width: 100%;
  height: 100%;
}


/* =======================================
   ラベル＋テキスト（共通）
======================================= */

.pipeline-pair-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pipeline-pair-list li {
  display: flex;
  flex-direction: column;
}

.pipeline-pair-list .label {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
}

.pipeline-pair-list .text {
  font-size: 1.2rem;
  line-height: 1.6;
  white-space: normal;
  margin-top: 4px;
}

/* =======================================
   PC レイアウト（横並び）
======================================= */

@media screen and (min-width: 768px) {
  .pipeline-row {
    grid-template-columns: 60px minmax(0, 1fr);
    column-gap: 24px;
  }

  .pipeline-pair-list li {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    column-gap: 20px;
    align-items: center;
    padding-right: 20px;
  }

  .pipeline-pair-list .label {
    font-size: 1.3rem;
    font-weight: 600;
  }

  .pipeline-row.step-1 {
    width: calc(100% - 18.75vw);
    padding-left: 20px;
  }
  .pipeline-row.step-2 {
    width: calc(100% - 14.06vw);
    margin-left: 3.125vw;
  }
  .pipeline-row.step-3 {
    width: calc(100% - 9.37vw);
    margin-left: 6.25vw;
    padding-bottom: 2.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1302px) {
  .pipeline-row.step-3 {
    width: calc(100% - 9.37vw);
    margin-left: 6.25vw;
    padding-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .pipeline-row.step-3 {
    width: 100%;
    margin-left: 0;
    padding-bottom: 60px;
  }
}

.pipeline-item {
  position: relative;
}

.pipeline-item .pipeline-button {
  position: absolute;
  bottom: -6px;
  left: 0;
  align-items: end;
  width: 100%;
  z-index: 10;
}

@media screen and (min-width: 769px) and (max-width: 1302px) {
  .pipeline-item .pipeline-button {
    position: absolute;
    bottom: 0px;
    left: -100px;
  }
}

@media screen and (max-width: 767px) {
  .pipeline-item .pipeline-button {
    position: absolute;
    bottom: 20px;
    left: 0;
  }
}

@media screen and (max-width: 768px) {
  .pipeline-pair-list .label {
    font-size: 1.8rem;
    font-weight: 600;
  }
  .pipeline-pair-list .text {
    font-size: 1rem;
    padding-right: 12px;
  }
}

/* =======================================
   SP レイアウト（縦並び）
======================================= */

@media screen and (max-width: 767px) {
  .pipeline-row {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    padding: 16px 16px;
    width: 100%;
    margin-left: 0;
  }

  .pipeline-icon img {
    width: 32px;
    height: 32px;
  }

  .pipeline-pair-list .label {
    font-size: 18px;
  }

  .pipeline-pair-list li {
    display: flex;
    flex-direction: column;
  }

  .pipeline-row.step-1,
  .pipeline-row.step-2,
  .pipeline-row.step-3 {
    width: 100%;
    margin-left: 0;
  }
}

/************************************************************
 * Boost2028 - Innovation Card Custom Fix
 * テキストの上下中央寄せ（特定領域専用）
 ************************************************************/
.innovation-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.innovation-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--smp--color--site-white);
}

.section-innovation .c-simple-modal__container {
  overflow: visible !important;
}

@media screen and (min-width: 769px) {
  .section-innovation .c-simple-modal__btn-close {
    width: 18px;
    height: 18px;
    top: -30px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    border: none;
  }
}
@media screen and (max-width: 768px) {
  .section-innovation .c-simple-modal__btn-close {
    width: 4.6875vw;
    height: 4.6875vw;
    top: -7.8125vw;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    border: none;
  }
}

/************************************************************
 * Boost2028 - Section Finance
 ************************************************************/

.section-finance .boost-title-02.color-light-blue {
  color: var(--smp--color--light-blue);
}
.section-finance .boost-title-02.color-olive-green {
  color: var(--smp--color--bright-green);
}

.smp-blue {
  color: hsl(207, 65%, 50%);
}

/* ==============================
   Boost2028 財務フロー図
   ============================== */

.finance-diagram-grid {
  display: grid;

  grid-template-columns: auto;

  grid-template-rows: auto;
  grid-column-gap: 0;
  grid-row-gap: 6px;
}

.finance-source-title {
  grid-area: 1 / 1 / 2 / 3;
}
.finance-source-main {
  grid-area: 2 / 1 / 4 / 3;
}
.finance-source-sub {
  grid-area: 4 / 1 / 5 / 3;
}
.finance-arrow-left-to {
  grid-area: 1 / 3 / 5 / 4;
}
.finance-allocation-title {
  grid-area: 1 / 4 / 2 / 9;
}

.finance-extra-left {
  grid-area: 2 / 9 / 3 / 10;
}
.finance-extra-right {
  grid-area: 3 / 9 / 4 / 10;
}
.finance-arrow-right {
  grid-area: 4 / 9 / 5 / 10;
}
.finance-outcome-title {
  grid-area: 1 / 10 / 2 / 14;
}
.finance-outcome-row.row1 {
  grid-area: 2 / 10 / 3 / 14;
}
.finance-outcome-row.row2 {
  grid-area: 3 / 10 / 4 / 14;
}
.finance-outcome-row.row3 {
  grid-area: 4 / 10 / 5 / 14;
}
.finance-bottom-line {
  grid-area: 5 / 4 / 6 / 14;
}

.finance-allocation-debt-wrapper {
  grid-area: 4 / 4 / 5 / 9;
}

.finance-bottom-line {
  grid-area: 5 / 4 / 6 / 14;
  border-top: 2px dashed var(--smp--color--medium-gray);
  margin: 4px 0;
}

.finance-allocation-shareholder-wrapper {
  grid-area: 6 / 4 / 7 / 9;
}

.finance-outcome-shareholder {
  grid-area: 6 / 10 / 7 / 14;

  border: 1px solid var(--smp--color--site-glay);
  border-radius: 4px;
  padding: 10px 12px;
  box-sizing: border-box;
  background: #fff;
}



/* ------------------------------------------
   Finance：shareholder 用の追加矢印（新クラス）
------------------------------------------ */


/* 新しい矢印のスタイル */
.finance-extra-right-shareholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.finance-extra-right-shareholder .arrow-icon {
  font-size: 1.6rem;
  color: var(--smp--color--smp-green);
  transform: rotate(60deg);
}

/* ------------------------------
   PC 配置（既存 finance を壊さない）
------------------------------ */
@media screen and (min-width: 769px) {
  .finance-allocation-shareholder-wrapper {
    grid-area: 10 / 4 / 11 / 9;
  }
  .finance-extra-right-shareholder {
    grid-area: 10 / 9 / 11 / 10;
  }
  .finance-outcome-shareholder {
    grid-area: 10 / 10 / 11 / 14;
  }
}

/* ------------------------------
   SP 配置（既存矢印と衝突しない）
------------------------------ */
@media screen and (max-width: 768px) {
  .finance-allocation-shareholder-wrapper {
    grid-area: 10 / 1 / 11 / 6 !important;
  }
  .finance-extra-right-shareholder {
    grid-area: 10 / 6 / 11 / 7 !important;
  }
  .finance-outcome-shareholder {
    grid-area: 10 / 7 / 11 / 11 !important;
  }
}


.finance-outcome-shareholder-text {
  font-size: 1.2rem;
  line-height: 1.6;
}

.finance-diagram-grid > div {
  box-sizing: border-box;
}

.finance-source-title,
.finance-allocation-title,
.finance-outcome-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 1.8rem;
  color: var(--smp--color--smp-green);
  border-bottom: 2px solid var(--smp--color--medium-gray);
  margin-bottom: 10px;
}

.finance-source-main,
.finance-source-sub {
  padding: 10px 12px;
  border-radius: 4px;
  margin: 4px 6px;
  background: #f2faf5;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.finance-source-main {
  border: 2px solid #007a4c;
}

.finance-source-sub {
  border: 1px solid #cde7d9;
  background: #f4fbf7;
}

.finance-source-sub.is-plus {
  position: relative;
  margin-top: 24px;
}

.finance-source-sub.is-plus::before {
  content: "+";
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
  line-height: 1;
  color: var(--smp--color--smp-green);
  font-weight: 600;
}

.finance-source-label {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 4px;
  font-weight: 500;
}

.finance-source-label .small {
  font-size: 1rem;
}

.finance-source-value {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  font-weight: 700;
  column-gap: 0.25em;
  line-height: 1;
}

.finance-source-value .num {
  font-size: 2.8rem;
  line-height: 1;
  color: var(--smp--color--smp-green);
}

.section-finance .unit,
.finance-allocation-title .unit,
.finance-box-label .unit,
.finance-source-value .unit {
  font-size: 0.95rem;
  display: inline-block;
  vertical-align: baseline;
}

.finance-allocation-label {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  padding: 14px 8px;
  line-height: 1.2;
  border-radius: 4px;
}

.finance-allocation-label.growth {
  background: #007a4c;
}
.finance-allocation-label.debt {
  background: #4e5aa7;
}
.finance-allocation-label.shareholder {
  background: #c96a16;
}

.finance-box {
  border-radius: 4px;
  padding: 10px 12px;
}

.finance-box.light {
  border: 1px solid #cde7d9;
  background: #f4fbf7;
}

.finance-box-label {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 4px;
  font-weight: 500;
}

.finance-box-value {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  font-weight: 700;
  column-gap: 0.25em;
  flex-wrap: wrap;
  margin-top: 12px;
}
.finance-box-value.is-en {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  font-weight: 700;
  column-gap: 0.25em;
  flex-direction: column;
  margin-top: 12px;
}

.finance-box-value .num {
  font-size: 2.8rem;
  line-height: 1;
  color: var(--smp--color--smp-green);
}

.finance-box-value .unit {
  font-size: 0.95rem;
}

.finance-box-note {
  font-size: 1.4rem;
}

.finance-extra-left,
.finance-extra-right,
.finance-arrow-left,
.finance-arrow-right {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(60deg);
}
.finance-arrow-left-to {
  display: flex;
  align-items: center;
  justify-content: center;
}

.finance-arrow-left-to .arrow-icon,
.finance-extra-left .arrow-icon,
.finance-extra-right .arrow-icon,
.finance-arrow-left .arrow-icon,
.finance-arrow-right .arrow-icon {
  font-size: 1.6rem;
  color: #007a4c;
}

.finance-outcome-row {
  padding: 6px 10px;
  border: 1px solid var(--smp--color--medium-gray);
  display: flex;
  align-items: center;
}

.finance-outcome-text {
  font-size: 1.2rem;
  line-height: 1.6;
}

.finance-allocation-growth-wrapper {
  grid-area: 2 / 4 / 4 / 9;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "label rd"
    "label capex";
  background: var(--smp--color--bright-green);
  border-radius: 4px;
  padding: 8px;
  box-sizing: border-box;
}

.finance-allocation-growth-wrapper .finance-allocation-label.growth {
  grid-area: label;
}

.finance-allocation-growth-wrapper .finance-box.light:nth-of-type(1) {
  grid-area: rd;
}

.finance-allocation-growth-wrapper .finance-box.light:nth-of-type(2) {
  grid-area: capex;
}

.finance-allocation-growth-wrapper .finance-box {
  background: #fff;
  margin: 4px 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.finance-allocation-debt-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "label debt";
  background: var(--smp--color--purple);
  border-radius: 4px;
  padding: 8px;
  box-sizing: border-box;
}

.finance-allocation-debt-wrapper .finance-allocation-label.debt {
  grid-area: label;
}

.finance-allocation-debt-wrapper .finance-box-debt {
  grid-area: debt;
  background: #fff;
  border-radius: 4px;
  margin: 4px 6px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.finance-allocation-shareholder-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "label shareholder";
  background: var(--smp--color--orange);
  border-radius: 4px;
  padding: 8px;
  box-sizing: border-box;
}

.finance-allocation-shareholder-wrapper .finance-allocation-label.shareholder {
  grid-area: label;
}

.finance-allocation-shareholder-wrapper .finance-box-shareholder {
  grid-area: shareholder;
  background: #fff;
  border-radius: 4px;
  margin: 4px 6px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===========================================
   Finance Section - SP Layout (～768px)
   =========================================== */
@media screen and (max-width: 768px) {
  .finance-diagram-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);

    grid-template-rows: repeat(11, auto);
    grid-column-gap: 0;
    grid-row-gap: 4px;
  }

  .finance-source-title {
    grid-area: 1 / 1 / 2 / 11;
  }

  .finance-source-main {
    grid-area: 2 / 1 / 3 / 11;
  }

  .finance-source-sub {
    grid-area: 3 / 1 / 4 / 11;
  }

  .finance-arrow-left-to {
    grid-area: 4 / 1 / 5 / 11;
  }

  .finance-allocation-title {
    grid-area: 5 / 1 / 6 / 6;
  }

  .finance-allocation-growth-wrapper {
    grid-area: 6 / 1 / 8 / 6;
  }

  .finance-allocation-debt-wrapper {
    grid-area: 8 / 1 / 9 / 6;
  }

  .finance-allocation-shareholder-wrapper {
    grid-area: 10 / 1 / 11 / 6;
  }

  .finance-outcome-shareholder {
    grid-area: 10 / 7 / 11 / 11;
  }

  .finance-outcome-shareholder {
    padding: 6px 8px;
  }

  .finance-outcome-shareholder-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .finance-outcome-title {
    grid-area: 5 / 7 / 6 / 11;
  }

  .finance-outcome-row.row1 {
    grid-area: 6 / 7 / 7 / 11;
  }

  .finance-outcome-row.row2 {
    grid-area: 7 / 7 / 8 / 11;
  }

  .finance-outcome-row.row3 {
    grid-area: 8 / 7 / 9 / 11;
  }

  .finance-extra-left {
    grid-area: 6 / 6 / 7 / 7;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .finance-extra-right {
    grid-area: 7 / 6 / 8 / 7;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .finance-arrow-right {
    grid-area: 8 / 6 / 9 / 7;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .finance-bottom-line {
    grid-area: 9 / 1 / 10 / 11;
    display: block;
    margin: 6px 0 4px;
  }

  .finance-arrow-left-to {
    transform: rotate(90deg);
  }

  .finance-source-title,
  .finance-allocation-title,
  .finance-outcome-title {
    font-size: 1.4rem;
    border-bottom: 2px solid var(--smp--color--medium-gray);
    margin-bottom: 6px;
    line-height: 1.25;
  }

  .finance-source-label,
  .finance-box-label,
  .finance-box-note {
    font-size: 1rem;
    line-height: 1.4;
  }

  .finance-box-label.is-en {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .finance-source-label .small {
    font-size: 0.9rem;
  }

  .finance-source-value,
  .finance-box-value {
    column-gap: 0.15em;
  }

  .finance-source-value .num,
  .finance-box-value .num {
    font-size: 1.5rem;
    line-height: 1.1;
  }

  .finance-source-value .unit,
  .finance-box-value .unit {
    font-size: 0.7rem;
  }

  .finance-outcome-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .finance-source-main,
  .finance-source-sub,
  .finance-allocation-growth-wrapper,
  .finance-allocation-debt-wrapper,
  .finance-allocation-shareholder-wrapper,
  .finance-outcome-row {
    padding: 6px 8px;
  }

  .finance-allocation-growth-wrapper .finance-box,
  .finance-allocation-debt-wrapper .finance-box-debt,
  .finance-allocation-shareholder-wrapper .finance-box-shareholder {
    margin: 4px 4px;
    padding: 6px 8px;
  }
  .finance-allocation-label.growth,
  .finance-allocation-label.debt,
  .finance-allocation-label.shareholder {
    font-size: 0.9rem;
  }
}

/* =====================================================
   Boost2028 - 公募増資 調達額の使途（Gridレイアウト）
   ===================================================== */

.finance-usage-diagram-grid {
  display: grid;

  grid-template-columns: auto;
  grid-auto-rows: auto;
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  box-sizing: border-box;
}

.fu-source-title {
  grid-area: 1 / 1 / 2 / 4;
}

.fu-purpose-title {
  grid-area: 1 / 5 / 2 / 13;
}

.fu-source-main {
  grid-area: 2 / 1 / 6 / 4;
}

.fu-arrow-center {
  grid-area: 2 / 4 / 6 / 5;
}

.fu-band-growth {
  grid-area: 2 / 5 / 5 / 6;
}

.fu-item-rd {
  grid-area: 2 / 6 / 3 / 13;
}

.fu-item-invest {
  grid-area: 3 / 6 / 4 / 13;
}

.fu-item-capex {
  grid-area: 4 / 6 / 5 / 13;
}

.fu-band-debt {
  grid-area: 5 / 5 / 6 / 6;
}

.fu-item-debt {
  grid-area: 5 / 6 / 6 / 13;
}

.finance-usage-diagram-grid > div {
  box-sizing: border-box;
}

.fu-source-title,
.fu-purpose-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 1.8rem;
  color: var(--smp--color--smp-green);
  text-align: center;
  justify-content: center;
}

.fu-source-title,
.fu-purpose-title {
  border-bottom: 1px solid var(--smp--color--smp-green);
  padding-bottom: 4px;
  margin-bottom: 10px;
}

.fu-source-main {
  background: var(--smp--color--bright-green);
  border: 1px solid #cde7d9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.fu-source-label {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

.fu-arrow-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fu-arrow-center .arrow-icon {
  font-size: 2rem;
  color: var(--smp--color--smp-green);
}


.fu-band {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 8px 4px;
}

.fu-band-growth {
  background-color: #007a4c;
}

.fu-band-debt {
  background-color: var(--smp--color--purple);
}

.fu-item {
  display: grid;
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
  border: 1px solid var(--smp--color--site-glay);
  background: #ffffff;
}

.fu-item-label {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--smp--color--bright-green);
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  padding: 8px;
}

.fu-item-label-debt {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--smp--color--purple);
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  padding: 8px;
  color: var(--smp--color--white);
}

.fu-item-text {
  padding: 8px 10px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* -------------------------------------------------
   SP レイアウト（〜768px）
   ------------------------------------------------- */
@media screen and (max-width: 768px) {
  .finance-usage-diagram-grid {
    display: grid;

    grid-template-columns: auto;
    grid-auto-rows: auto;
    grid-column-gap: 4px;
    grid-row-gap: 8px;
  }

  .fu-source-title {
    grid-area: 1 / 1 / 2 / 5;
  }

  .fu-source-main {
    grid-area: 2 / 1 / 3 / 5;
  }

  .fu-arrow-center {
    grid-area: 3 / 1 / 4 / 5;
  }

  .fu-purpose-title {
    grid-area: 4 / 1 / 5 / 5;
  }

  .fu-band-growth {
    grid-area: 5 / 1 / 8 / 2;
  }

  .fu-item-rd {
    grid-area: 5 / 2 / 6 / 5;
  }

  .fu-item-invest {
    grid-area: 6 / 2 / 7 / 5;
  }

  .fu-item-capex {
    grid-area: 7 / 2 / 8 / 5;
  }

  .fu-band-debt {
    grid-area: 8 / 1 / 9 / 2;
  }

  .fu-item-debt {
    grid-area: 8 / 2 / 9 / 5;
  }

  .fu-source-label {
    font-size: 1.4rem;
  }

  .fu-source-title,
  .fu-purpose-title {
    font-size: 1.4rem;
  }

  .fu-band {
    font-size: 1.1rem;
  }

  .fu-item {
    grid-template-columns: 1fr;
  }

  .fu-item-label {
    font-size: 1.2rem;
    padding: 6px 8px;
  }

  .fu-item-text {
    font-size: 1rem;
    padding: 6px 8px;
  }

  .fu-arrow-center .arrow-icon {
    font-size: 2rem;
    color: var(--smp--color--smp-green);
    transform: rotate(90deg);
  }
}

/* =========================================================
   Reboot 2027 / Boost 2028 KPI 比較ブロック
   - PC：3カラム横並び（高さ揃え）
   - SP：1カラム縦積み
   ========================================================= */

.kpi-comparison {
  display: flex;
  gap: 32px;
  align-items: stretch;

  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}
.kpi-comparison-en {
  display: flex;
  gap: 32px;
  align-items: stretch;

  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.kpi-column {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-width: 0;
}

.kpi-column-arrow {
  flex: 0 0 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kpi-reboot-body,
.kpi-boost-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.kpi-column-arrow {
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .kpi-column-arrow {
    margin: 0 auto;
  }
}

.kpi-header {
  margin-bottom: 12px;
}

.kpi-header-sub {
  margin-top: 6px;
}

.kpi-reboot-body {
  margin-top: 8px;
}

.kpi-boost-body {
  margin-top: 8px;
}

.kpi-divider {
  margin: 14px 0;
}

.kpi-row-reboot {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--smp--color--site-glay);
  border-radius: 2px;
  background-color: var(--smp--color--site-white);
  margin-bottom: 6px;
}

.kpi-row-label {
  flex: 0 0 40%;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  border-right: 1px solid var(--smp--color--site-glay);
  padding-right: 8px;
}

.kpi-row-value {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.2;
  padding-left: 8px;
}
.kpi-row-value .big {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  padding-left: 8px;
}

.kpi-note {
  margin: 10px 0;
  font-size: 1.1rem;
}

.kpi-row-boost {
  display: grid;
  grid-template-columns: 20% minmax(0, 25%) minmax(0, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.kpi-row-boost.last-child {
  margin-bottom: 15px;
}

.kpi-row-boost-category {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  background-color: #f5f7f5;
  border: 1px solid var(--smp--color--site-glay);
  border-radius: 2px;
  padding: 6px;
  text-align: center;
}

.kpi-row-boost-kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: var(--smp--color--smp-green);
  border: 1px solid var(--smp--color--smp-green);
  border-radius: 2px;
  padding: 6px 8px;
  text-align: center;
  color: var(--smp--color--white);
}

.kpi-row-boost-kpi-main {
  background-color: var(--smp--color--smp-green);
  color: #ffffff;
}

.kpi-row-boost-text {
  font-size: 1.1rem;
  line-height: 1.6;
  border: 1px solid var(--smp--color--site-glay);
  border-radius: 2px;
  padding: 6px 8px;
  background-color: #f0faf5;
}

.kpi-emphasis {
  font-weight: 700;

  font-size: 1.6rem;
  vertical-align: bottom;
}

.kpi-boost-footer .kpi-note-center {
  text-align: center;
  margin-top: 10px;
}

.kpi-arrow-media .image {
  text-align: center;
}

.kpi-arrow-media img {
  max-width: 100%;
  height: auto;
}

.kpi-arrow-media .image.is-pc {
  display: block;
}
.kpi-arrow-media .image.is-sp {
  display: none;
}

/* =========================================================
   英語KPI 専用レイアウト（〜1400px）: 1カラム縦積み
   ========================================================= */

@media screen and (max-width: 1400px) {
  .kpi-comparison-en {
    flex-direction: column;
    gap: 3px;
  }
  .kpi-comparison-en .finance-arrow-left-to {
    transform: rotate(90deg);
  }
}

/* =========================================================
   SP レイアウト（〜768px）: 1カラム縦積み
   ========================================================= */
@media screen and (max-width: 768px) {
  .kpi-comparison {
    flex-direction: column;
    gap: 3px;
  }

  .kpi-column-reboot,
  .kpi-column-boost {
    padding: 12px 0px 16px;
  }

  .kpi-row-reboot {
    flex-direction: column;
  }

  .kpi-row-label {
    flex: none;
    border-right: none;
    border-bottom: 1px solid var(--smp--color--site-glay);
    padding-right: 0;
    padding-bottom: 4px;
  }

  .kpi-row-value {
    padding-left: 0;
    padding-top: 4px;
  }

  .kpi-row-boost {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
    gap: 0;

    .kpi-row-boost-category,
    .kpi-row-boost-kpi,
    .kpi-row-boost-text {
      text-align: left;
    }

    .kpi-row-boost-category {
      justify-content: flex-start;
    }

    .image.is-pc {
      display: none;
    }
    .image.is-sp {
      display: block;
    }
  }
}

@media screen and (min-width: 769px) {
  .kpi-reboot-body,
  .kpi-boost-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
  }

  .kpi-reboot-body .kpi-divider,
  .kpi-boost-body .kpi-divider {
    margin-top: auto;
  }

  .kpi-row-dividend,
  .kpi-boost-footer {
    min-height: 96px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .kpi-boost-footer .kpi-note-center {
    width: 100%;
    text-align: center;
    margin: 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 1400px) {
  .section-finance .kpi-header > .c-hdg-level3-01 {
    display: flex;
    align-items: flex-end;
    min-height: 3.4em;
  }
}

/* =========================================================
　ガバナンスの進化
   5カラム タイムライン（PC：横並び / SP：縦積み）
   ========================================================= */

.step-timeline-5 {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

.step-timeline-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-width: 0;
  padding: 12px 20px;
  border-radius: 4px;
  border: 1px solid var(--smp--color--site-glay);
  background-color: #ffffff;
}

.step-timeline-arrow {
  flex: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.step-timeline-arrow-icon {
  display: inline-block;
  font-size: 2rem;
  color: var(--smp--color--smp-green);
  line-height: 1;
}

.step-timeline-head {
  border-bottom: 2px solid var(--smp--color--site-glay);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.step-timeline-date {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.step-timeline-title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
}

.step-timeline-body {
  font-size: 1.1rem;
  line-height: 1.6;
}

.step-timeline-item-boost {
  border: 2px solid var(--smp--color--smp-green);
}

.step-timeline-head-boost {
  background-color: var(--smp--color--smp-green);
  color: #ffffff;
  border-radius: 20px;
  padding: 10px 20px;
  margin-bottom: 10px;
}

.step-timeline-label-boost {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.step-timeline-title-boost {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
}

/* =========================================================
   SP レイアウト（〜768px）：1カラム縦積み
   ========================================================= */
@media screen and (max-width: 768px) {
  .step-timeline-5 {
    flex-direction: column;
    gap: 16px;
  }

  .step-timeline-item {
    width: 100%;
    padding: 12px 14px;
  }

  .step-timeline-arrow {
    flex: none;
    width: 100%;
    justify-content: center;
  }

  .step-timeline-arrow-icon {
    font-size: 2rem;
    transform: rotate(90deg);
  }

  .step-timeline-date {
    font-size: 1.1rem;
  }
  .step-timeline-title {
    font-size: 1.4rem;
  }
  .step-timeline-body {
    font-size: 1.1rem;
  }
  .step-timeline-label-boost {
    font-size: 0.95rem;
  }
  .step-timeline-title-boost {
    font-size: 1.6rem;
  }
}



/* =============================
   ② 表が100%にならない問題の修正
============================= */
table.c-tbl-data-01.is-sp {
  width: 100% !important;
  table-layout: fixed !important;
  max-width: 100% !important;
}

/* table.c-tbl-data-01.is-sp col {
  width: auto !important;
} */

table.c-tbl-data-01.is-sp td,
table.c-tbl-data-01.is-sp th {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* SP時のはみ出し防止 */
@media (max-width: 768px) {
  table.c-tbl-data-01.is-sp {
    display: table;
    overflow-x: hidden !important;
    
    table-layout: fixed !important;
    width: 100% !important;

  }
}
