@charset "utf-8";



/* ============================================================
  枠
============================================================ */
.detail_inner {
  max-width: var(--wid-1280);
  margin: 0 auto;
  padding: 4rem 0 6rem;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.detail_article {
  flex: 1;
  min-width: 0;
}

/* ============================================================
  パンくずリスト
============================================================ */
.detail_bread {
  margin-bottom: 2rem;

  ol {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
    list-style: none;
    
    color: #888;
  }

  li + li::before {
    content: "›";
    margin-right: .5rem;
    color: #ccc;
  }

  a {
    color: #888;
    text-decoration: none;
    &:hover { 
      color: var(--main-color); 
      text-decoration: underline; 
    }
  }
}

.detail_bread--current { 
  color: #555; 
}

/* ============================================================
  記事ヘッダー
============================================================ */
.detail_head { 
  margin-bottom: 2rem; 
}
.detail_head--flex{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}

.detail_head--date {
  font-family: var(--font-en);

  color: #888;
  margin-bottom: 1rem;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;

  span:first-child {
    background: #f0f0f0;
    color: #555;
    
    padding: .2rem .5rem;
    border-radius: 2px;
  }
}
.detail_head--tag{
  padding: .2rem 1rem;
  border-radius: 2px;
  
  font-weight: 600;
  letter-spacing: .7px;
  display: flex;
  align-items: center;
  justify-content: center;

  &.spe01{
    background: var(--main-color);
    color: #fff;
  }
}

/* ============================================================
   アイキャッチ
============================================================ */
.detail_thumb {
  margin-bottom: 2rem;

  img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
  }
}

/* ============================================================
  SNSシェア
============================================================ */
.detail_share {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 3rem;
}

.detail_share--btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.2s;

  &:hover { opacity: 0.8; }

  span { font-size: 1.2rem; line-height: 1; }

  em {
    font-style: normal;
    background: rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 0.1rem 0.5rem;
    font-size: 1.1rem;
    margin-left: 0.2rem;
  }

  &.post     { background: #000;    color: #fff; }
  &.facebook { background: #1877f2; color: #fff; }
  &.line     { background: #06c755; color: #fff; }
}

/* ============================================================
  記事本文
============================================================ */
.detail_body {
  font-size: var(--main-txt);
  line-height: 1.6;
  color: #333;

  br { content: ''; display: block; margin-top: 1em; }

  > p { margin-bottom: 1.6rem; }

  /* テキストリンク */
  a {
    color: var(--main-color);
    text-decoration: underline;
    text-underline-offset: 2px;
    position: relative;
    &.common_btn{
      background: var(--orange-color);
      height: 48px;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 100px;
      max-width: 400px;
      width: 100%;
      text-decoration: none;
      margin: 1rem auto;

      &::before,
      &::after {
        content: '';
        width: 10px;
        height: 10px;
        border: 0;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        transform: rotate(45deg);
        position: absolute;
        top: 0;
        right: 20px;
        bottom: 0;
        margin: auto;
      }
      &::before{
        right: 30px;
      }

    }
    &:hover {
      opacity: .7;
    }
  }

  
}

.detail_toc {
  background: #faf8f0;
  border: 1px solid #e5e0c8;
  border-radius: 4px;
  padding: 2rem 2.4rem;
  margin: 4rem 0;
}

.detail_toc--head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 1px solid var(--main-color);
  cursor: pointer;
}

.detail_toc--toggle {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
  transform: rotate(45deg);
  transition: transform 0.3s;
  margin-bottom: 0.3rem;
}

.detail_toc.is-closed .detail_toc--toggle {
  transform: rotate(-135deg);
  margin-bottom: 0;
  margin-top: 0.3rem;
}

.detail_toc--head {
  transition: margin-bottom 0.3s, border-bottom-color 0.3s;
}

.detail_toc.is-closed .detail_toc--head {
  margin-bottom: 0;
  border-bottom-color: transparent;
}

.detail_toc--list {
  list-style: none;
  padding-left: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;

  a {
    color: var(--main-color);
    &:hover {
      text-decoration: none;
    }
  }

  > li > ol {
    list-style: none;
    padding-left: 2rem;
    margin-top: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;

    li {
      font-size: 1.5rem; 
    }
  }
}
/* ============================================================
  見出し
============================================================ */

.detail_inner{
  h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8e8e8;
  }
  h2{
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    background: var(--sub-color);
    padding: 1rem 1.5rem;
    border-radius: 2px;
    margin: 4rem 0 1.5rem;
    line-height: 1.5;
  }
  h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sub-color);
    border-bottom: 2px solid var(--sub-color);
    padding-bottom: 0.5rem;
    margin: 4rem 0 1.5rem;
  }

  h4 {
    font-weight: 700;
    color: var(--sub-color);
    border-left: 4px solid var(--sub-color);
    padding-left: 1rem;
    margin: 4rem 0 1rem;
  }

  h5 {
    font-weight: 700;
    color: var(--sub-color);
  }
}


/* ============================================================
アンカーリンク
============================================================ */
.detail_body--anchor {
  list-style: none;
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;

  > li > a {
    color: var(--main-color);
    font-size: 1.5rem;
    &:hover { 
      opacity: .7; 
    }
  }

  ul {
    list-style: none;
    padding-left: 2rem;
    margin-top: .5rem;
    display: flex;
    flex-direction: column;
    gap: .2rem;

    a {
      color: var(--main-color);
      text-decoration: underline;
      text-underline-offset: 2px;
      
    }
  }
}

/* ============================================================
  リスト_ul
============================================================ */
.detail_body--ul {
  list-style: none;
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;

  > li {
    font-size: 1.5rem;
    padding-left: 1.2rem;
    position: relative;

    &::before {
      content: "・";
      position: absolute;
      left: 0;
    }
  }

  ul {
    list-style: none;
    padding-left: 1.6rem;
    margin-top: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;

    li {
      
      padding-left: 1.2rem;
      position: relative;
      color: #555;

      &::before {
        content: "・";
        position: absolute;
        left: 0;
        color: #888;
      }
    }
  }
}

/* ============================================================
  リスト?ol
============================================================ */
.detail_body--ol {
  list-style: decimal;
  padding-left: 2rem;
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;

  > li { font-size: 1.5rem; }

  ol {
    list-style: decimal;
    padding-left: 2rem;
    margin-top: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;

    li {  color: #555; }
  }
}

/* ============================================================
  リスト_dl
============================================================ */
.detail_body--dl {
  margin: 4rem 0;

  dt {
    display: inline-block;
    background: var(--sub-color);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 3px;
    margin-bottom: 0.6rem;
  }

  dd {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #333;
    padding-left: 0.4rem;
  }
}

/* ============================================================
  マーカー
============================================================ */
.detail_body--mark {
  &.yellow { background: linear-gradient(transparent 60%, #ffe566 60%); }
  &.pink   { background: linear-gradient(transparent 60%, #ffb3c6 60%); }
  &.blue   { background: linear-gradient(transparent 60%, #a8d8f0 60%); }
  &.red    { color: #ff0000; font-weight: 700; }
  &.green  { background: linear-gradient(transparent 60%, #a8f0c0 60%); }
}

/* ============================================================
  ボタン
============================================================ */
.detail_body--btns {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 4rem auto;
}

.detail_body--btn {
  width: var(--wid-320);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;

  &::after {
    content: "";
    width: 25px;
    height: 25px;
    background: url(../../common/img/click_arrow.svg) no-repeat center/contain;
    flex-shrink: 0;
  }

  &.outline {
    color: var(--sub-color);
    border: 2px solid var(--sub-color);
    background: #fff;

    &:hover {
      background: var(--main-color);
      color: #fff;
      transition: all .3s;
      &::after {
        filter: invert(1) brightness(100);
      }
    }
    
  }

  &.fill {
    color: #fff;
    background: var(--sub-color);
    border: 2px solid var(--sub-color);

    &:hover {
      background: #fff;
      color: var(--main-color);
      transition: all .3s;
      &::after {
        filter: initial;
      }
    }

    &::after {
      filter: invert(1) brightness(100);
    }
  }
}
/* ============================================================
  table
============================================================ */
.detail_body--tbl {
  overflow-x: auto;
  margin: 4rem 0;

  table {
    width: 100%;
    border-collapse: collapse;
  }

  th {
    background: var(--sub-color);
    color: #fff;
    padding: 1.5rem 1.2rem;
    font-weight: 700;
    font-size: 1.6rem;
    text-align: left;
    border: 1px solid #09818f;
    white-space: nowrap;
  }

  td {
    padding: 0.8rem 2rem;
    
    border: 1px solid #ddd;
    color: #333;
  }

  tbody tr:nth-child(even) td { background: #f8f8f8; }
}

/* 収入・支出テーブル */
.detail_body--tbl.tbl-income {
  th, td {
    text-align: center;
  }

  .section-head th {
    font-size: 1.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--sub-color);
    color: #fff;
    border: 1px solid #09818f;
  }

  tr.highlight td {
    background: #f8d7da;
    font-weight: 700;
  }

  tr.result td {
    background: #f8d7da;
    font-weight: 700;
  }

  tbody tr:nth-child(even) td { background: transparent; }
}

/* キャッシュフローテーブル */
.detail_body--tbl.tbl-cashflow {
  th, td {
    text-align: center;
  }

  th {
    border: 1px solid #09818f;
  }

  tbody tr:nth-child(even) td { background: transparent; }
}

/* ============================================================
  引用
============================================================ */
.detail_body--bq {
  position: relative;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 2rem 2rem 1.6rem 5rem;
  margin: 4rem 0;

  &::before {
    content: "\201C";
    font-size: 5rem;
    color: var(--sub-color);
    position: absolute;
    left: 1.2rem;
    top: 0.8rem;
    line-height: 1;
    font-family: Georgia, serif;
  }

  p {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    word-break: break-all;
  }

  cite {
    display: block;
    text-align: right;
    font-size: 1.3rem;
    color: #888;
    font-style: normal;
  }
}

/* テキストボックス */
.detail_body--box {
  border: 1px solid #a8c8e8;
  border-radius: 4px;
  padding: 1.6rem 2rem;
  margin: 4rem 0;

  p { margin-bottom: 0.8rem; }
  p:last-child { margin-bottom: 0; }

  /* ぶら下げインデント用 */
  .indent {
    display: block;
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 0.8rem;
  }
  .indent:last-child { margin-bottom: 0; }
}

/* ヘッダー付きボックス（共通） */
.detail_box {
  border: 1px solid #22adad;
  border-radius: 4px;
  margin: 4rem 0;
  overflow: hidden;

  p { margin-bottom: 0.8rem; }
  p:last-child { margin-bottom: 0; }

  .indent {
    display: block;
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 0.8rem;
  }
  .indent:last-child { margin-bottom: 0; }
}

.detail_box--head {
  background-color: #22adad;
  color: #fff;
  font-weight: 700;
  padding: 0.8rem 2rem;
  text-align: center;
}

.detail_box--body {
  padding: 1.6rem 2rem;
}

/* セミナーCTA用の追加スタイル */
.detail_box.is-cta .detail_box--head {
  padding: 1.2rem 2rem;
  font-size: 1.8rem;
  line-height: 1.6;
}

.detail_box.is-cta .detail_box--body img {
  display: inline-block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin-bottom: 1.2rem;
}

.detail_box.is-cta .detail_box--body .flex {
  text-align: center;
}

.detail_box--label {
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.detail_box--btn {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  margin-top: 1.2rem;
}

.detail_box--note {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-top: 0.4rem;
}

/* シンプルリスト */
.detail_body--list {
  list-style: none;
  background: #faf8f0;
  border: 1px solid #e5e0c8;
  border-radius: 4px;
  padding: 1.2rem 1.6rem;
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;

  li {
    font-size: 1.5rem;
    padding-left: 1.2rem;
    position: relative;

    &::before {
      content: "・";
      position: absolute;
      left: 0;
    }
  }
}

/* アテンションボックス */
.detail_body--attention {
  border: 1px solid var(--sub-color);
  border-radius: 4px;
  overflow: hidden;
  margin: 4rem 0;

  > p {
    background: var(--sub-color);
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 0.8rem 1.4rem;
    margin: 0;
  }

  > div {
    padding: 1.4rem 1.6rem;

    > p { margin-bottom: 1rem; }

    .detail_body--list { margin-bottom: 0; }
  }
}

/* 画像＋キャプション */
.detail_body--figure {
  margin: 4rem 0;
  text-align: center;

  img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: inline-block;
  }

  figcaption {
    font-size: 1.3rem;
    color: #666;
    margin-top: 0.6rem;
    line-height: 1.6;
  }
}

/* ============================================================
   CTAバナー
============================================================ */
.detail_cta {
  background: var(--main-color);
  border-radius: 4px;
  padding: 4rem 3rem;
  margin: 4rem 0 3rem;
  text-align: center;
  color: #fff;

  h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1.6rem;
    background: none;
  }

  p {
    
    line-height: 1.9;
    margin-bottom: 2.4rem;
    text-align: left;
  }
}

.detail_cta--btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 2px solid #fff;
  color: #fff;
  padding: 1rem 2.4rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  transition: all .3s;

  &:hover {
    background: #fff;
    color: var(--main-color);
    transition: all .3s;
    &::after {
      filter: initial;
    }
  }

  &::after {
    content: "";
    width: 25px;
    height: 25px;
    background: url(../../common/img/click_arrow.svg) no-repeat center/contain;
    flex-shrink: 0;
    filter: invert(1) brightness(100);
  }
}

/* ============================================================
  著者情報
============================================================ */
.detail_author {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 2rem;
  margin: 3rem 0;

  > img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }

  > div {
    p:first-child {
      
      font-weight: 700;
      margin-bottom: 0.4rem;

      span { font-weight: 700; }
      a { color: var(--main-color); font-weight: 400; }
    }

    p:last-child {
      font-size: 1.3rem;
      color: #555;
      line-height: 1.7;
    }
  }
}

/* ============================================================
  タグ
============================================================ */
.detail_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.6rem 0;

  a {
    display: inline-block;
    background: var(--main-color);
    color: #fff;
    font-size: 1.2rem;
    padding: 0.3rem 1rem;
    border-radius: 3px;
    text-decoration: none;
    transition: opacity 0.2s;

    &:hover { opacity: 0.8; }
  }
}

/* ============================================================
  関連記事
============================================================ */
.detail_related {
  margin-top: 2rem;

  h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sub-color);
    border-left: 4px solid var(--sub-color);
    padding-left: 0.8rem;
    margin-bottom: 2rem;
    line-height: 1.4;
    color: #fff;
  }

  ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
  }

  li {
    a {
      display: block;
      text-decoration: none;
      color: #333;
      transition: opacity 0.2s;
      &:hover { opacity: 1; }
    }

    .detail_related--thumb {
      overflow: hidden;
      border-radius: 4px;
      margin-bottom: 0.8rem;
    }

    img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    a:hover img {
      transform: scale(1.1);
    }

    p {
      font-size: 1.3rem;
      line-height: 1.6;
    }

    p .line {
      display: inline;
      background-image: linear-gradient(currentColor, currentColor);
      background-position: 0 100%;
      background-repeat: no-repeat;
      background-size: 0 1px;
      transition: background-size 0.3s ease;
    }

    a:hover p .line {
      background-size: 100% 1px;
    }
  }
}

/* 関連記事カテゴリラベル */
.detail_related--cat {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.2rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 0.4rem;
}

/* ============================================================
  レスポンシブ（タブレット 1024px以下）
============================================================ */
@media screen and (max-width: 1024px) {
  .detail_inner {
    max-width: 100%;
    padding: 3rem 3rem 5rem;
    gap: 3rem;
  }

  #aside {
    width: 260px;
  }
}

/* ============================================================
  レスポンシブ（スマホ 767px以下）
============================================================ */
@media screen and (max-width: 767px) {

  .detail_inner {
    flex-direction: column;
    padding: 2rem 4% 4rem;
    gap: 3rem;

    h1 {
      font-size: 2.2rem;
    }
    h2 {
      font-size: 1.8rem;
    }
    h3 {
      font-size: 1.6rem;
    }
    h4 {
      font-size: 1.5rem;
    }
  }

  #aside {
    width: 100%;
  }

  .detail_head--title {
    font-size: 2rem;
  }

  .detail_share {
    gap: .5rem;
  }
  .detail_share--btn {
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
  }

  .detail_body--tbl {
    th, td {
      font-size: 1.3rem;
      padding: 0.6rem 0.8rem;
    }
  }

  .detail_body--btns {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .detail_body--bq {
    padding: 1.6rem 1.6rem 1.4rem 3.6rem;

    &::before {
      font-size: 3.6rem;
      left: 0.6rem;
    }
  }

  .detail_toc {
    padding: 1.6rem;
  }

  .detail_cta {
    padding: 3rem 2rem;

    h2 {
      font-size: 1.7rem;
    }
  }

  .detail_cta--btn {
    font-size: 1.3rem;
    padding: 1rem 1.6rem;
  }

  .detail_author {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.6rem;

    > div p:last-child {
      text-align: left;
    }
  }

  .detail_related ul {
    grid-template-columns: 1fr;
  }
  .detail_related li img {
    height: 200px;
  }
}

/* ============================================================
  実績セクション（トップの .number-wrap を埋め込む）
  2列レイアウト / 最低フォント1.6rem
============================================================ */
.detail_body--performance {
  margin: 2.5rem 0;
}

.detail_body--performance .number-wrap {
  background: #f5f9fa;
  border: 1px solid #d8e6e8;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  box-sizing: border-box;
}

.detail_body--performance .heading {
  text-align: center;
  margin-bottom: 2rem;
}

.detail_body--performance .heading p:first-child {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #1a8a8a;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.detail_body--performance .heading p:last-child {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

.detail_body--performance .number-flex {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.detail_body--performance .number-flex > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.detail_body--performance .number-contents {
  text-align: center;
  padding: 1.8rem 1rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e0ecee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  min-width: 0;
}

.detail_body--performance .number-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

.detail_body--performance .number-title sup {
  font-size: 1.2rem;
  color: #999;
}

.detail_body--performance .number-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a8a8a;
  line-height: 1.1;
  word-break: keep-all;
}

.detail_body--performance .number-value span {
  font-size: 1.6rem;
  margin-left: 0.2em;
  color: #333;
}

.detail_body--performance .number-subcontents {
  text-align: center;
  font-size: 1.6rem;
  color: #666;
  line-height: 1.6;
  margin-top: 0.6rem;
}

.detail_body--performance .number-subcontents span {
  display: inline;
}

.detail_body--performance .number-subcontents span:empty {
  display: none;
}

.detail_body--performance .number-memo {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #666;
  padding-top: 1.5rem;
  border-top: 1px dashed #cfdde0;
}

.detail_body--performance .number-memo sup {
  font-size: 1.3rem;
}

/* ---- 1024px以下（タブレット） ---- */
@media screen and (max-width: 1024px) {
  .detail_body--performance .number-wrap {
    padding: 2rem 1.5rem;
  }
  .detail_body--performance .number-flex {
    gap: 1rem;
  }
  .detail_body--performance .number-contents {
    padding: 1.5rem 0.8rem;
    gap: 0.6rem;
  }
  .detail_body--performance .number-title {
    font-size: 1.6rem;
  }
  .detail_body--performance .number-value {
    font-size: 2.4rem;
  }
  .detail_body--performance .number-value span {
    font-size: 1.6rem;
  }
}

/* ---- 767px以下（スマホ） ---- */
@media screen and (max-width: 767px) {
  .detail_body--performance {
    margin: 2rem 0;
  }
  .detail_body--performance .number-wrap {
    padding: 1.2rem 0.6rem;
    overflow: hidden;
  }
  .detail_body--performance .heading {
    margin-bottom: 1.2rem;
  }
  .detail_body--performance .heading p:first-child {
    font-size: 1.8rem;
  }
  .detail_body--performance .heading p:last-child {
    font-size: 1.6rem;
  }
  .detail_body--performance .number-flex {
    gap: 0.6rem;
    margin-bottom: 1rem;
  }
  .detail_body--performance .number-contents {
    padding: 1rem 0.4rem;
    gap: 0.4rem;
  }
  .detail_body--performance .number-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .detail_body--performance .number-value {
    font-size: 1.8rem;
    line-height: 1.2;
    word-break: break-all;
    overflow-wrap: anywhere;
  }
  .detail_body--performance .number-value span {
    font-size: 1.6rem;
    margin-left: 0.1em;
  }
  .detail_body--performance .number-subcontents {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-top: 0.3rem;
    word-break: break-all;
  }
  .detail_body--performance .number-memo {
    font-size: 1.6rem;
    padding-top: 1rem;
  }
}


