@charset "UTF-8";

/*改行位置調整 デフォルトでは改行しない（PC表示時） */
.br-sm {
  display: none;
}
/* スマホ表示時のみ改行させる */
@media screen and (max-width: 480px) {
  .br-sp {
    display: inline;
  }
  
  .br-sm::after {
    content: "\A";     /* 改行を挿入 */
    white-space: pre;
  }
}

.p-block-3rd {
  overflow-x: hidden; /* 子要素のはみ出しを隠す */
}

/*==== ヘッダー内お問い合わせボタンの色変更 ====*/

.l-header-ed23__contact a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  background-color: #0072bc;
}

.l-header-ed23__contact a:hover {
  color: #070f26;
  background-color: #fff;
  border: 1px solid #0072bc;
  padding: 4px 16px;
}

/*====見出しh1〜h4 をすべてゴシック体に ==== */
h1,
h2,
h3,
h4 {
  font-family: "Yu Gothic", "YuGothic", "Meiryo", "Helvetica Neue", Arial,
  sans-serif !important;
}

/*TOPのサービス名*/
/*TOPのサービス名*/
h1 {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  background-color: dodgerblue; /*背景色*/
  box-shadow: 4px 4px 0 #125eb6;
  padding: 1rem 2rem;
}

.logo-heading {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
  to right,
  rgba(30, 144, 255, 0.1) 0%,
  rgba(30, 144, 255, 0.8) 10%,
  rgba(255, 255, 255, 0.8) 17%,
  rgba(255, 255, 255, 1) 50%,
  rgba(255, 255, 255, 0.8) 83%,
  rgba(30, 144, 255, 0.8) 90%,
  rgba(30, 144, 255, 0.1) 100% /* 右端：透明 */
  );
  box-shadow: 0px 0px 0 #4c90bd;
  padding: 1.5rem 2rem;
  margin: 0 auto;
  text-align: center;
}

.logo-heading .logo-img {
  height: auto; /* サイズ調整：スマホ〜PC */
  max-height: 80px; /* 最大高さ */
  width: auto; /* 幅は自動調整 */
  max-width: 100%;
  object-fit: contain;
}

.logo-heading .logo-text sup {
  font-size: 0.6em;
  vertical-align: super;
}

@media (max-width: 768px) {
  .logo-heading {
    margin-top: 0;                 /* 余白は消す */
    transform: translateY(-2.2em); /* 約2行分上に */
  }
}
@media (max-width: 768px) {
  .logo-heading {
    background: linear-gradient(
    to right,
    rgba(30, 144, 255, 0.8) 0%,
    rgba(255, 255, 255, 1) 15%,
    rgba(255, 255, 255, 1) 85%,
    rgba(30, 144, 255, 0.8) 100%
    );
  }
}

.p-content-header__lead,
.p-content-header__sub-lead {
  width: 80%; /* h1と同じ幅に */
  margin: 0.5em auto 0; /* 中央寄せ */
  text-align: center; /* テキスト中央 */
  line-height: 1.5;
  padding: 0.5rem 0;
}

/* 見出し */
.p-content-header__lead {
  /* 最小1.1rem, 推奨4.5vw, 最大2.8rem */
  font-size: clamp(1.1rem, 4.5vw, 2.8rem);
  font-weight: bold;
}

/* サブリード */
.p-content-header__sub-lead {
  /* 最小0.85rem, 推奨3.5vw, 最大2.0rem */
  font-size: clamp(0.85rem, 3.5vw, 2.0rem);
  line-height: 1.6;
}

/*////====見出し====////*/
h2 {
  margin-top: 3em;
  padding: 0.5em; /*文字周りの余白*/
  color: #000; /*文字色*/
  background: rgba(25, 162, 252, 0.1); /*背景色*/
  border-bottom: solid 4px dodgerblue; /*下線*/
  font-size: 0.9em; /*フォントサイズ*/
  font-weight: 500;
}
/* スマホ（480px以下のみ） */
@media (max-width: 480px) {
  h2 {
    margin-top: 1em;       /* 上余白を縮める */
    margin-bottom: 0.em;    /* 本文に近づける */
    padding: 0.3em 0.4em;    /* 帯を薄くして圧迫感を減らす */
    font-size: 0.8em;        /* フォントサイズも少し小さく */
    line-height: 1.3;        /* 行間を確保して詰まりすぎ防止 */
  }
  /*h2で呼ぶclass*/
  .c-head-lg{
    font-size:larger;
    font-weight: 600;
    margin: 0 auto 0.8em;
  }
}

h3 {
  position: relative;
  padding: 0.25em 0;
  font-size: 1.15em; /* ← 少し小さめに調整 */
  font-weight: bold; /* ← 必要に応じて明示 */
  line-height: 1.4; /* ← 可読性向上 */
}

h3:after {
  content: "";
  display: block;
  height: 3px;
  background: -webkit-linear-gradient(to right, dodgerblue, transparent);
  background: linear-gradient(to right, dodgerblue, transparent);
}

/*h3で呼ぶclass*/
.c-head-md {
  font-size: 1.6em; /* 小さめに調整 */
  font-weight: bold;
  padding: 0.5em 0;
  margin: 2em 0 1em;
}

/* スマホ（480px以下のみ） */
@media (max-width: 480px) {
  h3 {
    margin-top: 0.9em;
    margin-bottom: 0.5em;
    padding: 0.2em 0.4em;
    font-size: 1em;       /* フォントサイズを少し縮小 */
    line-height: 1.4;
  }
  
  h3:after {
    height: 2px; /* 装飾ラインを少し薄く */
  }
  
  .c-head-md {
    font-size: 1.2em;     /* PCより縮小 */
    font-weight: bold;
    padding: 0.4em 0;
    margin: 1.5em 0 0.8em;
  }
}

h4 {
  position: relative;
  padding-left: 1em;
  margin: 1.5em 0 0.5em;
  font-size: 1.1em;
  font-weight: bold;
  color: #125eb6;
  border-left: 4px solid dodgerblue;
  background: linear-gradient(to right, rgba(30, 144, 255, 0.05), transparent);
}

.responsive-list {
  padding-left: 1em;          /* リストの左余白を調整 */
}

.responsive-list li strong {
  font-size: 1em;
  display: inline-block;
  margin: 0 0;
}

.responsive-list li {
  font-size: 1em;           /* 本文フォントも少し縮小 */
  line-height: 1.6;           /* 行間を確保して読みやすく */
  margin: 1em 0;         /* 各項目の間隔 */
}

@media (max-width: 480px) {
  h4 {
    font-size: 0.9em;             /* フォントを少し縮小 */
    margin: 1em 0 0.5em;
    padding-left: 0.8em;
    border-left-width: 3px;
  }
  .responsive-list li strong{
    font-size: 0.85em;
  }
  .responsive-list li {
    font-size: 0.85em;
  }
}


/*//////////////////////////*/
.service-txt, .point li {
  font-size: 1.2em;
  line-height: 1.6;
  color: #000;
  margin: 0 0 1em 0;
  padding: 0;
  word-break: break-word;
}
.point li{
  line-height: 1em;
  padding: 0.1em 0 0;
}

@media screen and (max-width: 767px) {
  .service-txt, .point li {
    font-size: 0.8em;
    line-height: 1.5;
  }
}

.small-text {
  font-size: clamp(10px, 1.5vw, 12px);
  line-height: 1.5;
}

.c-img {
  text-align: center;
}

.c-img img {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  max-width: 70%;   /* 親幅の90%まで */
  max-height: 500px; /* PC時の最大高さを制限 */
  height: auto;
}

.c-img-caption {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  margin-top: 0.5em;
  color: #555;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .c-img img {
    max-width: 100%;
    max-height: none; /* スマホでは高さ制限解除 */
  }
  .c-img-caption {
    font-size: 1rem;
    margin-top: 0.4em;
  }
}

/*==== 表のcaptionのフォント設定 ====*/
table caption {
  font-size: 1.1em; /* 文字サイズ */
  font-weight: 600; /* 太字 */
  text-align: center; /* 中央寄せ（必要に応じて変更） */
  padding: 0; /* 上下余白 */
}

@media screen and (max-width: 768px) {
  table caption{
    font-size: 0.9em;
    text-align: left;
  }
}


/*5つの特長の箇条書き*/
.c-tagged-list {
  counter-reset: tag;
  list-style: none;
  padding-left: 2em;
  margin: 2em 0;
}

.c-tagged-list li {
  counter-increment: tag;
  position: relative;
  padding-left: 3.5em;
  margin-bottom: 0.5em;
  font-size: 1.3em;
  font-weight: 500;
  color: #222;
}

.c-tagged-list li::before {
  content: counter(tag);
  position: absolute;
  left: 0;
  top: 0.15em;
  padding: 0.2em 0.8em;
  background-color: dodgerblue;
  color: white;
  font-size: 0.85em;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  line-height: 1;
  white-space: nowrap;
}

/*h3の先頭数字を四角で囲む*/
.c-tagged-heading .tag-box {
  display: inline-block;
  background-color: dodgerblue;
  color: white;
  font-size: 0.85em;
  font-weight: bold;
  padding: 0.2em 0.8em;
  margin-right: 0.6em;
  margin-bottom: 0.1em; /* ← 追加：下に少し余白を作る */
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2; /* ← 1 より少し高くしてもOK */
  white-space: nowrap;
}

/*箇条書きの先頭記号強制表示*/
.c-block-list--disc {
  list-style-type: disc !important;
  padding-left: 1.5em !important;
}

@media screen and (max-width: 768px) {
  .c-tagged-list {
    padding-left: 0;
  }
  
  .c-tagged-list li {
    padding-left: 2.5em;
    font-size: 0.9em; /* フォントサイズを少し小さめに */
  }
  
  .c-tagged-list li::before {
    font-size: 0.9em; /* 番号ラベルも少し小さく */
    padding: 0.15em 0.6em; /* ラベルの余白も調整 */
  }
  
  .c-tagged-heading .tag-box {
    font-size: 0.8em; /* 見出しタグのサイズも調整 */
    padding: 0.2em 0.6em;
  }
}

/*==== 2カラムチャート+脚注 ====*/
.c-2column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.c-2column > div {
  flex: 1 1 48%;
  box-sizing: border-box;
}

.c-2column img {
  width: 100%;
  height: auto;
  display: block;
}

/* 図タイトル */
.c-img-title {
  font-size: 0.9em;
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 4px;
  text-align: center;
}

/* 図の脚注 */
.c-img-footnote {
  font-size: 0.8em;
  margin-top: 8px;
  line-height: 1.6;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

/* 画面幅が768px以下のときは縦並びにする */
@media (max-width: 768px) {
  .c-2column {
    flex-direction: column;
  }
  .c-2column > div {
    flex: 1 1 100%;
  }
  .c-img-title {
    font-size: 0.8em;
  }
  .c-img-footnote {
    font-size: 0.7em;
  }
}

/*////==== お問い合わせコーナー ====////*/
.contact-panel {
  padding: 20px 10px;
  margin: 1em auto 3em;
  text-align: center;
  background-color: #fff;
  color: #333;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  font-family: "Helvetica Neue", sans-serif;
}

.contact-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
}

.contact-title {
  font-size: 1.4em;
  margin: 0 10px;
  font-weight: bold;
}

.contact-line {
  flex-grow: 1;
  border: none;
  border-top: 6px double #0072bc;
  max-width: 100px;
}

.contact-dept {
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 1em;
}

.contact-phone-time {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 1em;
  line-height: 1em;
  margin: 1em auto;
}

.outside {
  font-size: 0.8em;
  line-height: 1em;
}

.contact-phone {
  display: flex;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  color: #000;
}

.contact-icon {
  font-size: 1.5em;
  margin-right: 8px;
}

.contact-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #0072bc;
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 0px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #004080;
}

@media screen and (min-width: 600px) {
  .contact-phone-time {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  .contact-panel{
    margin: 1em 0 2em;
  }
  .contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;          /* ← 修正①：横並び維持 */
    gap: 0.5em;                 /* ← 適度な間隔だけ許容 */
    margin-bottom: 1em;
  }
  
  .contact-title {
    font-size: 1.1em;
    margin: 0 8px;              /* ← 横に少し余白 */
    white-space: nowrap;       /* ← 改行させない */
  }
  .contact-dept {
    font-size: 1.1em;
  }
  
  .contact-phone-time {
    font-size: 0.9em;
  }
  .outside{
    font-size: 0.8em;
  }
  
  .contact-line {
    display: block;
    flex-grow: 1;
    max-width: 80px;           /* ← 長すぎを抑える */
    border-top: 4px double #0072bc;
    height: 0;
  }
  
  .contact-button {
    display: inline-block;
    width: auto;               /* ← 修正②：ボタン幅を戻す */
    font-size: 0.8em;
    padding: 0.7em 1.5em;      /* ← 少しだけコンパクトに */
    box-sizing: border-box;
  }
}


/*////==== 主要ベンチマークテーブル ====////*/
/* テーブル全体を横スクロール可能に */
.table-wrapper {
  overflow-x: auto;
  width: 100%;
}

/* テーブル設定 */
.benchmark-table {
  border-collapse: collapse;
  font-family: sans-serif;
  font-size: 0.8em;
  min-width: 600px; /* 横スクロールを有効にするための基準 */
  width: 100%;
  table-layout: fixed;
}

/* 共通セル */
.benchmark-table th,
.benchmark-table td {
  border: 1px solid #999;
  padding: 0.2em;
  white-space: nowrap;
  vertical-align: middle;
}

/* ヘッダー */
.benchmark-table th {
  background-color: rgb(30, 144, 255);
  color: white;
  text-align: center;
}

/* 奇数・偶数行 */
.benchmark-table tr:nth-child(even) td {
  background-color: #e6f4ff;
}

/* 左寄せクラス */
.benchmark-table .left {
  text-align: left;
  padding-left: 12px;
  padding-right: 12px;
}

/* 中央寄せクラス */
.benchmark-table .center {
  text-align: center !important;
  vertical-align: middle !important;
}

/* 列幅指定（px単位で強制固定） */
.benchmark-table th:nth-child(1),
.benchmark-table td:nth-child(1) {
  width: 120px;
}
.benchmark-table th:nth-child(2),
.benchmark-table td:nth-child(2) {
  width: 120px;
}
.benchmark-table th:nth-child(3),
.benchmark-table td:nth-child(3) {
  width: 40%;
  max-width: 140px;
  text-align: left;
  white-space: normal !important;
  word-break: break-word;
}
.benchmark-table th:nth-child(3){
  text-align: center;
}

.benchmark-table th:nth-child(4),
.benchmark-table td:nth-child(4),
.benchmark-table th:nth-child(5),
.benchmark-table td:nth-child(5),
.benchmark-table th:nth-child(6),
.benchmark-table td:nth-child(6) {
  width: 80px;
  text-align: center !important;
  vertical-align: middle !important;
}

@media screen and (min-width: 769px) {
  .table-wrapper {
    width: 80%;
    margin: 0 auto; /* 中央寄せ */
  }
}
/* 折り返し対応：主な指数列 */
.benchmark-table .index-cell {
  text-align: left;
  white-space: normal !important;
  word-break: break-word;
}

/* 背景色を無効にする行 */
.benchmark-table tr.no-bg td {
  background-color: #fff !important;
}
/* 特定行に強制的に水色を適用 */
.benchmark-table tr.force-lightblue td {
  background-color: #e6f4ff !important;
}
/* 左端セルだけ白背景を維持する（強めのセレクタに変更） */
.benchmark-table tr.force-lightblue td.white-bg {
  background-color: #fff !important;
}
/*主要ベンチマークsp*/
@media screen and (max-width: 768px) {
  /*.benchmark-table caption {
    line-height: 1.2em;
    text-align: left !important;
  }*/
  .benchmark-table{
    font-size: 0.75em;
    line-height: 1.2em;
  }
}

/*////==== ［3］独自ベンチマーク 付与数・率====////*/
.benchmark-original {
  width: 100%;
  margin-top: 1em;
}

.benchmark-original .table-wrapper {
  overflow-x: auto; /* レスポンシブ横スクロール */
}

.benchmark-original table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  text-align: center;
  font-size: 0.8em;
}

.benchmark-original th,
.benchmark-original td {
  border: 1px solid #ccc;
  padding: 6px 8px;
  white-space: nowrap;
}

.benchmark-original thead th {
  background-color: dodgerblue;
  color: white;
}

/* ABICオリジナル列ヘッダー色変更 */
.benchmark-original th.col-abic {
  background-color: #1e90ff; /* 背景濃紺 */
  color: #fff; /* 文字白 */
}
/* ABICオリジナル列td変更 */
.benchmark-original td.col-abic {
  background-color: #1e8fff0f; /* 淡い水色 */
  color: #000;
}

.benchmark-original th.col-other,
.benchmark-original td.col-other {
  background-color: #f2f8ff; /* さらに淡い水色 */
  color: #1e3a8a; /* 文字は濃い青 */
}

.benchmark-original tbody tr:last-child td {
  font-weight: bold;
  background-color: #1e8fff35;
}

/* 3～4列目の外周を太い#0072BCに（tdのみ） */
.benchmark-original td:nth-child(3) {
  border-left: 3px solid #1e90ff;
}

.benchmark-original td:nth-child(4) {
  border-right: 3px solid #1e90ff;
}
/* 3～4列目の最終行の下線を太く */
.benchmark-original tbody tr:last-child td:nth-child(3),
.benchmark-original tbody tr:last-child td:nth-child(4) {
  border-bottom: 3px solid #0072bc;
}

@media screen and (max-width: 768px) {
  .benchmark-original {
    font-size: 0.75em; /* 全体フォントをやや小さめに */
  }
  
  .benchmark-original .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .benchmark-original table {
    min-width: 600px; /* スクロールしやすいサイズに調整 */
    font-size: 0.9em;
  }
  
  .benchmark-original thead th,
  .benchmark-original tbody td {
    padding: 3px 0px;
  }
  
  .benchmark-original caption {
    font-size: 1.2em;
    line-height: 1em;
    padding: 0.5em 0;
    text-align: left;
  }
  
  /* テーブル外に説明テキストを補足する余白 */
  .benchmark-original {
    margin-left: 0.5em;
    margin-right: 0.5em;
  }
}

/*////==== [3]3-2 ピクテの例 ====////*/
.pictet-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 0;
}

.pictet-text-block {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

.pictet-image-block {
  flex-shrink: 0;
  max-width: 60%;
}

.pictet-image-block img {
  width: 100%;
  height: auto;
}

/* スマホ時は縦並びで画像が下 */
@media (max-width: 768px) {
  .pictet-content-wrapper {
    flex-direction: column;
  }
  .pictet-image-block {
    max-width: 100%;
  }
  .pictet-text-block{
    font-size: 1.1em;
  }
}

/*////==== [4]独自インデックス一覧 アコーディオン式表 ====////*/
/* 親ラッパー */
.accordion-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* テーブル本体（共通） */
.accordion-table {
  border-collapse: collapse;
  font-family: sans-serif;
  font-size: 0.85em;
}

.accordion-table th,
.accordion-table td {
  border: 1px solid #ccc;
  padding: 5px;
  text-align: left;
}

/* ヘッダー色 */
.accordion-table th {
  background-color: #19a2fc;
  color: white;
  font-weight: bold;
  text-align: center;
}

/* 親行（折りたたみ可能行） */
.accordion-parent td:first-child {
  position: relative;
  padding-left: 1.5em; /* アイコン分の余白 */
}

.accordion-parent td:first-child::before {
  content: "＋";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  color: dodgerblue;
  transition: 0.2s;
}

.accordion-parent.open td:first-child::before {
  content: "－";
  color: #b7282e;
}

.accordion-parent {
  background-color: #19a1fc19; /*透過ドジャーブルー*/
  cursor: pointer;
}

.accordion-parent:hover {
  background-color: #e0f0ff;
}

/* 子行（初期非表示） */
.accordion-child {
  display: none;
  background-color: #fff;
}

/*======== PC表示（769px以上） ========*/
@media screen and (min-width: 769px) {
  .accordion-wrapper {
    max-width: 70%; /* 中央寄せ幅 */
    margin: 1.5em auto; /* センタリング */
  }
  
  .accordion-table {
    width: 100%;
    table-layout: fixed; /* 列幅固定で扱う */
  }
  
  /* 列幅を指定 */
  .accordion-table th:nth-child(1),
  .accordion-table td:nth-child(1) {
    width: 10%;
    text-align: center;
    white-space: nowrap;
  }
  
  .accordion-table th:nth-child(2),
  .accordion-table td:nth-child(2) {
    width: 20%;
    white-space: nowrap;
  }
  
  .accordion-table th:nth-child(3),
  .accordion-table td:nth-child(3) {
    width: 8%; /* No列を狭く */
    text-align: center;
    white-space: nowrap;
  }
  
  .accordion-table th:nth-child(4),
  .accordion-table td:nth-child(4) {
    width: auto; /* 小分類は残りの幅 */
    min-width: 200px; /* 最低幅確保 */
    white-space: normal; /* 折返し許可 */
  }
  
  .accordion-table th:nth-child(5),
  .accordion-table td:nth-child(5) {
    width: 18%; /* 本数列を広めに固定 */
    text-align: right;
    white-space: nowrap;
  }
  
  /* 共通セル調整 */
  .accordion-table th,
  .accordion-table td {
    padding: 5px;
    word-break: break-word;
  }
}
/*    表下注    */
.table-note {
  font-size: 0.8em;
  color: #444;
  margin-top: 4px;
  text-align: right; /* 右寄せにする場合 */
}

/*========= スマホ表示（768px以下） ========*/
@media screen and (max-width: 768px) {
  .accordion-wrapper {
    width: 100%; /* 画面幅に固定 */
    margin: 1.5em 0;
  }
  
  .accordion-table {
    width: max-content; /* 内容に合わせて幅を確保 */
    min-width: 700px; /* 横スクロールを発生させる最低幅 */
    font-size: 0.75em;
  }
  
  /*.accordion-table caption{
    text-align: left;
  }*/
  
  /* 折り返し防止 */
  .accordion-table th,
  .accordion-table td {
    white-space: nowrap;
    padding: 4px;
  }
  
  /* 1列目左寄せ＆＋マーク調整 */
  .accordion-table td:first-child {
    text-align: left;
    padding-left: 2em;
  }
  .accordion-parent td:first-child::before {
    left: 6px;
  }
  
  /* ::beforeラベルは使わない（可読性優先） */
  .accordion-table td::before {
    content: none;
  }
  
  .table-note{
    text-align: left;
  }
}



/*////==== [5]多角的な分析軸 ====////*/
/*==== 専用の2カラムグラフレイアウト ====*/
.chart-2col {
  display: flex;
  justify-content: center; /* 中央寄せ */
  gap: 40px; /* 画像間の間隔 */
  flex-wrap: wrap;
  margin: 0 auto 1em;
}

.chart-item {
  text-align: center;
  flex: 0 0 auto; /* 幅は内容に合わせる */
}

.chart-item img {
  max-width: 400px; /* 小さめ表示 */
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.chart-title {
  font-size: 0.9em;
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 4px;
}

.chart-footnote {
  font-size: 0.8em;
  margin-top: 1em;
  line-height: 1em;
  padding-left: 1.2em;
  text-indent: -1.2em;
  text-align: left;
}

/* スマホ対応（縦並び） */
@media (max-width: 768px) {
  .chart-2col {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .chart-item img {
    max-width: 80%; /* スマホは画面幅に合わせる */
  }
  .chart-title {
    font-size: 0.8em;
  }
  .chart-footnote {
    font-size: 0.7em;
  }
}

/*////==== 3つのサービス概要 ====////*/
.services-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1em;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.services-table caption {
  caption-side: top;
  display: table-caption;
  text-align: center;
  font-weight: bold;
  font-size: 1em;
  padding: 0.5em 0 0.1em 0;
  white-space: normal;
  word-break: keep-all;
}

.services-table th {
  background-color: #19a2fc;
  color: white;
  padding: 12px;
  text-align: center;
  font-size: 18px;
  border: 1px solid white;
}

.services-table td {
  border: 1px solid #ddd;
  padding: 12px;
  vertical-align: middle;
  text-align: left;
}

/* サービス名（画像の上） */
.service-name {
  font-size: 1.4em; /* 約1.2倍に調整 */
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
  color: #222;
  display: block;
}

/* ロゴ画像調整（80%） */
.services-table img {
  max-width: 160px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 注番号（sup） */
sup {
  font-size: 0.75em;
  color: #666;
}

/* 脚注 */
.footnotes {
  margin-top: 30px;
  font-size: 0.75em;
  line-height: 1.6;
}

.footnotes p {
  margin: 6px 0;
}

@media screen and (max-width: 768px) {
  .services-table {
    font-size: 0.9em; /* ベースサイズ */
  }
  
  /*.services-table caption {
    font-size: 0.9em;
    text-align: left;
  }*/
  
  .services-table thead {
    display: none;
  }
  
  .services-table,
  .services-table tbody,
  .services-table tr,
  .services-table td {
    display: block;
    width: 100%;
  }
  
  .services-table tr {
    margin-bottom: 24px;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }
  
  /* ✅ 上書きされないように統一・整理 */
  .services-table th{
    font-size: 0.9em;
  }
  .services-table td {
    border: none;
    padding: 8px 6px;
    text-align: left;
    position: relative;
    font-size: 0.8em; /* ← 親の 0.9em に従って縮小される */
    line-height: 1.5;
  }
  
  .services-table td::before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    color: #0077aa;
    font-size: 0.95em;
  }
  
  .service-name {
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    margin: 10px 0 6px;
    color: #222;
  }
  
  .services-table img {
    max-width: 100px;
    height: auto;
    display: block;
    margin: 4px auto 12px;
  }
}


/*////==== 3つのサービス見出しh3 ====////*/
/* 共通スタイル：h3に準拠 */
.service-heading {
  font-family: "Roboto", sans-serif;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.2em 0;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.4;
  margin: 2em 0 1em;
}

/* 下線 */
.service-heading::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(
  to right,
  #f26522,
  transparent
  ); /* default: BI用 */
}

/* アイコン */
.service-heading .icon {
  width: 40px;
  height: 40px;
  margin-right: 0.25em;
}

/* テキストの構造 */
.service-heading .label {
  display: inline;       /* ← flexを解除して改行防止 */
  white-space: nowrap;   /* ← 改行不可にする */
  gap: 0.3em;
}

.text-gray {
  color: #333;
}

.text-color {
  font-weight: 700;
}

/* 色バリエーション（下線と文字色） */
.service--bi .text-color {
  color: #f26522;
}
.service--bi::after {
  background: linear-gradient(to right, #f26522, transparent);
}

.service--rp .text-color {
  color: #b7282e;
}
.service--rp::after {
  background: linear-gradient(to right, #b7282e, transparent);
}

.service--df .text-color {
  color: #008c45;
}
.service--df::after {
  background: linear-gradient(to right, #008c45, transparent);
}
@media (max-width: 480px) {
  .service-heading {
    font-size: 1.3em;         /* フォントを縮小 */
    padding: 0.2em 0.2em;
    margin: 1.5em 0 0.8em;    /* 上下余白を少し縮める */
    line-height: 1.3;
  }
  
  .service-heading .icon {
    width: 24px;              /* アイコンを小さく */
    height: 24px;
    margin-right: 0.4em;      /* テキストとの余白はやや広め */
  }
  
  .service-heading .label {
    flex-direction: column;   /* テキストが複数行の場合に縦揃え優先 */
    gap: 0.1em;
  }
  
  .service-heading::after {
    height: 2px;              /* 下線を少し細く */
  }
}


/*==== 各サービスのlogoと一言 ====*/
.catch-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 1rem;
  margin: 3em 0 2em;
}

.logo {
  max-width: 180px;   /* 最大幅だけ制限して自然に縮小 */
  height: auto;
  display: block;
}


.catch-copy {
  font-size: 1.5em;
  padding-left: 0.5em;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

/* --- スマホなど幅が狭い場合は縦並びに --- */
@media (max-width: 768px) {
  .catch-logo-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  
  .logo {
    width: 50%;        /* ここで画像幅を小さく調整 */
    max-width: 120px;  /* 最大幅も制限（以前は200px） */
    height: auto;
  }
  
  .catch-copy {
    font-size: 1em;  /* スマホで少し小さめに */
    padding-left: 0;
  }
}

/*==== 各サービスから導入部一覧表へ戻る ====*/
.back-to-table {
  text-align: right; /* 右端に寄せる */
  margin: 8px 0;    /* 上下余白 */
}

.back-to-table a {
  display: inline-flex;
  align-items: center;
  gap: 4px;                 /* アイコンと文字の間隔 */
  color: black;             /* 初期文字色は黒 */
  font-weight: normal;
  font-size: 14px;
  padding: 6px 12px;
  background-color: #e6f0ff; /* 薄い背景色 */
  border: none;              /* 外枠なし */
  border-radius: 1px;        /* 少し角丸で柔らかく */
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* ほんのり影 */
}

/* アイコン部分の色をドジャーブルーに固定 */
.back-to-table a i {
  color: #1E90FF;
}

/* ホバー時に背景を少し濃く */
.back-to-table a:hover {
  background-color: #f9f9f9; /* 薄いブルーに変化 */
  color: black;              /* 文字は黒のまま */
}

@media screen and (max-width: 600px) {
  .back-to-table {
    text-align: center; /* スマホでは中央寄せ */
    margin: 0;     /* 上下余白を少し広めに */
  }
  
  .back-to-table a {
    font-size: 0.8em;               /* 少し小さめの文字 */
    padding: 5px 10px;             /* パディングをコンパクトに */
    gap: 3px;                      /* アイコンと文字の隙間をやや狭く */
    box-shadow: 0 1px 4px rgba(0,0,0,0.08); /* 影も少し控えめに */
  }
}


/*////====YouTube リスト再生====////*/
.play_video {
  max-width: 1000px;
  margin: 1em auto 2em;
}

.video_ttl {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 1em;
  margin: 0 auto;
}

.video_ttl::before,
.video_ttl::after {
  content: "";
  flex: 1;
  border-bottom: 0px solid #cccc;
  margin: 0 10px;
}

.play_video ul {
  list-style-type: none;
  padding-left: 1em;
  text-indent: -1em;
  text-align: center;
}

.play_video li {
  display: inline-block;
  text-align: left;
  font-size: small;
  line-height: 1.2em;
  margin-top: 0.5em;
}

.play_video li::before {
  content: "※ ";
  text-indent: 0;
}

/* SP (Smartphone) */
@media (max-width: 767px) {
  .lp_banner .sv_logo {
    top: 39%;
    width: 200px;
    padding: 0.5em;
  }
  .lp_banner .button {
    top: calc(50% + 50px);
    font-size: small;
  }
  .lp_banner .button a {
    font-size: smaller;
    padding: 0.5em;
  }
  .seminar_info_top {
    position: relative;
    padding: 0.5em 0;
    margin: 0;
  }
  .seminar_info_top p {
    font-size: 0.7em;
    margin: 0 0.5em;
  }
  .seminar_info_top strong,
  .seminar_info_top a {
    font-size: 1.1em;
  }
  .video_ttl {
    font-size: 0.7em;
  }
  .play_video ul {
    margin: 1em;
  }
  .play_video li {
    font-size: xx-small;
  }
}

/* YouTubeレスポンシブ対応（モダンブラウザ用） */
.youtube-responsive {
  position: relative;
  width: 100%; /* 親幅いっぱい */
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.youtube-responsive iframe {
  width: 100%; /* 幅は常に100% */
  height: auto; /* 高さは自動 */
  aspect-ratio: 16/9; /* 16:9の比率を維持 */
  display: block;
  margin: 0 auto;
  border: solid 1px lightgray;
  box-shadow: 2px 2px 2px lightgray;
}

/*////==== RP画像表示 ====////*/
.image-gallery--large {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 2em auto;
  max-width: 1000px;
}

.image-gallery--large img {
  width: 100%;
  max-width: 460px; /* 大きめ */
  height: auto;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
}

/* スマホでは縦並び */
@media screen and (max-width: 768px) {
  .image-gallery--large {
    flex-direction: column;
    align-items: center;
  }
  
  .image-gallery--large img {
    max-width: 90%;
  }
}

.image-gallery--quad {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 2em auto;
  max-width: 1200px;
}

.image-gallery--quad img {
  width: 100%;
  max-width: 220px; /* 4列用サイズ */
  height: auto;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

/* スマホでは2つずつ縦並び */
@media screen and (max-width: 768px) {
  .image-gallery--quad {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .image-gallery--quad img {
    flex-basis: calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

/*//// ==== PDFダウンロードリンク ==== ////*/
.pdf-link {
  font-size: 1em;
  margin: 1em 0;
}

.pdf-link a {
  color: #d32f2f; /* PDFっぽい赤色 */
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  transition: color 0.3s ease;
}

.pdf-link a:hover {
  color: #b71c1c;
  text-decoration: underline;
}

.pdf-link i {
  font-size: 1.1em;
}
/* スマホ表示用のメディアクエリ */
@media screen and (max-width: 600px) {
  .pdf-link,
  .excel-link {
    font-size: 0.9em;
    margin: 0.8em 0;
  }
  
  .pdf-link a,
  .excel-link a {
    gap: 0.3em;
    font-weight: normal;
  }
  
  .pdf-link i,
  .excel-link i {
    font-size: 1em;
  }
}


/*//// ==== Excel表示リンク ==== ////*/
.excel-link {
  font-size: 1.2em;
  margin: 1.5em auto;
}

.excel-link a {
  color: #2e7d32; /* Excelっぽい緑色 */
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  transition: color 0.3s ease;
}

.excel-link a:hover {
  color: #1b5e20;
  text-decoration: underline;
}

.excel-link i {
  font-size: 1.1em;
}

@media screen and (max-width: 600px) {
  .excel-link {
    font-size: 1em;
    line-height: 1em;
    margin: 1em 0;
    text-align: center; /* ← スマホ時のみセンタリング */
  }
  
  .excel-link a {
    gap: 0.3em;
    font-size: 0.9em;
    font-weight: 500;
    flex-wrap: wrap; /* 長いファイル名対策 */
    justify-content: center; /* ← アイテム自体も中央寄せ */
  }
  
  .excel-link i {
    font-size: 1em;
  }
}

/*////==== DF 表 ====////*/
.fund-table-section {
  margin: 40px 0;
  display: flex;
  justify-content: center; /* PCで中央寄せ */
}

.table-responsive {
  width: 100%;
  max-width: 1000px;
  overflow-x: auto;
}

.fund-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1em;
  min-width: 800px;
}

/*.fund-table caption {
  caption-side: top;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}*/

.fund-table th {
  background-color: #2f9d5b;
  color: #fff;
  padding: 5px;
  text-align: center;
  border: 1px solid #c5e2d3;
}

.fund-table td {
  background-color: #e6f4ec;
  border: 1px solid #c5e2d3;
  padding: 10px;
  vertical-align: top;
}

.fund-table tr:nth-child(even) td {
  background-color: #dff0e7;
}

/*=== スマホ対応 ===*/
@media (max-width: 768px) {
  .fund-table-section {
    padding: 0 ;
  }
  
  .fund-table {
    font-size: 0.7em;
    line-height: 1.4em;
    min-width: 700px; /* 横スクロールさせる最低幅 */
  }
  
  .fund-table th,
  .fund-table td {
    padding: 3px;
  }
  
  /*.fund-table caption {
    font-size: 1.1em;
    text-align: left;
    margin-bottom: 0;
  }*/
}

