@charset "utf-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");


/*=========================*/
/*-- general --*/
/*=========================*/
:root {
  --blue: #003f76;
  --gray: #f9f9f9;
  --black: #333333;
  --yellow: #fff000;

  --pc-padding: 100px;
  --shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

  --font12: 12px;
  --font14: 14px;
  --font16: 16px;
  --font18: 18px;
  --font20: 20px;
  --font22: 22px;
  --font24: 24px;
  --font28: 28px;
  --font30: 30px;
  --font32: 32px;
  --font36: 36px;
}

.images {
  width: 100%;
  height: auto;
}

.bn-sizes {
  width: 100%;
  max-height: 300px;
  max-width: 1200px;
  margin: 0 auto;
}

.single-article .wp-block-column figcaption, .single-article .wp-block-image figcaption {
  /* text-align: center; */
  display: inline-block;
  margin-left: 5px;
}

.dli-mail {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 1.06667em;
  height: 0.8em;
  border: 0.1em solid currentColor;
  border-radius: 0.1em;
  box-sizing: content-box;
  overflow: hidden;
}

.dli-mail::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 0.75425em;
  height: 0.75425em;
  border: 0.1em solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 0 0 0 0.1em;
  box-sizing: content-box;
  transform: translate(-50%, -50%) rotate(-45deg) skew(10deg, 10deg);
}

.text-ffs {
  font-feature-settings: "palt";
}

.hideImg {
  display: none;
}


.support-list {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease;
  width: 100%;
}

.support-list li {
  width: 30%;
}

.support-list .image-container {
  position: relative;
  display: inline-block;
}

.support-list .image-container img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.support-list .image-container .text-overlay {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  padding: 0;
  /*background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 70%);*/
  text-align: center;
}

.support-list .image-container .text-overlay h3 {
  font-size: 2.2rem;
  font-weight: 400;
  color: white;
  width: 100%;
  padding: 10px;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.5);
}

.support-under {
  padding: 50px 0 50px;
}
.support-under .text-overlay h3{
  font-size: 1.8rem !important;
}

.footer-link-list {
  flex-wrap: wrap;
}

.footer-link-list li {
  margin-bottom: 15px
}

@media screen and (max-width: 1050px) {
  .footer-link-list {
    flex-wrap: wrap;
  }

  .footer-link-list li {
    margin-bottom: 15px
  }
	
  .support-list {
    flex-wrap: wrap;
  }

  .support-list li {
    width: 100%;
  }
	
	.support-under {
	  padding: 0 0 50px;
	}

  .support-under li {
    width: 50%;
  }

  .support-under .text-overlay h3{
    font-size: 1.2rem !important;
  }

	.support-under .arrow-link{
	  font-size: 1.2rem !important;
	}
}

/*=========================*/
/*-- header menu --*/
/*=========================*/
.navi-list {
  position: relative;
}

.navi-list li {
  position: relative;
  /* サブメニューの基準を設定 */
}

.navi-list li a {
  opacity: 1;
}

.navi-list li:hover .submenu {
  display: block;
}

.parent-menu {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

/* サブメニューの初期状態を非表示 */
.submenu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(100%);
  left: 0%;
  background: rgba(0, 64, 119, 0.7);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 16px;
  min-width: 240px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  z-index: 9999;
  color: #fff;
  text-align: left;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(6px);
  /*border: 1px solid rgba(255, 255, 255, 0.5);*/
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* サブメニュー内のリンク */
.submenu a {
  font-weight: bold !important;
  color: #fff !important;
  text-decoration: none;
}

.submenu a:hover {
  opacity: 1;
  visibility: visible;
  text-decoration: underline;
}

/* 親メニューにホバーした際にサブメニューを表示 */
.navi-list li:hover .submenu {
  opacity: 1;
  visibility: visible;
  text-decoration: none;
}

/* サブメニュー内のカラム */
.submenu .submenu-column {
  display: block;
  padding: 5px 10px;
  box-sizing: border-box;
  width: max-content;
}

.submenu-column h4 {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  color: #efefef;
}

.submenu-column h4:hover {
  opacity: 1;
  visibility: visible;
  text-decoration: underline;
}

.submenu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.submenu-column ul li {
  margin-bottom: 5px;
}

.submenu-column ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1.3rem;
}

.submenu-column ul li a:hover {
  opacity: 1;
  text-decoration: underline;
  /*text-decoration: none;*/
}

/* レスポンシブ対応 */
@media screen and (max-width: 960px) {
  .white-menu-image {
    margin-top: 2vh;
  }
}

@media screen and (max-width: 768px) {
  .submenu .submenu-column {
    flex: 1 1 calc(50% - 20px);
    /* 2列表示 */
  }

  .white-menu-image {
    margin-top: 5vh;
  }
}

@media screen and (max-width: 640px) {
  .white-menu-image {
    margin-top: 6vh;
  }
}

/*=========================*/
/*-- Company --*/
/*=========================*/


.jiw-comoany .about-box .about-title {
  font-size: clamp(4rem, 6vw, 6rem);
}

.jiw-comoany .about-box .about-sub-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.jiw-comoany .about-box .about-text-wrapper-left {
  left: 30%;
}


/* スクロール型*/
.jiw-comoany .about-section {
  height: 80vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  position: relative;
  z-index: 1;
}

.jiw-comoany .snap-panel {
  height: 80vh;
  position: sticky;
	top: 0;
	/*
  position: relative;
  scroll-snap-align: start;
	*/
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.jiw-comoany .snap-panel.a { z-index: 1; }
.jiw-comoany .snap-panel.b { z-index: 2; }
.jiw-comoany .snap-panel.c { z-index: 3; }

.jiw-comoany .about-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 1;
}

.jiw-comoany .about-text-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

/* スクロール型ここまで */

.jiw-comoany .about-title p {
  font-size: 7rem;
  font-weight: bold;
}

.jiw-comoany .about-sub-title p {
  font-size: 5rem;
}


.jiw-comoany .a .about-text-wrapper  {
	position: relative;
	left:20%;
}

.jiw-comoany .b .about-text-wrapper  {
	position: relative;
	right:20%;
}

.jiw-comoany .c .about-text-wrapper  {
	position: relative;
	left:20%;
}

/* スマホの場合 */
@media (max-width: 1050px) {
.jiw-comoany .a .about-text-wrapper  {
	position: relative;
	left:0%;
}

.jiw-comoany .b .about-text-wrapper  {
	position: relative;
	left:0%;
}

.jiw-comoany .c .about-text-wrapper  {
	position: relative;
	left:0%;
}
	
	
.jiw-comoany .about-title p {
  font-size: 5rem;
  font-weight: bold;
}

.jiw-comoany .about-sub-title p {
  font-size:3rem;
}

}

/*=========================*/
/*-- News Room --*/
/*=========================*/

.news-flex-area {
  display: flex;
  flex-direction: row;
}

.news-thumb-area, .news-thumb-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 130px;
  overflow: hidden;
  border: 0;
}

.news-thumb-area img, .news-thumb-empty img {
  height: 100%;
  width: auto;
  border: 0;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.news-text-area {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin-left: 20px;
}


.news-release-detail-mv {
  display: block;
  margin-bottom: 6.5vh;
}

#newsroom-detail-link {
  border-radius: 0px;
  display: block;
  margin: 70px 10px 20px 10px;
  padding: 20px;
  position: relative;
  background-color: #F7F7F7;
}

#newsroom-detail-link p {
  padding: 5px 10px;
  display: flex;
  justify-content: flex-start;
}

#newsroom-detail-link p span::before {
  content: "\00BB ";
  /* 「&rsaquo;」の実体参照 */
  color: #333;
  /* 接頭辞の色 */
  margin-right: 10px;
}

#newsroom-detail-link p a {
  display: block;
  font-weight: 300;
}

#newsroom-detail-link h4 {
  position: relative;
  width: 180px;
  font-size: 1.6rem;
  top: -10px;
  left: -40px;
  padding: 5px 30px;
  display: inline-block;
  background: #004077;
  color: white;
}

#newsroom-detail-link h4::before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px rgb(149, 158, 155);
}

.release-ul {
  color: #004077;
  font-weight: bold;
  padding: 30px 20px;
  list-style-type: none;
}

.release-li {
  display: flex;
  justify-content: start;
  margin: 20px 0;
  list-style-type: none;
  padding: 0;
}

.release-span {
  display: inline-block;
  min-width: 20px;
}

/*記事用*/
.article-width {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  justify-content: center;
}

/*横並び画像の中央寄せ（スマホ閲覧時スライダー化）*/
.news-img-slider-container {
  display: flex;
  justify-content: center;
  /* PCで中央寄せ */
}

.news-img-slider-container .slider {
  width: 930px;
  display: flex;
  justify-content: space-between;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  max-width: 100%;
  padding-bottom: 10px;
  /* スクロールバー対策 */
}

.news-img-slider-container .slider img {
  flex: 0 0 auto;
  width: 100%;
  max-width: 300px;
  /* 画像幅調整 */
  scroll-snap-align: center;
}

.news-fig-caption {
  text-align: center;
  margin-top: 8px;
}

.wp-block-table-layout th {
  min-width: 100px;
  vertical-align: middle;
}

/* スマホの場合 */
@media (max-width: 768px) {
  .news-img-slider-container {
    justify-content: flex-start;
    /* スマホでは左寄せ（横スクロール可能） */
    overflow-x: auto;
  }
}


/* 目次コンテナ全体のスタイル */
.toc-container {
    max-width: 800px;
    margin: 30px 0;
    padding: 20px 30px;
    border: 1px solid #ddd;
}

はい、承知いたしました。リストのスタイルをH2レベルでは数字に、ネストされたH3レベルでは**ハイフン（またはカスタム装飾）**に変更し、階層がより分かりやすくなるようにCSSを修正します。

🎨 CSS修正コード（リストスタイルの変更）
前回のCSSに代わり、以下のコードを適用してください。

CSS

/* 目次コンテナ全体のスタイル（変更なし） */
.toc-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.toc-title {
    font-size: 1.25em;
    font-weight: bold;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #005a9c;
    margin-bottom: 15px;
}

.toc-list {
	width: 100% ;
    margin: 10px 0 !important;
    list-style-type: decimal;
    padding-left: 20px; 
    margin: 0;
}

.toc-list li {
    margin-bottom: 3px;
	padding-left: 0.8em !important;
}

.toc-list > li > a {
    font-weight: bold;
    color: #000;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    /*border-bottom: 1px dotted #ccc;*/
    margin-left: -5px; 
	font-size: 1.5rem;
}

.toc-list > li > a:hover {
    color: #005a9c;
}

.toc-list .toc-list-h3 {
    list-style: none; 
	margin: 0;
	margin-top: 5px;
}

.toc-list .toc-list-h3 li {
    position: relative;
    padding-left: 15px;
	font-size: 1.4rem;
}

.toc-list .toc-list-h3 li::before {
    content: "–"; 
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 3px;
}


.toc-list .toc-list-h3 a {
    font-weight: normal;
    color: #333;
    text-decoration: none;
    display: block;
    padding: 3px 0;
}

.toc-list .toc-list-h3 a:hover {
    color: #005a9c;
    text-decoration: underline;
}


@media (max-width: 768px) {
    .toc-container {
        margin: 20px 0;
        padding: 15px;
        border-left: none;
        border-right: none;
        border-radius: 0;
    }
}

/*=========================*/
/*-- TOP SERVICE --*/
/*=========================*/
.slideName {
  line-height: 1.4em;
  color: #bbb;
  /* text-shadow: #333 0px 0 3px; */
}


/*=========================*/
/*-- column & CASE STUDY --*/
/*=========================*/
.column-svg,
.youtube-svg {
  width: auto;
  height: 50px;
}


/*-- トップメッセージ退避用 --*/
.corporate-list {
  justify-content: center;
}

.corporate-list .ta-l {
  margin: 20px;
}


/*=========================*/
/*-- Productバナー --*/
/*=========================*/

.product_banner {
  margin: 100px auto;
  width: 90%;
}

.product_banner img {
  width: 100%;
}

.product_banner img:hover {
  opacity: 60%;
  transition: 1s;
}


/*=========================*/
/*-- トップRESULTS --*/
/*=========================*/

/*-- トップRESULTS TITLE--*/
.results-title {
  display: block;
  margin-bottom: 30px;
}

.results-md {
  color: #004077;
}

.results-cap {
  color: #666;
}


/*-- トップRESULTS 個別グラフ--*/
.result-box {
  display: flex;
  flex-direction: row;
  max-width: 100%;
}

.result-box-left {
  width: 320px;
  max-width: 60%;
  text-align: left;
  border: 1px solid #ddd;
}

.result-box-left-sub {
  font-size: 20px;
  font-weight: bold;
  color: #7194B3;
}

.result-box-left-sub span {
  display: inline-block;
  font-size: 11px;
  font-weight: 100;
  padding-left: 10px;
}

.result-box-left-number {
  font-size: 120px;
  line-height: 100px;
  font-weight: bold;
  color: #004077;
}

.result-box-left-number span {
  display: inline-block;
  font-weight: bold;
  font-size: 24px;
  padding-left: 0px;
}

.result-box-right {
  width: 280px;
  max-width: 40%;
  border: 1px solid #ddd;
}

.result-data li {
  display: flex;
  align-content: space-around;
  justify-content: space-between;
  font-size: 0.92em;
  color: #7194B3;
  text-align: left;
  align-items: center;
  margin: 15px 0;
  /* border: 1px solid #ddd; */
}

.result-data li dl, dd {
  text-align: left;
  /* border: 1px solid #ddd; */
}

.result-data li dl {
  position: relative;
  top: 2px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  padding-top: 5px;
}

.result-data li dd {
  height: 20px;
  line-height: 24px;
  padding: 0px 5px;
}

.result-note-area {
  display: block;
  text-align: left;
  font-size: 10px;
  margin-top: 20px;
}

.dl-cl01 {
  background-color: #004077;
}

.dl-cl02 {
  background-color: #7194B3;
}

.dl-cl03 {
  background-color: #AABFD1;
}

.dl-cl04 {
  background-color: #E2E9EF;
}

.result-data-props {
  width: 200px;
  min-width: 100px;
  letter-spacing: -0.05em;
  border: 1px solid #ddd;
}

.result-data-num {
  width: 100px;
  min-width: 90px;
  text-align: right;
  border: 1px solid #ddd;
}

.result-data-num .barlow-c {
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  color: #004077;
}

.result-data-num span {
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  padding-left: 3px;
  text-align: right;
}

.result-note {
  font-size: 11px;
  color: #7194B3;
}

/*-- トップRESULTS 個別グラフ--*/
.results-list-section {
  background-color: #E2E9EF;
  padding: 100px 0;
  text-align: center;
}

.flexfix {
  width: 100%;
  overflow: scroll;
  -ms-overflow-style: none;
  /* Firefox 対応 */
  scrollbar-width: none;
}

.flexfix-center {
  display: flex;
  width: 1200px;
  height: 324px;
  justify-content: space-between;
  margin: 0 auto;
}

.top-result-list-item {
  display: block;
  width: 360px;
}

.top-result-list-item img {
  width: 100%;
}


/*=========================*/
/*-- トップ Youtube --*/
/*=========================*/
.youtube-section {
  padding: 80px 0 0 0;
}

.youtube-triangle-wrapper {
  margin: 50px auto 0;
}

.youtube-wrapper {
  transform: translateY(-15px);
  width: 100%;
  padding-bottom: 100px;
  overflow: hidden;
}

.youtube-left {
  display: inline-block;
  text-align: center;
  margin-top: 11.5%;
}

.youtube-right {
  width: 1560px;
  left: auto;
  right: 0;
  top: 0;
}

.youtube-list li {
  width: calc(25% - 60px);
  margin-right: 60px;
}

.youtube-list li a {
  display: block;
  transition: 0.3s;
}

.youtube-list li a:hover .youtube-image img {
  transform: scale(1.1);
}

.youtube-image {
  width: 100%;
  overflow: hidden;
}

.youtube-image img {
  transition: 0.3s;
}

.youtube-image-cat {
  text-align: center;
  min-width: 100px;
  padding: 1em;
  left: 0;
  top: 0;
  z-index: 10;
}

.youtube-title {
  margin: 20px auto;
  line-height: 1.4;
}

.youtube-thumb {
  padding: 0;
  height: 240px;
  border-radius: 16px;
}

.youtube-thumb img {
  height: 240px;
  -o-object-fit: cover;
  object-fit: cover;
}

.modal-video {
  display: none;
}

/*=========================*/
/* インフラページ */
/*=========================*/

/*-- インフラページ実績 --*/
.box-padding-40 {
  width: 100%;
  justify-content: space-between;
}

.note-wrapper {
  width: 100%;
  /* border:1px solid #ddd; */
}

.box-image-graph {
  margin: 40px 20px;
}

.box-image-map {
  margin: 40px 20px;
}

.wrapper-right {
  text-align: right;
}

.result-section,
.pipeline-section,
.culvert-section,
.water-pipe-bridge-section,
.tower-section {
  width: 100%;
  position: relative;
}

.result-section::before,
.pipeline-section::before,
.culvert-section::before,
.water-pipe-bridge-section::before,
.tower-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.culvert-section {
  background: url(../../images/infra/culvert-kv.jpg) no-repeat 50% 50%/cover;
  padding: 70px 0 100px;
}

.water-pipe-bridge-section {
  background: url(../../images/infra/water-pipe-bridge-kv.jpg) no-repeat 50% 50%/cover;
  padding: 70px 0 100px;
}

/*=========================*/
/*-- 機体情報  Skydio X10 --*/
/*=========================*/

  .sale-products-main {
	  width:100%;
	  min-height:625px;
  }

@media screen and (max-width: 1050px) {
    .sale-lnavi-wrap {
        top: 70px;
        padding: 15px 0;
    }
	 .sale-products-main {
		  width:100%;
		  min-height:200px;
	  }

}

.section-attachment-wrapper {
  margin: 70px 0 0 0;
  text-align: center;
}

.attachment-list {
  margin: 40px 0 0 0;
  justify-content: space-around;
  flex-wrap: wrap;
  /* border: 1px solid #ddd; */
}

.attachment-list li {
  display: block;
  margin-bottom: 50px;
}

.attachment-list img {
  width: 210px;
}

.attachment-list p {
  text-align: center;
}

.attachment-p {
  margin-top: 16px;
  font-size: 1.2em;
  font-weight: bold;
}

.attachment-text {
  margin-top: 10px;
  font-size: 0.9em;
}

.nightsense-list {
  margin: 40px 0 0 0;
  justify-content: space-between;
  flex-wrap: wrap;
  /* border: 1px solid #ddd; */
}

.nightsense-list li {
  width: 30%;
}

.nightsense-list img {
  width: 100%;
  margin-bottom: 40px;
}

.nightsense-text {
  margin: 0 auto 40px;
  font-size: 1.0em;
  line-height: 2.0em;
  text-align: left;
}

/*=========================*/
/*-- Waymark Care --*/
/*=========================*/

/* table 使用*/
.plan_table {
  border-collapse: collapse;
  background-color: #fff;
  color: #163b85;
  width: 100%;
  font-size: 1.6rem;
  min-width: 800px;
}

.plan_table th {
  padding: 6px;
  text-align: center;
  vertical-align: middle;
}

.plan_table td {
  padding: 6px;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
}

.plan_table td.left-align {
  text-align: left;
}

.plan_table .head-container {
  padding: 20px 10px;
  background-color: #a6a6a6;
  font-size: 1.4rem;
  color: #fff;
  width: 140px;
  max-width: 20%;
}

.plan_table .standard-row td {
  background-color: #fff;
}

.plan_table .fullpack-row td {
  background-color: #efefef;
}

.plan_table .divid-line {
  border-bottom: 3px solid #666 !important;
}

.plan_table .sub-container1 {
  padding: 20px 20px;
  background-color: #fff !important;
  color: #163b85;
  font-size: 1.4rem;
  font-weight: bold;
  width: 140px;
  max-width: 20%;
  text-align: left;
}

.plan_table .sub-container2 {
  padding: 20px 20px;
  background-color: #f2f2f2 !important;
  color: #163b85;
  font-size: 1.4rem;
  font-weight: bold;
  width: 140px;
  max-width: 20%;
  text-align: left;
}

.plan_table .standard {
  padding: 20px 10px;
  background-color: #dce6f2 !important;
  color: #004077;
  width: 140px;
  max-width: 20%;
}

.plan_table .enterprise {
  padding: 20px 10px;
  background-color: #578cda !important;
  color: #fff;
  width: 140px;
  max-width: 20%;
}

.plan_table .premium {
  padding: 20px 10px;
  background-color: #004077 !important;
  color: #fff;
  width: 140px;
  max-width: 20%;
}

.table-container {
  overflow-x: auto;
}

/*=========================*/
/*-- デジタル支援 --*/
/*=========================*/
.digital-lnavi {
  position: fixed;
  top: 70px;
  left: 0;
  z-index: 8000;
  width: 100%;
  padding: 45px 0 15px;
  color: #fff;
  background: #004077;
  transition: .5s
}

.lnavi-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.lnavi-visible {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1150px) {
  .digital-lnavi {
    top: 70px;
    padding: 15px 0
  }
}

@media screen and (max-width: 768px) {
  .digital-lnavi {
    top: 70px;
    padding: 15px 0
  }

  .digital-lnavi-list {
    overflow: auto;
    justify-content: space-between;
  }

  .digital-lnavi-list li {
    display: inline-block;
    min-width: 50px;
    font-feature-settings: "palt";
  }
}

/*. Waymark Note */
.yacho-box ul {
  display: block;
  padding: 10px 20px;
}

.yacho-box ul li {
  list-style-type: circle;
  text-align: left;
  margin-bottom: 10px;
}

.yacho-box ul li::marker {
  content: " ◯ ";
  font-size: 13px;
}

.kv-wm-wrapper {
  min-height: 480px;
  max-height: 800px;
  overflow: hidden;
}

.wm-feature {
  margin-top: 150px;
}

@media screen and (max-width: 500px) {
  .wm-feature {
    margin-top: 200px;
  }
}


.wm-title {
  display: flex;
  align-items: center justify-content: flex-start;
}

.wm-trial {
  font-size: 2.0rem;
}

.wm-function p {
  font-feature-settings: 'palt';
}

.wm-monitor p {
  font-feature-settings: 'palt';
}

.wm-box-img {
  margin-top: 70px;
}

@media screen and (max-width: 1050px) {
  .wm-box-img {
    margin-top: -20px;
  }
}


.monitor-box {
  /*display: flex;*/
  width: 100%;
  text-align: center;
  padding: 30px 10px 20px;
  /*flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;*/
}

.monitor-box a {
  width: 46%;
}

.monitor-box img {
  width: 100px;
  margin: 20px;
}

.top-plan-box {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.top-plan-box a {
  font-size: 1.8rem;
  width: 47%;
  margin-bottom: 50px;
  padding: 40px 0px;
  background-color: #004077;
  color: #fff;
  border: 1px solid #004077;
}

.top-plan-box a:hover {
  color: #004077;
}

@media screen and (max-width: 1050px) {
  .kv-wm-wrapper {
    max-height: 240px;
    overflow: hidden;
  }

  .monitor-box {
    width: 100%;
    padding: 0px 10px;
    flex-wrap: wrap;
    align-items: left;
    justify-content: center;
  }

  .monitor-box a {
    font-size: 1.6rem;
    width: 100%;
    margin-bottom: 30px;
  }

  .top-plan-box a {
    width: 100%;
  }


  .wm-head {
    font-size: 1.4rem;
  }

  .wm-trial {
    font-size: 1.3rem;
  }

  .wm-title {
    justify-content: center;
  }

}


/* 機能比較テーブルセクション */
#provision .pricing-table-section {
  overflow: hidden;
  margin: 0 auto 60px auto;
  max-width: 960px;
}

#provision .pricing-table {
  width: 100%;
  border-collapse: collapse;
}

#provision .pricing-table thead th {
  background: #003366;
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 16px;
}

#provision .pricing-table th:nth-child(2) {
  text-align: center;
}

#provision .pricing-table th:nth-child(3) {
  text-align: center;
}

#provision .pricing-table tbody td {
  text-align: left;
  padding: 16px;
  vertical-align: middle;
  color: #555;
}

#provision .pricing-table tbody tr {
  background: #ffffff;
  transition: background-color 0.3s ease;
}

#provision .pricing-table tbody tr:nth-child(odd) {
  background: #f9f9f9
}

#provision .pricing-table tr:last-child td {
  border-bottom: none;
}

#provision .pricing-table td:nth-child(2) {
  text-align: center;
}

#provision .pricing-table td:nth-child(3) {
  text-align: center;
}


#provision .pricing-table tbody .tr-b {
  background-color: #eef5ff !important;
}

#provision .pricing-table tbody .tr-db {
  background-color: #e0eaf9 !important;
}


@media (max-width: 768px) {

  #provision .pricing-table-header h2,
  .feature-introduction h2 {
    /*font-size: 1.4rem;*/
  }

  #provision .pricing-table thead th,
  #provision .pricing-table tbody td {
    /*font-size: 0.9rem;*/
    padding: 12px;
  }
}


/*=========================*/
/*-- 用語集 --*/
/*=========================*/


@media screen and (max-width: 2050px) {
  .youtube-right {
    right: auto;
    left: 23%;
  }
}

@media screen and (max-width: 1050px) {
  .youtube-wrapper {
    transform: translateY(0);
    padding-bottom: 80px;
  }

  .youtube-contents {
    text-align: center;
  }

  .youtube-left {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .youtube-right {
    position: static;
    width: 100%;
    margin-left: 0%;
    left: auto;
    right: auto;
    top: auto;
  }

  .youtube-list li {
    width: 330px;
    margin-right: 20px;
  }

  .youtube-triangle-wrapper {
    display: none;
  }

  .youtube-text {
    display: none !important;
  }

  .youtube-text p {
    display: none !important;
  }

  .youtube-thumb {
    height: 48vw;
  }

  .youtube-thumb img {
    width: 100%;
    height: 48vw;
  }

  .nightsense-list {
    justify-content: space-around;
  }

  .nightsense-list li {
    width: 45%;
  }
}

/*------------------------ question ------------------------*/

.question_list {
  list-style-type: none;
  padding-left: 0;
}

.question_list li {
  font-feature-settings: 'palt';
  background-color: #fff;
  /*border-bottom: 1px solid var(--blue);*/
}

.question_list li .q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 20px 10px;
  cursor: pointer;
}

.question_list li:last-child .q {
  border-bottom: none;
}

.q_cnt {
  display: flex;
  align-items: center;
  width: 100%;
}

.q_cnt img {
  margin: 0 20px;
  min-width: 18px;
  min-height: 18px;
  max-width: 18px;
  max-height: 18px;
}

.question_arrow {
  font-size: 20px;
  color: var(--blue);
  cursor: pointer;
  pointer-events: auto;
  transition: 0.3s;
}

.a_close {
  transform: rotateX(0);
}

.a_cnt {
  display: flex;
  align-items: center;
  width: 100%;
}

.a_cnt img {
  margin-left: 30px;
  margin-right: 20px;
  min-width: 18px;
  min-height: 18px;
  max-width: 18px;
  max-height: 18px;
}

.question_list li .a {
  border-top: 1px solid var(--dark-orange);
  display: none;
  padding: 20px;
  background-color: var(--gray);
}

.question_list li .a p {
  padding: 10px 20px 10px 10px;
}

@media (max-width: 500px) {
  .question_list li .a p {
    padding: 10px 20px 10px 0px;
  }

  .q_cnt img,
  .a_cnt img {
    margin-left: 10px;
    margin-right: 10px;
    min-width: 14px;
    min-height: 14px;
    max-width: 14px;
    max-height: 14px;
  }
}

@media (max-width: 768px) {

  .q_cnt img,
  .a_cnt img {
    margin-left: 20px;
    margin-right: 10px;
    min-width: 16px;
    min-height: 16px;
    max-width: 16px;
    max-height: 16px;
  }
}

@media (max-width: 1200px) {

  .q_cnt img,
  .a_cnt img {
    margin-left: 20px;
    margin-right: 10px;
    margin-right: 10px;
    min-width: 16px;
    min-height: 16px;
    max-width: 16px;
    max-height: 16px;
  }

}

.hidden_list {
  display: none;
}



/*=========================*/
/* SP用 */
/*=========================*/

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

  /*-- News Room --*/
  .news-thumb-area, .news-thumb-empty {
    width: 30%;
  }

  .news-text-area {
    width: 70%;
  }

  p.barlow.fs-16.newsroom-time {
    font-size: 1.3rem;
  }

  .corporate-list .ta-l {
    margin: 10px;
  }

  /*-- バナー --*/
  .product_banner {
    margin: 40px 0;
    width: 100%;
  }

  /*-- インフラページ実績 --*/
  .box-padding-40 {
    padding: 40px 0;
    display: block;
    flex-direction: column;
  }

  .box-image-graph {
    margin: 0px;
    margin-top: 30px;
    width: 100%;
  }

  .box-image-map {
    margin: 0px;
    width: 100%;
    margin-top: 30px;
  }

  /*-- トップRESULTS 個別グラフ--*/
  .results-list-section {
    padding: 70px 0;
  }

  .results-title {
    padding-top: 60px;
    margin-bottom: 0px;
  }

  .flexfix-center {
    width: 1200px;
  }

  .result-data li {
    font-size: 0.9em
  }

  /*-- TOP Youtube--*/
  .youtube-section {
    padding: 0;
  }

  .youtube-wrapper {
    padding-top: 0px;
    padding-bottom: 100px;
  }

  .youtube-list li {
    width: 264px;
  }

  .youtube-image-cat {
    font-size: 1rem;
  }

  .youtube-thumb {
    height: 42vw;
  }

  .youtube-thumb img {
    width: 100%;
    height: 42vw;
  }

  /*-- COLUMN & --*/
  .column-svg, .youtube-svg {
    height: 36px;
  }

  .nightsense-list li {
    width: 100%;
  }

  /*-- 用語集 --*/


}


.term-table table {
  width: 100%
}

.term-table table th, .term-table table td {
  padding: 1em;
  border: 1px solid #ccc
}

.term-table table th {
  font-weight: bold
}

.term-table table .gls {
  font-weight: 200;
  text-align: center !important
}

.term-table table .mn {
  font-weight: 200;
  text-align: center !important
}

@media (max-width: 768px) {

  .term-table table {
    width: 100% !important;
  }

  .term-table table .gls {
    color: #666;
    text-align: left !important
  }

  .term-table table .mn {
    color: #666;
    text-align: left !important
  }

  .term-table table tr {
    display: block;
    margin-bottom: 10px;
  }

  .term-table table th, .term-table table td {
    padding: 0.5em 1em;
    display: block;
    border: none;
  }

  .term-table table th {
    background: #f9f9f9
  }

  .term-table table td {
    padding-bottom: 10px;
  }
}




/*# sourceMappingURL=add_style.css.map */