div#cont {
  margin: 0;
}

.wrapper {
  box-sizing: border-box;
  font-weight: 500;
  margin: 20px auto 0;
  overflow: hidden;
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
}

.container {
  float: right;
  width: 730px;
}

@media screen and (max-width: 786px) {
    .container {
        width: 100%;
    }
}

/* ---------- 1. Base (Reset & Variables) ---------- */
:root {
  --color-main: #001D6E;
  --color-sub: #c23535;
  --color-third: #1e293b;
  --color-text: #333;
  --color-subtext: #6b7280;
  --color-bk: #f8f8f8;
  --color-sub-bk: #fdf2f2;
  --color-border: #ddd;
  --color-reverse: #ffffff;
  --color-ico: #d1d5db;
  --m-flow-blue: #1d369a;
  --m-flow-yellow: #fffdeb;
  --space-section: clamp(24px, 3.125vw, 40px);
  --transition: 0.2s;
  --opacity: .6;
  --font-jp: "Helvetica Neue", "Noto Sans JP", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, メイリオ, Meiryo, sans-serif;
}

/* ---------- base ---------- */
body {
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.6;
  font-family: var(--font-jp);
}

a:hover {
  text-decoration: none;
}

.m_onlyImg { 
  line-height: 0;
  margin: 0 auto;
}

.m_onlyImg img { 
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/* modal */
.entry_sec_modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s;
}
.entry_sec_modal img {
  max-width: 90%; 
  max-height: 100vh; 
  object-fit: contain; 
}
.js_clickable-modal:hover {
  cursor: zoom-in;
}
.entry_sec_modal img:hover {
  cursor: zoom-out;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* ---------- 2. Layout (l_) ---------- */
.l_main {}

.l_section--primary {}

.l_section--primary>.l_section__item {
  margin-top: 48px;
}

.l_section--secondary {}

.l_section {}

.l_section__item {}

.l_section + .l_section {
  margin-top: var(--space-section);
}

.l_flex {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-inline: -6px;
}

.l_flex__item {
  box-sizing: border-box;
  flex-shrink: 0;
  padding-inline: 6px;
  width: 100%;
  margin-bottom: 12px;
}

.l_flex__inner {
  display: block;
  width: 100%
}

.l_flex--hasGutter {
  margin: -12px
}

.l_flex--hasGutter>.l_flex__item {
  padding: 12px;
}

.l_grid {
  display: grid;
}

.l_grid--card {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.l_grid__item {}

.l_grid__inner {}

@media screen and (max-width: 768px) {
  .l_grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.l_assessment_section {}

.u_indent {
  text-indent: -1em;
  padding-left: 1em;
}

/* ---------- 3. Module (m_) ---------- */
.menuNav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 10px 0 0 0;
  list-style: none;
  padding: 0;
}

.menuNav_item>a {
  background-color: #18479E;
  border-radius: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding: 10px 8px;
  text-decoration: none;
  transition: var(--transition);
  font-weight: bolder;
  height: 100%;
}

/* --- m_section --- */
.m_section {
}

.m_section__ttl {
  border-left: 6px solid var(--color-sub);
  color: var(--color-sub);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.4;
  padding: 5px 0 5px 10px;
  margin-top: 25px;
  margin-bottom: 20px;
  font-weight: bold;
}

.m_section__subTtl {
  display: flex;
  align-items: center;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: bold;
  line-height: 1.5;
  border-bottom: 2px solid var(--color-sub);
  margin-top: 20px;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.m_section__subTtl::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 8px;
  background: url('/resource/img/consulting/manufacturing/icon_star.png') no-repeat center center / contain;
  flex-shrink: 0;
}

.m_section__txt {
  line-height: 1.6;
  margin-bottom: 16px;
}

.m_section__mainDesc {
  background-color: var(--color-sub-bk);
  border: 1px solid color-mix(in srgb, var(--color-sub), transparent 50%);
  border-radius: 0.25rem;
  padding: clamp(14px, 1.25vw, 16px);
  margin-bottom: 20px;
  align-items: center;
}

.m_section__label {
  color: var(--color-sub);
  font-weight: 700;
  font-size: 18px;
}

.m_section__highLight {
  font-size: 18px;
  font-weight: 700;
}

/* --- m_statCard --- */
.m_statCard {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 20px;
  text-align: center;
  height: 100%;
}

.m_statCard__num {
  display: block;
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 900;
  color: var(--color-sub);
  line-height: 1;
  margin-bottom: 8px;
}

.m_statCard__unit {
  font-size: 0.5em;
  margin-left: 2px;
}

.m_statCard__txt {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
}

/* --- m_list --- */
.m_list {
}

.m_list__Wrap {
  padding-top: 0.75rem;
  color: var(--color-subtext);
}

.m_list__item {
  line-height: 1.6;
  position: relative;
}

.m_list__item + .m_list__item {
  margin-top: 12px;
}

/* ---- m_list--caretright （三角リスト）---- */
.m_list--caretright .m_list__item {
  position: relative;
  padding-left: 1.6em;
  list-style: none;
}

.m_list--caretright .m_list__item::before {
  content: '\f0da';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.2em;
  color: var(--color-sub);
  line-height: 1;
}

/* ---- m_list--check （チェックリスト）---- */
.m_list--check .m_list__item {
  position: relative;
  padding-left: 1.6em;
  list-style: none;
}

.m_list--check .m_list__item::before {
  content: '\f00c';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.2em;
  color: var(--color-sub);
  line-height: 1;
}

/* ---- m_list--dot （黒丸リスト）---- */
.m_list--dot {
  list-style-type: disc;
  padding-left: 1.5em;
}

.m_list--dot .m_list__item {
  display: list-item;
  padding-left: 0.2em;
}

/* ---- m_list--number (数字リスト) ---- */
.m_list--number {
  list-style-type: none;
  counter-reset: item;
  padding-left: 0;
}

.m_list--number .m_list__item {
  counter-increment: item;
  display: flex;
  gap: 4px;
  line-height: 1.8;
}

.m_list--number .m_list__item::before {
  content: counter(item) ".";
  font-weight: bold;
  flex-shrink: 0;
}

/* ----- m_list--check (チェックリスト) ---- */

.m_list--check {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.m_list--check .m_list__item {
  display: flex;
  gap: 8px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* 疑似要素によるチェックアイコンの定義 */
.m_list--check .m_list__item::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--color-sub);
  font-size: 1.1em;
  flex-shrink: 0;
  line-height: 1.6;
}

/* -- m_analysisCard -- */
.m_analysisCard {
  border: 1px solid var(--color-border);
  background-color: var(--color-reverse, #ffffff);
  padding: clamp(16px, 1.5vw, 20px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.l_analysisCard__wrap {
  margin-top: 24px;
}

.m_analysisCard__heading {
  margin-bottom: 12px;
}

.m_analysisCard__ttl {
  display: inline-block;
  border-bottom: 2px solid var(--color-sub);
  padding-bottom: 5px;
  width: 100%;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--color-text, #333);
}

.m_analysisCard__lead {
  font-weight: bold;
}

/* ---- m_tableUnit ---- */
.m_tableUnit {
  position: relative;
  overflow: hidden;
}

.m_tableUnit__inner {
  width: 100%;
  overflow-x: auto; 
  display: block;
}

.m_table {
  width: 100%;
  min-width: 730px;
  border-collapse: collapse;
  table-layout: fixed;
  margin-bottom: 24px;
}

.m_table th,
.m_table td {
  border: 1px solid var(--color-border);
  padding-block: clamp(2px, 0.3125vw, 4px);
  padding-inline: clamp(4px, 0.625vw, 8px);
  font-size: 14px;
  line-height: 1.5;
  vertical-align: middle;
}

.m_table thead th {
  background: #f8f8f8;
  font-weight: bold;
  text-align: center;
}

.m_table__type {
  width: 100px;
}

.m_table__item {
  width: 160px;
}

.m_table__def {
  width: auto;
}

.m_table__label {
  background: #fafafa;
  text-align: center;
  font-weight: bold;
}

.m_table__subLabel {
  background: #ffffff;
  font-weight: bold;
}

.m_table__blur {
  filter: blur(5px);
  color: #ccc;
  user-select: none;
}


/* ----- m_tableLock (オーバーレイ) ---- */
.m_tableLock {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 10;
  width: calc(100% - 260px);
  height: calc(100% - 38px);

}

.m_tableLock__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
}

.m_tableLock__content {
  background: #fff;
  padding: clamp(6px, 0.9375vw, 12px);
  border: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  text-align: center;
  width: 95%;
}

/* ----- m_tableLock__icon ----- */
.m_tableLock__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 12px;
}

.m_tableLock__icon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f023";
  font-size: 32px;
  color: var(--color-ico);
  transition: color var(--transition);
}

.m_tableLock__ttl {
  color: var(--color-sub);
  font-weight: bold;
  margin-bottom: 8px;
}

.m_tableLock__txt {
  font-size: 12px;
  color: #666;
  margin-bottom: 24px;
}

@media screen and (max-width: 599px) {
  .m_tableLock {
    position: static;
    width: 100%;
    height: 100%;
    margin: 20px auto;
  }
  .m_tableLock__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: static;
    width: 100%;
  }
}

/* ---- m_leafQuiz ----- */

.m_leafQuiz {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: linear-gradient(20deg, #2ca9e1, #0095d9 10%, #19448e);
}

.m_leafQuiztopic {
  font-weight: bold;
}

.m_leafQuiz__header {
  padding: 14px;
}

.m_leafQuiz__title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 2rem;
}

.m_leafQuiz__required {
  color: #ff0000;
  margin-right: 4px;
}

.m_leafQuiz__body {
  margin: 16px;
  background: #FFF;
  padding: 8px;
  border-radius: 0.25rem !important;
}

.m_leafQuiz__input {
  display: none;
}

.m_leafQuiz__label {
  position: relative;
  display: block;
  padding: 5px 0 5px 42px;
  margin: 0;
  cursor: pointer;
  font-size: 16px;
  min-height: 24px;
}

@media (min-width: 768px) {
  .m_leafQuiz__label {
    display: inline-block;
  }
}

.m_leafQuiz__label::before,
.m_leafQuiz__label::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  border-radius: 50%;
  box-sizing: border-box;
}

.m_leafQuiz__label::after {
  left: 15px;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  border: 3px solid #0095d9;
  background: transparent;
  z-index: 10;
}

.m_leafQuiz__label::before {
  left: 21px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  z-index: 100;
  background-color: transparent;
  transition: background-color var(--transition);
}

.m_leafQuiz__input:checked + .m_leafQuiz__label::after {
  border-width: 3px;
}

.m_leafQuiz__input:checked + .m_leafQuiz__label::before {
  background-color: #0095d9;
}

.m_leafQuiz__input:disabled + .m_leafQuiz__label::after {
  border-color: #989898;
}

.m_leafQuiz__input:checked:disabled + .m_leafQuiz__label::before {
  background-color: #989898;
}


/* ----- m_relatedArea ----- */
.m_relatedArea {
  position: relative;
  padding: clamp(16px, 4vw, 24px);
}

.m_relatedArea__label {
  position: absolute;
  top: -16px;
  left: 16px;
  background-color: var(--color-sub);
  color: #fff;
  padding: 4px 16px;
  font-weight: bold;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
  z-index: 10;
}

.m_serviceCard iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 24px;
  border: none;
  display: block;
}

/* ---- m_detailBox ----- */
.m_detailBox {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 16px;
  margin-bottom: 20px;
}

.m_detailBox__ttl {
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px solid #d1d5db;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.m_serviceCard__link {
  margin-bottom: 8px;
}

.m_serviceCard__link {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-main);
  text-decoration: none;
  line-height: 1.4;
  transition: color var(--transition), text-decoration var(--transition);
}

.m_serviceCard__link:hover {
  text-decoration: none;
  opacity: var();
}

/* 外部リンクアイコンの制御 */
.m_serviceCard__link::after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
  font-size: 0.85em;
  margin-right: 8px;
  color: var(--color-ico);
  display: inline-block;
  vertical-align: middle;
}

/* ----- m_tag ------ */
.m_tag {
  display: inline-block;
  padding: 4px 8px;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  border-radius: 4px;
  white-space: nowrap;
}

.m_tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ----- m_priceBox ---- */
.m_priceBox {
  border: 2px solid var(--color-sub);
  padding: 32px 20px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 auto;
}

.m_priceBox__target {
  font-size: 18px;
  font-weight: bold;
  color: #374151;
  margin-bottom: 16px;
}

.m_priceBox__main {
  color: var(--color-sub);
  font-weight: bold;
  margin-bottom: 24px;
}

.m_priceBox__num {
  font-size: 48px;
  line-height: 1;
}

.m_priceBox__unit {
  font-size: 24px;
  margin-left: 2px;
}

.m_priceBox__note {
  font-size: 16px;
  color: var(--color-subtext);
  font-weight: normal;
}

/* ----- m_btn ----- */
.m_btn {
  display: flex;
  align-items: stretch;
}

.m_btn::before {
  content: "";
  display: block;
  width: 0;
  height: clamp(48px, 5vw, 64px);
}

.m_btn__target {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  padding-inline: 16px;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.m_btn__target::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  transition: color var(--transition);
}

/* .m_btn--main .m_btn__target::before {
  content: "\f0e0";
}

.m_btn--cta .m_btn__target::before {
  content: "\f15c";
}

.m_btn--cart .m_btn__target::before {
  content: "\f07a";
} */

.m_btn--cta .m_btn__target {
  background-color: var(--color-sub);
  color: var(--color-reverse);
  border-color: var(--color-sub);
}

.m_btn--cta .m_btn__target:hover {
  background-color: var(--color-reverse);
  color: var(--color-sub);
}

/* .m_btn--main .m_btn__target {
  background-color: var(--color-third);
  color: var(--color-reverse);
  border-color: var(--color-third);
}

.m_btn--main .m_btn__target:hover {
  background-color: var(--color-reverse);
  color: var(--color-third);
}

.m_btn--cart .m_btn__target {
  background-color: var(--color-sub);
  color: var(--color-reverse);
  border-color: var(--color-sub);
}

.m_btn--cart .m_btn__target:hover {
  background-color: var(--color-reverse);
  color: var(--color-sub);
} */

/* ----- m_flowContainer --- */
.m_flowContainer {
  margin-top: 32px;
}

.m_flowItem {
  display: flex;
  margin-bottom: 5px;
  position: relative;
}

.m_flowItem__label {
  background-color: var(--m-flow-blue);
  color: #fff;
  width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  position: relative;
  flex-shrink: 0;
}

.m_flowItem__labelTtl {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 2px;
}

.m_flowItem__labelNum {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

.m_flowItem__content {
  background-color: var(--m-flow-yellow);
  border: 2px solid var(--m-flow-blue);
  flex: 1;
  padding: 15px 20px;
  margin-left: -2px;
}

.m_flowItem__ttl {
  color: var(--m-flow-blue);
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.m_flowItem__txt {
  font-size: 13px;
  color: #333;
  margin: 0;
}

.m_flowItem__label::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 15px;
  background-color: var(--m-flow-blue);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 15;
}

.m_flowItem:nth-of-type(n+2)::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50px;
  transform: translateX(-50%);
  width: 36px;
  height: 18px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 10;
}

.m_flowItem:last-child .m_flowItem__label::after {
  display: none;
}

.m_flowArea__ttl {
  font-size: 24px;
  color: var(--m-flow-blue);
  text-align: center;
}

/* ----- m_summaryBox ------ */
.m_summaryBox {
  background-color: #fff;
  border: 1px solid var(--color-border);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.m_summaryBox__inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ----- お問合せ、QA関連 ------ */
.m_assessment_link_box {}

.m_assessment_link_box+.m_assessment_link_box {
  margin-top: 48px;
}

.m_assessment_link_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.m_assessment_link_inner {
  text-align: center;
  padding: 10px;
  border-radius: 50px;
  color: #000;
  -webkit-box-shadow: 2px 6px 26px -6px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 2px 6px 26px -6px rgba(0, 0, 0, 0.16);
  box-shadow: 2px 6px 20px -6px rgba(0, 0, 0, 0.16);
}

.m_assessment_inner--qa {
  border: 1px solid #5A4CC7;
}

.m_assessment_inner--qa:hover {
  position: relative;
  background-color: #5A4CC7;
  color: #fff;
  text-decoration: none;
}

.m_assessment_inner--return {
  border: 1px solid #2E8B56;
}

.m_assessment_inner--return:hover {
  position: relative;
  background-color: #2E8B56;
  color: #fff;
  text-decoration: none;
}

.m_assessment_inner--return::after {
  position: absolute;
  content: url('/resource/img/consulting/icon_return.svg');
  padding-left: 5px;
  width: 20px;
  height: 20px;
}

.m_assessment_inner--return:hover::after {
  content: url('/resource/img/consulting/icon_return-hover.svg');
}

.m_assessment_link_inner+.m_assessment_link_inner {
  margin-top: 24px;
}

.m_assessment_link {
  font-size: 18px;
  color: inherit;
  font-weight: bold;
}

.m_assessment_link_inquiry_wrap {
  position: relative;
}

.m_assessment_link_inquiry_wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #C2C2C2;
  top: -20px;
}

.m_assessment_link_inquiry_ttl {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}

.m_assessment_link_inquiry_copy {
  font-size: 15px;
  text-align: center;
}

.m_assessment_link_inquiry {
  margin-top: 24px;
}

.m_assessment_btn {}

.m_assessment_btn_link {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #000;
  padding: 15px;
  padding-left: 40%;
  border-radius: 5px;
  -webkit-box-shadow: 2px 6px 26px -6px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 2px 6px 26px -6px rgba(0, 0, 0, 0.16);
  box-shadow: 2px 6px 20px -6px rgba(0, 0, 0, 0.16);
}

.m_assessment_btn_link:hover {
  opacity: .6;
  box-shadow: initial;
  color: inherit;
  text-decoration: none;
}


.m_assessment_btn_link--qa {
  border: 2px solid #000;
}

.m_assessment_btn_link--qa::before {
  position: absolute;
  content: url('/resource/img/consulting/icon_navi-b01_qa.svg');
  padding-right: 10px;
  left: 60px;
  top: 15px;
}

.m_assessment_btn_link--contact {
  border: 2px solid #E5002D;
}

.m_assessment_btn_link--contact::before {
  position: absolute;
  content: url('/resource/img/consulting/icon_navi-b02_inquiry.svg');
  padding-right: 10px;
  left: 60px;
  top: 15px;
}

.m_assessment_btn_link--shodan {
  border: 2px solid #2A6CAE;
}

.m_assessment_btn_link--shodan::before {
  position: absolute;
  content: url('/resource/img/consulting/icon_navi-b03_business-discussion.svg');
  padding-right: 10px;
  left: 60px;
  top: 15px;
}

/* ---------- 4. State (js_ / .is_) ---------- */


/* ---------- 5. Utility (u_) ---------- */
/* --- 横幅(%) --- */
.u_col1 {width: 8.333%;}
.u_col2 {width: 16.667%;}
.u_col25 {width: 20%;}
.u_col3 {width: 25%;}
.u_col4 {width: 33.333%;}
.u_col5 {width: 41.666%;}
.u_col6 {width: 50%;}
.u_col7 {width: 58.333%;}
.u_col8 {width: 66.666%;}
.u_col9 {width: 75%;}
.u_col10 {width: 83.33%;}
.u_col11 {width: 91.666%;}
.u_col12 {width: 100%;}

/* 中画面 (768px以下) */
@media screen and (max-width:768px) {
  .u_resMdCol1 {width: 8.333%;}
  .u_resMdCol2 {width: 16.667%;}
  .u_resMdCol3 {width: 25%;}
  .u_resMdCol4 {width: 33.333%;}
  .u_resMdCol5 {width: 41.666%;}
  .u_resMdCol6 {width: 50%;}
  .u_resMdCol7 {width: 58.333%;}
  .u_resMdCol8 {width: 66.666%;}
  .u_resMdCol9 {width: 75%;}
  .u_resMdCol10 {width: 83.33%;}
  .u_resMdCol11 {width: 91.666%;}
  .u_resMdCol12 {width: 100%;}
}

/* 小画面 (599px以下) */
@media screen and (max-width:599px) {
  .u_resSmCol1 {width: 8.333%;}
  .u_resSmCol2 {width: 16.667%;}
  .u_resSmCol3 {width: 25%;}
  .u_resSmCol4 {width: 33.333%;}
  .u_resSmCol5 {width: 41.666%;}
  .u_resSmCol6 {width: 50%;}
  .u_resSmCol7 {width: 58.333%;}
  .u_resSmCol8 {width: 66.666%;}
  .u_resSmCol9 {width: 75%;}
  .u_resSmCol10 {width: 83.33%;}
  .u_resSmCol11 {width: 91.666%;}
  .u_resSmCol12 {width: 100%;}
}

/* --- 余白調整 --- */
.u_mt32 {margin-top: 32px;}
.u_mb12 {margin-bottom: 12px;}
.u_mb16 {margin-bottom: 16px;}
.u_mb24 {margin-bottom: 24px;}
.u_mb64 {margin-bottom: 64px;}
.u_mxA {margin-inline: auto;}
.u_pt0Imp { padding-top: 0 !important;}
.u_pb0Imp {padding-bottom: 0 !important;}

/* 可変余白 (clamp) */
.u_mb32-56 {margin-bottom: clamp(32px, 4.74vw, 56px);}
.u_mb64-80 {margin-bottom: clamp(64px, 5.81vw, 80px);}
.u_pb24-40Imp {padding-bottom: clamp(24px, 2.4vw, 40px) !important;}

/* --- 文字・表示制御 --- */
.u_bold {font-weight: 700;}
.u_taC {text-align: center;}
.u_hide {display: none;}
.u_ofH {overflow: hidden;}

@media screen and (max-width: 768px) {
  .u_resMdHide {display: none;}
  .u_resMdBlock {display: block;}
}

@media screen and (max-width: 599px) {
  .u_resSmHide {display: none;}
  .u_resSmBlock {display: block;}
}

/* --- 文字サイズ --- */
.u_fz13 {font-size: 13px;}
.u_fz18 {font-size: 18px;}