 /* =========================================================
   MO STOCK
   在庫表専用デザイン
========================================================= */ :root {
  --stock-navy: #123b63;
  --stock-blue: #1d5fa7;
  --stock-blue-light: #edf5fb;
  --stock-line: #dce4eb;
  --stock-bg: #f5f8fb;
  --stock-text: #263746;
  --stock-muted: #71808d;
}
/* =========================================================
   全体
========================================================= */
.mo-stock-area {
  position: relative;
  /*padding: 90px 0 120px;*/
  /* background:
    linear-gradient(180deg, #f7f9fb 0%, #ffffff 35%, #ffffff 100%);*/
}
.mo-stock-wrap {
  width: 100%;
  color: var(--stock-text);
}
/* =========================================================
   Intro
========================================================= */
.mo-stock-intro {
  position: relative;
  margin: 0 0 70px;
  padding: 30px 35px 30px 85px;
  border: 1px solid #dbe4eb;
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 10px 35px rgba(18, 59, 99, .07);
}
/* アイコン */
.mo-stock-intro::before {
  content: "i";
  position: absolute;
  left: 30px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--stock-blue);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
}
.mo-stock-intro p {
  margin: 0 !important;
  padding: 0 !important;
  color: #536270;
  font-size: 14px;
  line-height: 2;
}
/* =========================================================
   カテゴリーセクション
========================================================= */
.mo-stock-section {
  position: relative;
  margin: 0 0 85px;
}
/* =========================================================
   カテゴリータイトル
========================================================= */
.mo-stock-heading {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin: 0 0 25px;
  padding: 0 0 18px 20px;
  border-bottom: 1px solid var(--stock-line);
}
.mo-stock-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 5px;
  height: 48px;
  border-radius: 3px;
  background:
    linear-gradient(180deg, #1d5fa7, #4f91c9);
}
/* 英字 */
.mo-stock-heading-en {
  color: var(--stock-blue);
  font-family:
    Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}
/* 日本語 */
.mo-stock-heading h2 {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  color: var(--stock-navy) !important;
  font-size: 27px !important;
  font-weight: 600 !important;
  line-height: 0.7;
  letter-spacing: .06em;
}
/* =========================================================
   Table Card
========================================================= */
.mo-stock-table-area {
  position: relative;
  border-radius: 10px;
  background: #fff;
  box-shadow:
    0 12px 40px rgba(18, 59, 99, .08);
  overflow: hidden;
}
/* =========================================================
   テーブル
========================================================= */
.mo-stock-scroll {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
/* スクロールバー */
.mo-stock-scroll::-webkit-scrollbar {
  height: 10px;
}
.mo-stock-scroll::-webkit-scrollbar-track {
  background: #edf1f4;
}
.mo-stock-scroll::-webkit-scrollbar-thumb {
  background: #9aaebe;
  border-radius: 20px;
}
.mo-stock-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--stock-blue);
}
/* =========================================================
   Table
========================================================= */
.mo-stock-table {
  width: 100% !important;
  min-width: 0;
  margin: 0 !important;
  border: 0 !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  table-layout: fixed;
  background: #fff;
}
.mo-stock-scroll {
  overflow-x: visible;
}
/* =========================================================
   Header
========================================================= */
.mo-stock-table thead th {
  position: relative;
  padding: 18px 14px !important;
  border: 0 !important;
  border-right:
    1px solid rgba(255, 255, 255, .12) !important;
  background:
    linear-gradient(135deg, #123b63 0%, #1d5fa7 100%) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.5;
  letter-spacing: .03em;
  text-align: center !important;
  white-space: nowrap;
  vertical-align: middle !important;
}
/* ヘッダー下ライン */
.mo-stock-table thead th::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #4f91c9;
}
/* =========================================================
   Body
========================================================= */
.mo-stock-table tbody td {
  padding: 16px 4px !important;
  border: 0 !important;
  border-right:
    1px solid #e7edf2 !important;
  border-bottom:
    1px solid #e7edf2 !important;
  background: #fff !important;
  color: #3c4b58 !important;
  font-size: 11px !important;
  line-height: 1.55;
  text-align: center !important;
  white-space: nowrap;
  vertical-align: middle !important;
  transition:
    background .2s ease, color .2s ease;
}
/* 偶数行 */
.mo-stock-table tbody tr:nth-child(even) td {
  background: #f8fafc !important;
}
/* hover */
.mo-stock-table tbody tr:hover td {
  background: #edf5fb !important;
}
/* =========================================================
   商品名
========================================================= */
.mo-stock-table th:first-child {
  min-width: 0;
}
.mo-stock-table td:first-child {
  min-width: 0;
  color: var(--stock-navy) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  /*text-align: left !important;*/
}
/* =========================================================
   商品名 Sticky
========================================================= */
@media screen and (min-width: 768px) {
  .mo-stock-table th:first-child, .mo-stock-table td:first-child {
    /*position: sticky;*/
    left: 0;
    z-index: 5;
  }
  .mo-stock-table th:first-child {
    z-index: 20;
    background:
      linear-gradient(135deg, #123b63, #1d5fa7) !important;
  }
  .mo-stock-table td:first-child {
    z-index: 10;
    background: #fff !important;
    box-shadow:
      7px 0 14px rgba(18, 59, 99, .08);
  }
  .mo-stock-table tbody tr:nth-child(even) td:first-child {
    background: #f8fafc !important;
  }
  .mo-stock-table tbody tr:hover td:first-child {
    background: #edf5fb !important;
  }
}
/* =========================================================
   問合せNo.
========================================================= */
.mo-stock-table th:nth-last-child(2) {
  min-width: 130px;
}
.mo-stock-table td:nth-last-child(2) {
  color: var(--stock-blue) !important;
  font-family:
    Arial, Helvetica, sans-serif;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .04em;
}
/* =========================================================
   お問い合わせ
========================================================= */
.mo-stock-contact {
  width: 130px;
  min-width: 130px;
}
.mo-stock-contact a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  min-height: 38px;
  box-sizing: border-box;
  padding: 9px 26px 9px 14px;
  border:
    1px solid var(--stock-blue);
  border-radius: 4px;
  background: var(--stock-blue);
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  box-shadow:
    0 4px 10px rgba(29, 95, 167, .18);
  transition:
    transform .2s ease, background .2s ease, box-shadow .2s ease;
}
/* arrow */
.mo-stock-contact a::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform:
    translateY(-50%) rotate(45deg);
  transition: .2s ease;
}
/* hover */
.mo-stock-contact a:hover {
  background: #fff !important;
  color: var(--stock-blue) !important;
  box-shadow:
    0 6px 15px rgba(29, 95, 167, .18);
  transform: translateY(-2px);
}
.mo-stock-contact a:hover::after {
  border-color: var(--stock-blue);
  transform:
    translateY(-50%) translateX(2px) rotate(45deg);
}
/* =========================================================
   Scroll Guide
========================================================= */
.mo-stock-scroll-note {
  padding: 11px 18px;
  background: #f7f9fb;
  color: #8996a1;
  font-size: 11px;
  line-height: 1.4;
  text-align: right;
  border-top: 1px solid #e5ebef;
}
.mo-stock-scroll-note span {
  color: var(--stock-blue);
  font-weight: 700;
}
/* =========================================================
   上部タイトルがテーマCSSに負ける場合
========================================================= */
.mo-stock-area h1, .mo-stock-area h2, .mo-stock-area h3, .mo-stock-area p, .mo-stock-area table {
  box-sizing: border-box;
}
/* =========================================================
   Tablet
========================================================= */
@media screen and (max-width: 991px) {
  .mo-stock-area {
    padding: 65px 0 90px;
  }
  .mo-stock-intro {
    margin-bottom: 55px;
    padding:
      25px 25px 25px 70px;
  }
  .mo-stock-heading h2 {
    font-size: 24px !important;
  }
  .mo-stock-table {
    min-width: 1300px;
  }
}
/* =========================================================
   Smartphone
========================================================= */
@media screen and (max-width: 767px) {
  .mo-stock-area {
    padding: 45px 0 65px;
  }
  /* Intro */
  .mo-stock-intro {
    margin-bottom: 45px;
    padding:
      20px 20px 20px 60px;
    border-radius: 6px;
  }
  .mo-stock-intro::before {
    left: 18px;
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
  .mo-stock-intro p {
    font-size: 12px;
    line-height: 1.9;
  }
  /* Heading */
  .mo-stock-section {
    margin-bottom: 55px;
  }
  .mo-stock-heading {
    display: block;
    margin-bottom: 18px;
    padding:
      0 0 14px 15px;
  }
  .mo-stock-heading::before {
    width: 4px;
    height: 42px;
  }
  .mo-stock-heading-en {
    margin-bottom: 7px;
    font-size: 9px;
  }
  .mo-stock-heading h2 {
    font-size: 20px !important;
    letter-spacing: .04em;
  }
  /* Table */
  .mo-stock-table-area {
    border-radius: 6px;
  }
  .mo-stock-table {
    min-width: 1150px;
  }
  .mo-stock-table thead th {
    padding: 13px 10px !important;
    font-size: 11px !important;
  }
  .mo-stock-table tbody td {
    padding: 13px 10px !important;
    font-size: 11px !important;
  }
  .mo-stock-table td:first-child {
    min-width: 130px;
    font-size: 12px !important;
  }
  /* Contact */
  .mo-stock-contact {
    width: 105px;
    min-width: 105px;
  }
  .mo-stock-contact a {
    width: 88px;
    min-height: 34px;
    padding:
      8px 20px 8px 9px;
    font-size: 10px;
  }
  /* Scroll guide */
  .mo-stock-scroll-note {
    padding:
      9px 12px;
    font-size: 10px;
  }
}
/* =========================================================
   ScrollHint
========================================================= */
.mo-stock-scroll {
  position: relative;
}
/* ScrollHintのヒント表示 */
.mo-stock-scroll .scroll-hint {
  position: relative;
}
/* スクロール可能なときの影 */
.mo-stock-scroll.is-scrollable {
  box-shadow:
    inset -35px 0 25px -25px rgba(21, 62, 104, .35);
}
/* 左側にもスクロールできる場合 */
.mo-stock-scroll.is-left-scrollable {
  box-shadow:
    inset 35px 0 25px -25px rgba(21, 62, 104, .2), inset -35px 0 25px -25px rgba(21, 62, 104, .35);
}
/* スクロール後 */
.mo-stock-scroll.is-active {
  box-shadow: none;
}
/* =========================================================
   Stock Notes
========================================================= */
.mo-stock-notes {
  margin-top: 20px;
  padding: 22px 28px;
  background: #f8fafc;
  border: 1px solid #dfe7ee;
  border-radius: 8px;
}
.mo-stock-notes-title {
  margin-bottom: 12px;
  color: #1d5fa8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.mo-stock-notes-list p {
  position: relative;
  margin: 5px 0;
  padding-left: 1em;
  color: #555;
  font-size: 13px;
  line-height: 1.8;
}
.mo-stock-notes-list p:first-child {
  margin-top: 0;
}
.mo-stock-notes-list p:last-child {
  margin-bottom: 0;
}
/* ※から始まる注意書き */
.mo-stock-notes-list p:first-child {
  color: #34495e;
}
/* スマホ */
@media (max-width: 767px) {
  .mo-stock-notes {
    margin-top: 15px;
    padding: 18px 18px;
  }
  .mo-stock-notes-title {
    margin-bottom: 8px;
  }
  .mo-stock-notes-list p {
    font-size: 12px;
    line-height: 1.75;
  }
}
/* =========================================================
   全在庫表
   シリコン・サファイアと文字サイズを統一
========================================================= */
@media screen and (min-width: 992px) {
  .mo-stock-table th, .mo-stock-table td {
    font-size: 11px !important;
  }
}
/* =========================================================
   ワイドバンドギャップ
   PC表示を1画面に収める
========================================================= */
@media screen and (min-width: 992px) {
  /* 横スクロールを解除 */
  .mo-stock-scroll {
    width: 100%;
    overflow-x: visible !important;
    overflow-y: visible !important;
  }
  /* テーブルを画面幅いっぱいに */
  .mo-stock-table {
    width: 100% !important;
    min-width: 0 !important;
    table-layout: fixed !important;
  }
  /* 全セル */
  .mo-stock-table th, .mo-stock-table td {
    box-sizing: border-box;
    padding: 13px 5px !important;
    font-size: 11px !important;
    line-height: 1.4;
    white-space: nowrap;
  }
  /* 商品名 */
  .mo-stock-table th:first-child, .mo-stock-table td:first-child {
    width: 11%;
    min-width: 0 !important;
  }
  /* インチ */
  .mo-stock-table th:nth-child(2), .mo-stock-table td:nth-child(2) {
    width: 6%;
  }
  /* 厚さ */
  .mo-stock-table th:nth-child(3), .mo-stock-table td:nth-child(3) {
    width: 10%;
  }
  /* 面方位 */
  .mo-stock-table th:nth-child(4), .mo-stock-table td:nth-child(4) {
    width: 13%;
    white-space: normal !important;
    overflow: visible !important;
  }
  /* 導電型 */
  .mo-stock-table th:nth-child(5), .mo-stock-table td:nth-child(5) {
    width: 7%;
  }
  /* ドーパント */
  .mo-stock-table th:nth-child(6), .mo-stock-table td:nth-child(6) {
    width: 8%;
  }
  /* 抵抗率 */
  .mo-stock-table th:nth-child(7), .mo-stock-table td:nth-child(7) {
    width: 13%;
    white-space: normal !important;
    overflow: visible !important;
  }
  /* 面仕上げ */
  .mo-stock-table th:nth-child(8), .mo-stock-table td:nth-child(8) {
    width: 10%;
  }
  /* 数量 */
  .mo-stock-table th:nth-child(9), .mo-stock-table td:nth-child(9) {
    width: 7%;
  }
  /* 梱包形態 */
  .mo-stock-table th:nth-child(10), .mo-stock-table td:nth-child(10) {
    width: 10%;
  }
  /* 問合せNo. */
  .mo-stock-table th:nth-child(11), .mo-stock-table td:nth-child(11) {
    width: 10%;
  }
}
/* =========================================================
   ワイドバンドギャップ
   スマホでも縦スクロールさせず画面内に収める
========================================================= */
@media screen and (max-width: 767px) {
  /* ワイドバンドギャップのテーブル */
  .mo-stock-table.mo-stock-table-wideband {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    table-layout: fixed !important;
  }
  .mo-stock-table.mo-stock-table-wideband th, .mo-stock-table.mo-stock-table-wideband td {
    box-sizing: border-box;
    padding: 9px 3px !important;
    font-size: 9px !important;
    line-height: 1.25;
    white-space: normal !important;
    word-break: break-word;
  }
  /* 商品名 */
  .mo-stock-table.mo-stock-table-wideband th:first-child, .mo-stock-table.mo-stock-table-wideband td:first-child {
    width: 13% !important;
    min-width: 0 !important;
    font-size: 9px !important;
  }
  /* インチ */
  .mo-stock-table.mo-stock-table-wideband th:nth-child(2), .mo-stock-table.mo-stock-table-wideband td:nth-child(2) {
    width: 8% !important;
  }
  /* 厚さ */
  .mo-stock-table.mo-stock-table-wideband th:nth-child(3), .mo-stock-table.mo-stock-table-wideband td:nth-child(3) {
    width: 11% !important;
  }
  /* 面方位 */
  .mo-stock-table.mo-stock-table-wideband th:nth-child(4), .mo-stock-table.mo-stock-table-wideband td:nth-child(4) {
    width: 13% !important;
  }
  /* 導電型 */
  .mo-stock-table.mo-stock-table-wideband th:nth-child(5), .mo-stock-table.mo-stock-table-wideband td:nth-child(5) {
    width: 8% !important;
  }
  /* ドーパント */
  .mo-stock-table.mo-stock-table-wideband th:nth-child(6), .mo-stock-table.mo-stock-table-wideband td:nth-child(6) {
    width: 9% !important;
  }
  /* 抵抗率 */
  .mo-stock-table.mo-stock-table-wideband th:nth-child(7), .mo-stock-table.mo-stock-table-wideband td:nth-child(7) {
    width: 13% !important;
  }
  /* 面仕上げ */
  .mo-stock-table.mo-stock-table-wideband th:nth-child(8), .mo-stock-table.mo-stock-table-wideband td:nth-child(8) {
    width: 10% !important;
  }
  /* 数量 */
  .mo-stock-table.mo-stock-table-wideband th:nth-child(9), .mo-stock-table.mo-stock-table-wideband td:nth-child(9) {
    width: 7% !important;
  }
  /* 梱包形態 */
  .mo-stock-table.mo-stock-table-wideband th:nth-child(10), .mo-stock-table.mo-stock-table-wideband td:nth-child(10) {
    width: 8% !important;
  }
  /* 問合せNo. */
  .mo-stock-table.mo-stock-table-wideband th:nth-child(11), .mo-stock-table.mo-stock-table-wideband td:nth-child(11) {
    width: 10% !important;
    white-space: nowrap !important;
  }
  /* 横スクロール自体を無効化 */
  .mo-stock-table.mo-stock-table-wideband + .mo-stock-scroll-note {
    display: none;
  }
}
/* =========================================================
   ワイドバンドギャップ
   スマホ時：横スクロールは他の在庫表と同じ
   縦方向のスクロールは発生させない
========================================================= */

@media screen and (max-width: 767px) {

  /* 横スクロールは許可 */
  .mo-stock-section#stock-wide-bandgap .mo-stock-scroll {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  /* テーブルは横幅を確保 */
  .mo-stock-section#stock-wide-bandgap .mo-stock-table {
    width: 1150px !important;
    min-width: 1150px !important;
    max-width: none !important;
    table-layout: fixed !important;
  }

  /* 他の在庫表と同じ文字サイズ */
  .mo-stock-section#stock-wide-bandgap .mo-stock-table th,
  .mo-stock-section#stock-wide-bandgap .mo-stock-table td {
    box-sizing: border-box;
    padding: 13px 10px !important;
    font-size: 11px !important;
    line-height: 1.55 !important;
    white-space: nowrap !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    vertical-align: middle !important;
  }

  /* 商品名 */
  .mo-stock-section#stock-wide-bandgap .mo-stock-table th:first-child,
  .mo-stock-section#stock-wide-bandgap .mo-stock-table td:first-child {
    min-width: 130px !important;
    width: auto !important;
    font-size: 12px !important;
  }

  /* ScrollHintの横スクロール表示は残す */
  .mo-stock-section#stock-wide-bandgap .mo-stock-scroll-note {
    display: block !important;
  }

}

/* =========================================================
   ワイドバンドギャップ
   スマホ：商品名の列幅を確保
========================================================= */

@media screen and (max-width: 767px) {

  .mo-stock-section#stock-wide-bandgap .mo-stock-table th:first-child,
  .mo-stock-section#stock-wide-bandgap .mo-stock-table td:first-child {
    width: 8% !important;
    min-width: 180px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }

}