/**
 * baserCMS :  Based Website Development Project <https://basercms.net>
 * Copyright (c) NPO baser foundation <https://baserfoundation.org/>
 *
 * @copyright     Copyright (c) NPO baser foundation
 * @link          https://basercms.net baserCMS Project
 * @since         5.0.0
 * @license       https://basercms.net/license/index.html MIT License
 */

/**
 * テーマ設定用CSS
 * 呼出箇所：全てのページ
 */



.bx-wrapper {
    margin: 0 auto;
    max-height: 560px;
    overflow: hidden;
}


.nb-head_btn-under-l {
	float: left;
	height: 15px;
	width: 66px;
	background-image: url(../img/try.jpg);
	background-repeat: no-repeat;
	padding-left: 25px;
	margin: 0px;
	font-weight: bold;
	background-position: 5px;
}

.nb-head_btn-under-r {
	float: right;
	background-image: url(../img/try2.jpg);
	background-repeat: no-repeat;
	height: 15px;
	width: 60px;
	padding-left: 25px;
	margin: 0px;
	margin-top: 30px;
	font-weight: bold;
	background-position: 5px;
}

.nb-header__logo {
  margin-top: 10px;
  margin-bottom: 10px;
  vertical-align: bottom;
  max-height: 36px;
  max-width: 200px;
}

h1{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-left: solid 8px dimgray;
  border-bottom: solid 1px gray;
  padding: 10px;
}
h2{
  font-family: 'Segoe UI', 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 22px;

  margin-top: 1.2em;
  margin-bottom: 0.6em;
}

/* 画像とテキストを重ねるためのコンテナ */
.image-container {
  position: relative;
  width: 22%; 
  aspect-ratio: 250 / 167;        /* 元画像の比率を維持 */
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.image-container:hover {
  transform: scale(1.05);
}

/* 横並びレイアウト（PC） */
.image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;                         /* 要素間の隙間 */
  justify-content: center;
}

/* 画像スタイル */
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.6) brightness(0.7) contrast(1.2)
          hue-rotate(180deg) saturate(1.2);
}

/* 画像上のテキスト */
.overlay-text {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.6vw;                 /* 大画面での可変サイズ */
  font-weight: bold;
  z-index: 2;
  pointer-events: none;
  text-align: center;
}

/* aタグのリンク装飾 */
.image-container a {
  text-decoration: none;
  color: inherit;
}

.overlay-text a {
  display: inline-block;
  white-space: nowrap;
}

/* タブレット（2列に変更） */
@media screen and (max-width: 780px) {
  .image-container {
    width: 48%;                    /* 2列レイアウト */
  }
  .overlay-text {
    font-size: 3vw;
  }
}

/* スマホ（1列に変更） */
@media screen and (max-width: 480px) {
  .image-container {
    width: 100%;                   /* 1列 */
  }

  .overlay-text {
    font-size: 5vw;
    max-width: 90%;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

/* 製品情報ここから */
.product-section {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.product-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap; /* 折り返し対応 */
}

.product-image {
  flex: 0 0 40%;
}

.product-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 600px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.product-text {
  flex: 1;
  text-align: center;
}

.product-title {  
  font-size: 2.5em;
  font-weight: normal;
  letter-spacing: 0.04em;
  margin: 0 0 20px;
  position: relative;
  padding-bottom: 5px;
}

.product-title::after { 
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100px;
  height: 3px;
  background-color: #005f8a;
  border-radius: 2px;
}

/* ホバー時の日本語表記 */
.product-section .product-title::before {
  content: '';
  position: absolute;
  top: -1.6em;
  left: 50%;
  transform: translateX(-50%) translateX(-30px);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.8em;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
  white-space: nowrap;
}

.product-section:hover .product-title::before {
  opacity: 1;
  transform: translateX(-50%) translateX(0);
}

.product-section:nth-of-type(1) .product-title::before { content: '光ファイバ分布計測機'; }
.product-section:nth-of-type(2) .product-title::before { content: '光ファイバセンサケーブル'; }
.product-section:nth-of-type(3) .product-title::before { content: 'モニタリングシステム'; }

/* 背景のグラデーション */
.product-section:nth-of-type(odd) {
  background: linear-gradient(to right, #ffffff 0%, #f0f8ff 20%, #f0f8ff 80%, #ffffff 100%);
}

.product-section:nth-of-type(even) {
  background: linear-gradient(to right, #ffffff 0%, #f5f5f5 20%, #f5f5f5 80%, #ffffff 100%);
}

/* リンク共通 */
.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-title {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 1.8em;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.section-title::before,
.section-title::after {
  content: '';
  width: 8%;
  max-width: 80px;
  height: 4px;
  background-color: lightgray;
  border-radius: 3px;
  margin: 0 2%;
}

/* ===== タブレット対応 (1024px以下) ===== */
@media (max-width: 1024px) {
  .product-inner {
    flex-direction: column; /* 縦並び */
    text-align: center;
  }
  .product-image,
  .product-text {
    width: 100%;
    max-width: 100%;
  }
  .product-text {
    margin-top: 15px; /* 画像とテキストの間に余白 */
  }
}

/* ===== スマホ対応 (768px以下) ===== */
@media (max-width: 768px) {
  .product-inner {
    flex-direction: column;
  }
  .product-image,
  .product-text {
    width: 100%;
    max-width: 100%;
  }
  .product-text {
    margin-top: 10px;
  }
  .product-title {
    font-size: 1.8em;
  }
  .product-section .product-title::before {
    font-size: 0.7em !important;
    opacity: 1 !important;
    transform: translateX(-50%) translateX(0) !important;
  }
}
/* 製品情報ここまで */



.nbx_items{
  margin: 15px;
}
.nbx_items img {
  transition: filter 0.3s ease;
}

.nbx_items img:hover {
  filter: brightness(85%);
}

.series {
  border-bottom: solid 1px dimgray;
  padding: 10px;
  font-size: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


.series-left {
  font-weight: bold;
  white-space: nowrap;
}


.series-right,
.series-right2 {
  white-space: nowrap;
}


@media screen and (max-width: 768px) {
  .series-left {
    width: 100%; 
  }

  .series-right,
  .series-right2 {
    white-space: normal; 
    display: inline; 
    width: auto;
  }

  .series {
    gap: 0;
  }
}

@media screen and (max-width: 480px) {
  .series {
    font-size: 14px;
  }

  .series-left {
    font-size: 20px;
  }
}

.nb_style2 {
  font-size: clamp(1.2rem, 4vw, 2rem);
  background-color: gray;
  color: white;
  text-align: center;

  padding: 0.1em 0.5em; 
  display: block;
  width: 100%;
  box-sizing: border-box;
}



.nb_style3{
  font-size: 28px;
  text-align: center;
}

.nb_style4{
  font-size: 16px;
  text-align: center;
}

.nb_style5 {
  font-size: clamp(1.2rem, 4vw, 1.8rem); 
  text-align: center;
  line-height: 1.3;
  white-space: normal;
  margin: 0.5em 0;
}


.midashi {
  padding: 0.1em; 
  color: black;
  background: ghostwhite;
  border-bottom: solid 3px darkgreen;
  
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  text-align: center;
}


.info-table {
  width: 100%;
  border-collapse: collapse; /* セル間の余白をなくす */
  font-family: sans-serif;
  font-size: 1em;
}

.info-table td {
  border: none;              /* 縦線は消す */
  padding: 12px;             /* 余白はゆとりをもって調整 */
  vertical-align: middle;
  text-align: left;
}

/* 各行の下に横線を引く */
.info-table tr {
  border-bottom: 1px solid #ccc;
}

/* ラベル列のスタイル */
.info-table .label {
  width: 30%;
  font-weight: bold;
  vertical-align: middle;
  font-size: clamp(0.8rem, 2vw, 1.1rem);
}

/* 値列のスタイル */
.info-table .value {
  width: 70%;
}

.index-title {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 1.8em;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;     /* 親幅いっぱいに */
}

.index-title::before,
.index-title::after {
  content: '';
  width: 8%;
  max-width: 80px;
  height: 4px;
  background-color: lightgray;
  border-radius: 3px;
  margin: 0 2%;
}

/* アイコンリンク */
.icon-only-link {
  display: inline-block;
  margin-right: 10px;
}

.icon-only-link img {
  width: 24px;
  height: auto;
  vertical-align: middle;
  transition: opacity 0.3s;
}


.linkedin-block-toppage {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-only-link-toppage {
  display: inline-block;
}


.icon-only-link-toppage img {
  width: 48px; 
  height: auto;
  vertical-align: middle;
  transition: opacity 0.3s;
}

.linkedin-text-toppage {
  font-size: 1.1rem;
  color: #0077B5;
  font-weight: 700;
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

.iupic-row {
  display: flex;
  flex-wrap: wrap;       /* スマホで折り返し */
  gap: 10px;             /* 画像同士の余白 */
}

.iupic-row img {
  width: 48%;            /* 画像を横2つ並べる（%でレスポンシブ） */
  height: auto;          /* 縦横比維持 */
  max-width: 400px;      /* PCで大きくなりすぎないように */
}

/* ▼ スマホ用：縦並びにする */
@media screen and (max-width: 600px) {
  .iupic-row img {
    width: 100%;         /* スマホでは1列に */
    max-width: 100%;
  }
}

.linkedin-frame {
  position: relative;
  width: 100%;
  max-width: 800px; /* 任意（大きすぎ防止） */
  padding-bottom: 175%; /* アスペクト比 */
  height: 0;
}

.linkedin-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- PC のとき（幅1024px以上）--- */
@media screen and (min-width: 1024px) {
  .linkedin-frame {
    width: 50%;   /* PC では半分の幅 */
    padding-bottom: calc(50% * 1.75); 
    /* 幅を50%にするので高さ計算を調整（1.75=元の比率） */
  }
}

.catalog-link {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 20px 0;

  padding: 0.8em 1em;
  font-size: 120%;
  text-align: center;

  background: linear-gradient(135deg, #c62828, #e53935);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
}


.catalog-link:hover {
  background-color: #e53935;
  transform: translateY(-1px);
}

.catalog-link::before {
  content: "📄 ";
  margin-right: 4px;
}
@media (max-width: 480px) {
  .catalog-link {
    width: auto;
    max-width: 90%;
  }
}

.table-container {
  max-width: 900px;
}

.inner-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* 必須：列幅固定 */
}

/* 列幅を均等に設定 */
.col-label {
  width: 20%;
}

.col-value {
  width: 10%;
}

/* セルの共通スタイル */
.inner-table td {
  border: 1px solid #ccc;
  padding: 8px;
  vertical-align: middle;
  text-align: center;
  background-color: #fff;
  word-break: break-word;
  white-space: normal;
}

/* 特定セルのスタイル */
.header-left {
  text-align: left;
  font-weight: bold;
  background-color: #f0f0f0;
}

.header-center {
  text-align: center;
  background-color: #f0f0f0;
}


.label {
  text-align: left;
  font-weight: bold;
  background-color: #f9f9f9;
}

.value {
  text-align: center;
}
/* パルス幅や空間分解能の数値セルは中央揃え */
.inner-table td.value {
  text-align: center;
  vertical-align: top;
}

/* ラベルは左揃え */
.inner-table td.label {
  text-align: left;
  vertical-align: middle;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .inner-table {
    table-layout: auto;
  }
}

@media (max-width: 600px) {
  .table-container{
    max-width: 100%;
  }

  .inner-table{
    table-layout: fixed;
    width: 100%;
  }

  .inner-table td{
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: clamp(8px, 2.6vw, 10px);
    padding: 4px;
    line-height: 1.25;
    text-align: center;
  }

  .inner-table td.label{
    text-align: left;
  }

  .inner-table td.value{
    white-space: normal;
  }

  .inner-table .header-center,
  .inner-table .note{
    white-space: normal;
  }
}


.nbstyle_picture {
  opacity: 0.6;
  display: flex;
  gap: 10px; /* 画像同士の間隔 */
  flex-wrap: wrap; /* 幅が狭くなっても折り返さない場合は nowrap に */
}

.nbstyle_picture img {
  width: calc((100% - 20px) / 3); /* 3列に収める。gap分を引く */
  height: auto; /* 縦横比維持 */
  max-width: 100%;
}

.nbstyle_picture-jirei {
  opacity: 0.8;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nbstyle_picture-jirei img {
  width: calc((100% - 20px) / 3);
  max-width: 33.333%;
  height: auto;
  box-sizing: border-box;
}


.sample-heading-jirei {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #ccc;
  display: block;
}

/* 見出し番号付き */
.case-heading-numbered-jirei {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #ccc;
}

.case-heading-numbered-jirei span.number {
  background: #0078d7;
  color: #fff;
  padding: 0 8px;
  border-radius: 4px;
  margin-right: 0.5em;
  font-weight: 700;
}

.case-section-jirei.clean-layout-jirei {
  padding: 80px 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.case-content-jirei {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.decorated-paragraph-jirei {
  position: relative;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  padding-left: 20px;
  transition: transform 0.3s ease;
}

/* 左ライン装飾 */
.decorated-paragraph-jirei::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  bottom: 0.3em;
  width: 6px;
  border-radius: 3px;
  background: linear-gradient(to bottom, #0078d7, #00cfff);
  transition: all 0.3s ease;
}

/* 交互の色 */
.case-content-jirei .decorated-paragraph-jirei:nth-of-type(odd)::before {
  background: linear-gradient(to bottom, #0078d7, #00cfff);
}

.case-content-jirei .decorated-paragraph-jirei:nth-of-type(even)::before {
  background: linear-gradient(to bottom, #ff7a00, #ffc200);
}

.inline-image-jirei {
  text-align: center;
  margin: 1em 0;
}

.inline-image-jirei img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.pdf-section-jirei {
  margin-top: 1em;
  font-size: 0.95rem;
}

.pdf-link-jirei {
  display: inline-block;
  color: #0078d7;
  text-decoration: none;
  border-bottom: 1px solid #0078d7;
  padding-bottom: 2px;
  margin-bottom: 0.3em;
}

.pdf-source-jirei {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.2em;
}

/* --- ジャンプカード（元 cable） --- */

.jump-list-jirei {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.card-jirei {
  display: block;
  padding: 20px 24px;
  background-color: #ffffff;
  border: none;
  border-bottom: 2px solid #dce7f5;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.2s ease;
  color: #1a2e45;
  position: relative;
}

.card-jirei:hover {
  background-color: #e9f3ff;
  transform: translateY(-2px);
}

.card-text-jirei {
  display: block;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.0;
  font-size: 16px;
  color: #445;
}

.card-text-jirei strong {
  font-weight: 600;
  font-size: 20px;
  display: block;
  margin-bottom: 4px;
}

.card-jirei::after {
  content: "→";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 600;
  color: #1E88E5;
  transition: transform 0.2s ease, color 0.2s ease;
}

.card-jirei:hover::after {
  transform: translate(6px, -50%);
  color: #1565c0;
}

@media (max-width: 600px) {
  .card-jirei {
    padding: 16px 18px;
  }
  .card-text-jirei strong {
    font-size: 18px;
  }
  .card-text-jirei {
    font-size: 15px;
  }
}


.nbstyle_picture-2-jirei {
  opacity: 0.8;
  display: flex;
  gap: 10px; /* 画像同士の間隔 */
  flex-wrap: wrap;
}

.nbstyle_picture-2-jirei img {
  width: calc((100% - 20px) / 3); /* PCでは3列サイズと同じ幅 */
  height: auto;
  max-width: 100%;
}

/* スマホ用：縦に2枚並べる */
@media screen and (max-width: 600px) {
  .nbstyle_picture-2-jirei img {
    width: calc((100% - 10px) / 2); /* スマホでは横2列 */
  }
}

.point-box-jirei {
  margin-bottom: 1.2em;
}

.point-title-jirei {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5em;
}

.point-list-jirei {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.point-item-jirei {
  display: flex;
  align-items: flex-start;
  gap: 0.4em;
  margin-bottom: 0.3em;
}

.point-check-jirei {
  color: #0078d7;
  font-weight: 700;
}

.nb-h2 {
  font-weight: bold;
  font-size: 22px;
  color: #003366;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  border-bottom: 3px solid #00aaff;
  display: inline-block;
  padding-bottom: 4px;
}
.nb-h3 {
  font-weight: 600;
  font-size: 18px;
  color: #0059b3; 
  margin-bottom: 0.5em;
}

.midashi_gate{
  padding: 0.1em;
  color: black;
  background: ghostwhite;
  border-bottom: solid 3px orange;  
font-size: 24px;
  text-align: center;
  margin-top: 40px;
}
.nbg_1-wrap {
  text-align: center;
}

.nbg-bg {
  padding: 0.1em;
  color: white;
  background: gray;  
  font-size: 24px;
  text-align: center;
  margin-top: 40px;
}

table.nbg-table {
  width: 100%;
  border-collapse: collapse;
}

table.nbg-table td {
  vertical-align: top;
  padding: 0.5em 0.75em;
}

table.nbg-table ul {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}


ul.nbg-list,
ul.nbg-list ul {
  margin: 0;
  padding: 0;
}

ul.nbg-list {
  list-style-type: disc;
  padding-left: 4.4em;
}

ul.nbg-list ul {
  list-style-type: circle;
  padding-left: 1.8em;
}

ul.nbg-list ul ul {
  list-style-type: square;
  padding-left: 2.2em;
}

ul.nbg-list li {
  margin: 0.2em 0;
  line-height: 1.35;
}

@media (max-width: 600px) {
  ul.nbg-list {
    padding-left: 1.2em;
  }

  ul.nbg-list ul {
    padding-left: 1.8em;
  }

  ul.nbg-list ul ul {
    padding-left: 2.2em;
  }
}

.hidden {
	display: none;
}
/*****************************************************/
/********** Dec,16,2025 added by M.Yoko **************/

.nbstyle-y01 table tr th{
padding: 10px 24px;
background-color: blue; color: white;
}

.nbstyle-y01 table tr td{
padding: 10px 20px;
}

.nb-main-contents {
  width: 100%;
  max-width: 80%;
  margin: 5px auto 10px;
  padding: 0;
}


@media screen and (max-width: 768px) {
  .nb-main-contents {
    max-width: 100%;
    margin: 5px 0 10px;
  }
}

.nb-footer-menu {
        color: #999;
        display: block;
	column-count: 3;
          a:link {
                  color: white;
          }
          a:visited {
                  color: lime;
          }
}

@media screen and (max-width: 1000px) {
.nb-footer-menu {
        display: block;
	column-count: 2;
}
}
@media screen and (max-width: 768px) {
  .nb-footer-menu {
        display: block;
	column-count: 1;
  }
}

.bs-container {
  text-align: left;
  margin: 0 auto;
  /* min-width: 1300px; */
  /* min-width: 730px; */
  min-width: 100%;
}

.bs-top-post__item-detail {
	color: darkblue;
}

.bs-wrap {
/*  width: 1300px; */
  width: 100%;
  /*
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
*/
}

.bs-crumbs {
  padding: 5px 20px;
  width: 100%;
}

.bs-global-menu-item {
        /* height:40px;*/
        padding:0px 15px;
        > a {
                padding:10px 15px;
        }
}
/*
@media screen and (max-width: 768px) {
  .bs-global-menu-item {
    display: block;
  }
}
*/
@media screen and (max-width: 768px) {
  .bs-global-menu-sub.open {
    display: none;
  }
}

.bs-global-menu-item--link {
        padding:10px 15px;
}

.bs-global-menu .ul-level-3 {
  margin-left: 40px !important;
  margin-bottom: 0px !important;
}
.bs-global-menu .ul-level-4 {
  margin-left: 60px !important;
  margin-bottom: 0px !important;
}
.bs-global-menu .ul-level-4 a {
  padding: 0 !important;
}
.bs-global-menu .ul-level-4 a:link, .bs-global-menu .ul-level-4 a:visited {
  color: #000;
}
.bs-global-menu .ul-level-4 a:hover {
  color: #555;
}
/* 2025-10-23 */
.bc-update-info {
  margin-top: 20px;
}
.bs-contents-navi {
        margin: 20px 0 0 0;
}
.bc-update-info dl {
  width: 250px;
  font-size: 12px;
  margin-right: 0;
  margin-left: auto;
}

/**
 * Header
 */
/* ----------------------------------------------- */
.bs-header__inner {
/*  width: 1260px; */
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

@media screen and (max-width:768px) {
  .bs-header__inner {
    /* margin-right:100px;  */
    padding-right:100px;
  }
}
.bs-header__nav {
        background-color:#12636d!important;
}

/**
 * Footer
 */
/* ----------------------------------------------- */
.bs-footer {
  padding: 10px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


@media screen and (max-width: 768px) {
  .bs-footer {
    padding: 20px 20px;
  }
}
.bs-footer__copyright {
  font-size: 14px;
  color: #999;
  width: 1260px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .bs-footer__copyright {
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  .bs-footer__banner {
    display: block;
  }
}
.bs-footer__banner-link img {
  border: 0;
  vertical-align: text-bottom;
}


.nb-footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
  font-size: 14px;
}

.nb-footer-inner a:link {
  color: white;
}


.nb-footer-sitemap{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.nb-footer-sitemap a{
  color: white;
  text-decoration: none;
}

.nb-footer-sitemap a:hover{
  text-decoration: underline;
}

.nb-footer-sitemap a:visited{
  color: #b0b8c1;
}

/* 列の中は縦積み */
.nb-sitemap-column{
  display: flex;
  flex-direction: column;
  gap: 14px; /* Top/News/会社案内 の間隔 */
}
.nb-sitemap-title{
  margin: 0 0 10px;
  color: white;
  font-size: inherit;
  font-weight: inherit;
}

.nb-sitemap-title a {
  color: white;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
}

.nb-sitemap-title a:hover {
  text-decoration: underline;
}


.nb-sitemap-list{
  list-style: none;
  padding-left: 1em;
  margin: 0;
}

.nb-sitemap-list li{
  margin: 8px 0;
  position: relative;
  color: white;
}

.nb-sitemap-list li::before{
  content: "–";
  position: absolute;
  left: -1em;
  color: currentColor;
}


.nb-sitemap-list a{
  text-decoration: none;
  word-break: break-word; 
}

.nb-sitemap-list a:hover{
  text-decoration: underline;
}


.nb-sitemap-list.level-1 > li{
  margin: 8px 0;
}


.nb-sitemap-list.level-2{
  padding-left: 1.2em;
  margin-top: 6px;
}

.nb-sitemap-list.level-2 li{
  margin: 4px 0;
}


.nb-sitemap-list.level-1 > li::before{
  content: "–";
  left: -1em;
}

.nb-sitemap-list.level-2 > li::before{
  content: "–";
  left: -0.8em;
  font-size: 0.9em;
}


.nb-sitemap-list.level-3{
  padding-left: 1.2em;
  margin-top: 4px;
}

.nb-sitemap-list.level-3 > li{
  margin: 4px 0;
  padding-left: 0.3em;
}

.nb-sitemap-list.level-3 > li::before{
  content: "・"; 
  left: -1.0em; 
  font-size: 0.9em;
}


/* 通常：900px以下は2列（タブレットや縦長スマホ想定） */
@media (max-width: 900px){
  .nb-footer-sitemap{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* スマホ横：1列（縦に1→4） */
@media (max-width: 900px) and (orientation: landscape){
  .nb-footer-sitemap{
    grid-template-columns: 1fr;
    grid-auto-flow: row; /* 念のため（デフォルトに戻す） */
  }
}

/* スマホ縦（狭い）：もちろん1列 */
@media (max-width: 520px){
  .nb-footer-sitemap{
    grid-template-columns: 1fr;
    grid-auto-flow: row; /* 念のため */
  }
}

.TopLink {
position: fixed; /*表示位置固定*/
bottom: 15px; /*下から15pxの位置*/
right: 10px; /*右から10pxの位置*/
z-index:999; /*重なり具合。一番上に表示されるように*/
}
img.totop {
width: 54px; /*大きさの指定*/
height: 54px; /*長方形等の場合は比率に応じて調整する*/
}

.cablekind{
border-left: solid 4px darkblue;
padding: 4px;
font-size: 24px;
  scroll-margin-top: 100px; /* 上に余白を作る（ヘッダー＋余白分） */
}





/* 特長 */
.feature-list {
  background-color: rgba(208, 231, 249, 0.15); /* 薄い水色 */
  padding: 8px 20px;
  border-radius: 6px;

  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.feature-list p {
  position: relative;
  padding-left: 40px;
  margin-bottom: 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a2e45;
  cursor: default;
  transition: color 0.3s ease;
}

.feature-list p::before {
  content: '✔'; /* チェックマーク */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #1a2e45;
  transition: transform 0.3s ease, color 0.3s ease;
}
/* 特長ここまで */
/* 説明文 */
.cable-sentence {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 24px 0 16px 0;
  padding: 12px 0;
  border-top: 2px solid darkblue;
  border-bottom: 2px solid darkblue;
  color: #1a2e45;
}
/* 説明文ここまで */
/* 用途リスト */
.usage_bullet {
  list-style-type: none;     /* ●を消す（装飾控えめ） */
  padding: 0;
  margin: 0;
  display: grid;             /* グリッドで2列に */
  grid-template-columns: repeat(2, 1fr); /* 均等2列 */
  gap: 6px 20px;             /* 縦・横の間隔 */
  max-width: 800px;          /* 横幅を制限して中央寄せしやすく */
  margin: 0 auto 40px auto;  /* 中央寄せ＋下に少し余白 */
}

.usage_bullet li {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1a2e45;
  font-size: 1rem;
  padding-left: 0.5em;
  position: relative;
}

.usage_bullet li::before {
  content: '・';
  color: darkblue;
  margin-right: 6px;
}
/* 用途リストここまで */

/* 仕様表 */
.cable-table-container {
  max-width: 800px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cable-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.cable-table td {
  border: 1px solid #ccc;
  padding: 8px;
  vertical-align: middle;
}

.cable-label {
  text-align: left;
}

.cable-value {
  text-align: center;
}
.table-cable-name {
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  padding: 12px 0;
  background-color: #f5f5f5; /* 目立たせたい場合 */
}

/* 仕様表ここまで */

/* ケーブル間のライン */
.cable-divider {
  border: none;
  height: 2px;
  background: linear-gradient(to right, #1E88E5, #90CAF9, #1E88E5);
  margin: 40px auto;
  max-width: 900px;
}
/* ケーブル間のラインここまで */

/* 冒頭のジャンプ */
/* ケーブルジャンプ全体 */
.cable-jump-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

/* 各カード */
.cable-card {
  display: block;
  padding: 20px 24px;
  background-color: #ffffff;
  border: none;
  border-bottom: 2px solid #dce7f5; /* アンダーラインのみ */
  border-radius: 0; /* ボックス感を消す */
  text-decoration: none;
  transition: all 0.2s ease;
  color: #1a2e45;
}

/* ホバー時：背景を水色に */
.cable-card:hover {
  background-color: #e9f3ff;
  transform: translateY(-2px);
}

/* テキスト全体 */
.cable-card-text {
  display: block;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.0;
}

/* コード部分（太字） */
.cable-card-text strong {
  font-weight: 600;
  font-size: 20px;
  display: block;
  margin-bottom: 4px;
}

/* 用途部分（補足） */
.cable-card-text {
  font-size: 16px;
  color: #445;
}
.cable-card {
  position: relative; /* 疑似要素配置のために必要 */
}

.cable-card::after {
  content: "→";
  position: absolute;
  right: 16px;  /* 右端から少し内側に */
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;       /* 少し大きく */
  font-weight: 600;      /* 太めで視認性UP */
  color: #1E88E5;
  transition: transform 0.2s ease, color 0.2s ease;
}

.cable-card:hover::after {
  transform: translate(6px, -50%); /* 横にスッと動く */
  color: #1565c0; /* 濃い青でアクセント */
}

/* モバイル対応 */
@media (max-width: 600px) {
  .cable-card {
    padding: 16px 18px;
  }
  .cable-card-text strong {
    font-size: 18px;
  }
  .cable-card-text {
    font-size: 15px;
  }
}

/* 冒頭のジャンプここまで */


.product-grid {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

@media screen and (max-width: 768px) and (orientation: landscape) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: background 0.3s ease, border-color 0.3s ease;
}


.product-image_2 img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* 日本語タイトル */
.jp-title {
  display: block;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 8px;
}

/* 英語タイトル */
.product-title_2 {
  font-size: 1.8em;
  margin: 0 0 8px;
  font-weight: normal;
  letter-spacing: 0.05em;
  color: #000;
}

/* 補足 */
.subtext {
  color: #666;
  font-size: 0.95em;
  margin: 0;
}


/* ボックスの共通設定 */
.product-info {
  background-color: rgba(255, 255, 255, 0.8); /* ほんのり白 */
  text-align: center;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

/* hover時 */
.product-card:hover .product-info {
  background-color: rgba(240, 240, 240, 0.8); /* 淡いグレーに変化 */
}



/* hover時：ボーダー色を変化 */
.product-card:hover {
  background: #f9f9f9;    /* 好みで淡いグレーに */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .product-title_2 {
    font-size: 1.5em;
  }
  .jp-title {
    font-size: 1em;
  }
}

/* ボタンエリア：余白を詰める */
.from_sousin{
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;     /* 余白を小さく */
  flex-wrap: wrap;
}

/* 共通ボタン：文字は大きく、でも高さは出さない */
.from_sousin input[type="submit"],
.from_sousin input[type="reset"]{
  appearance: none;
  -webkit-appearance: none;
  border-radius: 8px;
  padding: 8px 14px;     /* 余白を削ってボタンを小さく */
  font-size: 16px;       /* 文字を大きく */
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.1;      /* 高さを増やさないため詰める */
  cursor: pointer;
  border: 1px solid transparent;
  background-image: none;
  box-shadow: none;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
  min-width: 108px;      /* 全体を1割小さめ寄り */
}

/* ボタンエリア */
.from_sousin{
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

/* 送信・リセット共通 */
.from_sousin input[type="submit"],
.from_sousin input[type="reset"]{
  appearance: none;
  -webkit-appearance: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .01em;
  cursor: pointer;
  background-color: #ffffff;    /* 共通の薄いグレー */
  color: #2b2f36;               /* 濃いグレー */
  border: 1px solid #cfd6e0;
  box-shadow: none;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
  min-width: 108px;
}

/* 共通ホバー */
.from_sousin input[type="submit"]:hover,
.from_sousin input[type="reset"]:hover{
  background-color: #e6e9ef;
  border-color: #b8c2d1;
}

/* フォーカス（アクセシビリティ） */
.from_sousin input[type="submit"]:focus-visible,
.from_sousin input[type="reset"]:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(43,47,54,.2);
}

/* スマホ：幅を広げない（そのまま小さく） */
@media (max-width: 480px){
  .from_sousin{
    gap: 8px;
  }
}

@media (max-width: 600px){

  /* テーブル全体 */
  .comm_table table{
    width: 100% !important;
    table-layout: fixed;
  }

  /* 左：ラベル列を細く */
  .comm_table td:first-child{
    width: 28%;                /* ← ここが肝 */
    font-size: 12px;           /* 文字を小さく */
    padding: 6px 6px;
    white-space: normal;       /* 折り返しOK */
  }

  /* 右：入力欄列を広く */
  .comm_table td:last-child{
    width: 72%;
    padding: 6px;
  }

  /* 入力欄は列いっぱい使う */
  .comm_table input[type="text"],
  .comm_table select,
  .comm_table textarea{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 14px;           /* 入力文字は読みやすく */
  }

  /* ラベル内のp余白を削る */
  .comm_table td:first-child p{
    margin: 0;
  }
}

.bs-top-post__item-date,
.bs-top-post__item-title,
.bs-top-post__item-detail,
.bs-blog-post__item-date,
.bs-single-post__meta-date,
.post-body,
.bs-blog-post-title,
#post-detail{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bs-top-post__item-date,
.bs-blog-post__item-date,
.bs-single-post__meta-date{
  color: #000000;
  font-style: normal;
}


  .bs-blog-post-title{
    color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
  }

.product-grid-cable-top {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;



  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
  gap: 32px;
  max-width: 960px;
  margin: 64px auto;
  padding: 0 16px;
}
.product-grid-cable-top a,
.product-grid-cable-top a:hover,
.product-grid-cable-top a:focus,
.product-grid-cable-top a:visited {
  text-decoration: none;
}


@media screen and (max-width: 768px) and (orientation: landscape) {
  .product-grid-cable-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card-cable-top {
  background: #fff;
  border-radius: 0;
  overflow: hidden;

  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  border-top: 4px solid #0B2A6F;
  border-bottom: 4px solid #0B2A6F;

  transition: background 0.3s ease;
}

.product-card-samurai {
  border-top-color: #ff8800;
  border-bottom-color: #ff8800;
}


.product-image_2-cable-top {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.product-image_2-cable-top img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  object-fit: cover;
}

.jp-title-cable-top {
  display: block;
  font-size: 0.88em;
  font-weight: bold;
  margin-bottom: 6px;
}

.product-title_2-cable-top {
  font-size: 1.3em;
  margin: 0 0 6px;
  font-weight: normal;
  letter-spacing: 0.05em;
  color: #000;
}

/* 情報ボックス */
.product-info-cable-top {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  border-radius: 0;
  transition: background-color 0.3s ease;
  padding: 10px;
}

/* hover */
.product-card-cable-top:hover .product-info-cable-top {
  background-color: rgba(240, 240, 240, 0.8);
}

.product-card-cable-top:hover {
  background: #f9f9f9;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .product-title_2-cable-top {
    font-size: 1.2em;
  }
  .jp-title-cable-top {
    font-size: 0.85em;
  }
}

.recruit-jobs {
  max-width: 960px;
  margin: 48px auto;
  padding: 0 16px;
}

/* 見出し */
.recruit-jobs__head {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 0 14px;
  border-bottom: 2px solid #0B2A6F;
}

.recruit-jobs__mark { color: #0B2A6F; font-size: 0.9em; }

.recruit-jobs__title {
  font-size: 1.3em;
  margin: 0;
  letter-spacing: 0.04em;
}

/* 各行 */
.recruit-jobs__row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #eaeaea;
}

.recruit-jobs__label { font-weight: 700; white-space: nowrap; color: #0B2A6F; }

.recruit-jobs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.recruit-jobs__link {
  text-decoration: none;
  color: #0B2A6F;
  padding: 6px 14px;
  border: 1px solid #0B2A6F;
  background: #fff;
  font-size: 0.95em;
  transition: all 0.2s ease;
}

.recruit-jobs__link:hover { background: #0B2A6F; color: #fff; }

.recruit-jobs__note { color: #888; font-size: 0.95em; }

/* 詳細セクション全体 */
.recruit-detail {
  max-width: 960px;
  margin: 28px auto 0;
  padding: 0 16px;
}

.recruit-detail__title {
  margin: 22px 0 14px;
  padding-left: 12px;
  border-left: 4px solid #9ACD32;
  letter-spacing: 0.03em;
  scroll-margin-top: 100px;
  font-size: 1.6em;
}

@media (max-width: 768px) {
  .recruit-detail {
    padding-left: 0;
    padding-right: 0;
  }
}


/* ブロック（カード風） */
.recruit-block {
  background: #fff;
  border: 1px solid #eaeaea;
  border-top: 3px solid #0B2A6F;
  padding: 16px;
  margin: 14px 0;
}

.recruit-block__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 1.05em;
  letter-spacing: 0.03em;
}

.recruit-block__mark { color: #0B2A6F; font-size: 0.9em; }

/* 箇条書き */
.recruit-list { margin: 0; padding-left: 1.2em; line-height: 1.7; }
.recruit-list li { margin: 6px 0; }

/* 尚可の囲い */
.recruit-subnote {
  margin-top: 12px;
  padding: 12px;

}

.recruit-subnote__label { font-weight: 700; color: #0B2A6F; margin-bottom: 6px; }
.recruit-list--compact li { margin: 4px 0; }

/* 採用条件/選考方法：table版（CMSに崩されにくい） */
.recruit-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: #fff;
}


.recruit-table th,
.recruit-table td {
  padding: 10px 0;
  vertical-align: top;
  line-height: 1.6;
}

.recruit-table th {
  width: 160px;
  color: #0B2A6F;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  padding-right: 12px;
  border-right: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
  .recruit-table th {
    border-right: none;
  }
}

.recruit-table td { 
　color: #111; 
  padding-left: 12px;
}

@media (max-width: 768px) {
  .recruit-jobs__row { flex-direction: column; gap: 10px; }

  .recruit-table th,
  .recruit-table td {
    display: block;
    width: auto;
    padding: 6px 0;
  }

  .recruit-table tr {
    display: block;
    padding: 8px 0;
  }

  .recruit-table th {
    white-space: normal;
    padding-right: 0;
  }
}
.recruit-anchor{
  display:block;
  height:0;
  position:relative;
  top:-60px; 
}

.recruit-jobs__label--tech {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #0B2A6F;
}


.recruit-jobs__label--tech::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #9ACD32;
}

.bs-blog-post-title {
  margin: 20px 0 5px 0 !important;
}


.link_button {
  display: inline-block;
min-width: 220px;
padding: 10px 18px;
text-align: center;
  color: #fff;
  background-color: #0066cc;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
  margin: 5px 8px 5px 0;
  box-sizing: border-box;
}

.link_button:hover {
  background-color: #004c99;
}



.das-list {
  counter-reset: number;
  list-style-type: none !important;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.das-list  li {
  position: relative;
  padding: 0.8em 1.2em 0.8em 3.2em;
  line-height: 1.5em;
  background: #fff;
  border-left: 6px solid #28a745; /* 少し細めのグリーン */
  margin-bottom: 12px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: default;
}

.das-list  li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%; /* 丸く */
  background: linear-gradient(135deg, #28a745, #1e7e34); /* グリーンのグラデーション */
  color: white;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* 特長の3画像 */
  .image-container_das {
    display: flex;
    gap: 20px; /* 画像間の感覚 */
    background-color: #f0f0f0; /* 薄いグレーの背景 */
    padding: 20px;

    border-radius: 8px;
    max-width: fit-content;
    margin: 0 auto; /* 中央配置 */
  }

  .image-box {
    position: relative;
    text-align: center;
  }

  .image-box img {
    width: 250px;
    height: 167px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ぼかし効果 */
    border-radius: 4px;
    display: block;
  filter: grayscale(1);
  }

  /* ::afterで青系オーバーレイを追加 */
  .image-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 167px;
    background-color: rgba(100, 150, 200, 0.3); /* 青み */
    border-radius: 4px;
  }

  .subtitle {
    font-weight: bold;
    margin-top: 10px;
    font-size: 1.2em; /* ← 文字を少し大きく */
  }

  .comment {
  font-weight: bold;
    font-size: 1em;
    color: #333;
    margin-top: 4px;
  }

@media (max-width: 800px) {
  .image-container_das {
    flex-direction: column;
    align-items: center;
  }
  .image-box {
    margin-bottom: 20px;
  }
}
/* 特長の3画像ここまで */

/* 性能特長 */
.features-block {
  width: 216px;
  height: 144px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  font-family: "Segoe UI", sans-serif;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
 } 
.features-title { 
 font-size: 17px;
  font-weight: 600;
  color: #000;
  text-align: center;
 }
.features-divider { 
  width: 70%;
  height: 1.6px;
  background-color: #2e7d32; /* 緑のライン */
  margin: 5px 0 10px 0;
 }
.features-value { 
  font-size: 26px;
  font-weight: bold;
  color: #000;
  text-align: center;
 }
.features-note { 
  font-size: 12px;
  position: absolute;
  right: 10px;
  bottom: 8px;
 }
.features-grid { 
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px; /* ブロック間の隙間 */ 
  margin-top: 20px;
  padding: 0 10px;
 }

/* 性能特長ここまで */
/* vs従来技術 */
.feature-table-dasvs {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
  font-family: "Segoe UI", sans-serif;

  /* レスポンシブフォント */
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
}

/* 中央列（ラベル列） */
.feature-table-dasvs .col-label-dasvs {
  width: 25%;
}

@media (max-width: 600px) {
  .feature-table-dasvs .col-label-dasvs {
    width: 30%;
  }
}

.feature-table-dasvs th,
.feature-table-dasvs td {
  text-align: center;
  padding: 12px 8px;
  border: none;
}

@media (max-width: 600px) {
  .feature-table-dasvs th,
  .feature-table-dasvs td {
    padding: 8px 4px;
  }
}

/* 横線 */
.feature-table-dasvs tbody tr:not(:nth-child(4)) td {
  border-bottom: 1px solid #ddd;
}

/* 中央列（ラベル列）は罫線なし */
.feature-table-dasvs .label-dasvs {
  border-top: none !important;
  border-bottom: none !important;
  background-color: #f9f9f9;
  font-weight: bold;
  font-size: clamp(0.6rem, 2vw, 1.2rem);
  white-space: nowrap;
}

/* thead の太線なし */
.feature-table-dasvs thead tr {
  border-bottom: none;
}

/* ヘッダー両端だけ太線 */
.feature-table-dasvs th:not(.label-dasvs) {
  border-bottom: 2px solid #bbb;
  font-weight: bold;
}

/* 左列：グレー */
.feature-table-dasvs td:first-child,
.feature-table-dasvs th:first-child {
  color: #666;
  font-weight: normal;
}

/* 右列：緑 */
.feature-table-dasvs td:last-child,
.feature-table-dasvs th:last-child {
  color: #2e7d32;
  font-weight: bold;
}

/* ヘッダー中央列 */
.feature-table-dasvs th:nth-child(2) {
  font-weight: bold;
}

.table-container-dasvs {
  position: relative;
  display: block;
  max-width: 800px;
  margin: 0 auto;
}

/* アクセント画像：スマホで非表示 */
.table-container-dasvs .accent-dasvs {
  position: absolute;
  top: -12px;
  right: 48px;
  width: 40px;
  height: auto;
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 768px) {
  .table-container-dasvs .accent-dasvs {
    display: none;
  }
}

/* ===== リンクボタン ===== */
.link_button_daspage {
  display: inline-block;
  padding: 10px 18px;
  color: #fff;
  background-color: #00cc66;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
  margin: 5px 8px 5px 0;
}

.link_button_daspage:hover {
  background-color: #00994c;
}

/* ===== リンクボタン ===== */
.link_button_prime {
  display: inline-block;
  padding: 10px 18px;
  color: #fff;
  background-color: #ff8800;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
  margin: 5px 8px 5px 0;
}

.link_button_prime:hover {
  background-color: #e67300;
}

.iupic-row-osw img{
  max-width: 100%;
  height: auto;
}


/* テーブル共通 */
.table-osw{
  width: 100%;
  max-width: 900px;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: sans-serif;
}

.table-osw td{
  border: 1px solid #ccc;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
  background-color: #fff;
}

.table-osw td.header-osw{
  background-color: #f0f0f0;
  font-weight: bold;
}

.label-osw{
  font-weight: bold;
}

.value-osw{
  font-weight: normal;
}


.second-table-osw .label-osw{
  text-align: left;
}

.note-osw{
  font-size: 0.9em;
}
.updated-osw{
  padding: 8px;
  font-size: 0.8em;
  line-height: 1.4;
  text-align: center;
  border: 1px solid #ccc;
}

