﻿@charset "utf-8";
/* CSS Document */
html {scroll-behavior: auto;}
#mnet {
		font-family:sans-serif, "ＭＳ Ｐゴシック", "MS PGothic";
}

   /* HEADER / NAV */
    header {
      position: sticky;
      top: 0;
      z-index: 80;
      backdrop-filter: blur(12px);
      background: rgba(255,255,255,0.96);
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
  /* ここを修正 */
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* ← space-between から変更 */
  gap: 24px;
}

/* PC 共通の nav レイアウト */
nav {
  display: flex;
  gap: 32px;                 /* 間隔少し広め */
  font-size: 14px;
  align-items: center;
  justify-content: center;   /* nav 内のリンクを中央寄せ */
  margin: 0 auto;            /* nav 自体をヘッダー中央に配置 */
  transform: translateX(-70px); /* 中心から左へ 70px ずらす */
}

nav a {
  color: var(--text-main);
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
  transition: color .15s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--brand-red);
  transition: width .15s ease;
}

nav a:hover { color: var(--brand-red); }
nav a:hover::after { width: 100%; }

/* 以下、ハンバーガーと SP 用（前回のものを流用） */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #222;
  transition: transform .2s ease, top .2s ease, opacity .2s ease, background .2s ease;
  border-radius: 2px;
}
.nav-toggle-label span { top: 50%; transform: translateY(-50%); }
.nav-toggle-label span::before { content: ""; top: -7px; }
.nav-toggle-label span::after  { content: ""; top: 7px; }

.nav-toggle:checked + .nav-toggle-label span { background: transparent; }
.nav-toggle:checked + .nav-toggle-label span::before {
  top: 0; transform: rotate(45deg);
}
.nav-toggle:checked + .nav-toggle-label span::after {
  top: 0; transform: rotate(-45deg);
}

@media (max-width: 960px) {
nav {
    position: fixed;
    top: 42px;          /* ヘッダー高さに合わせて調整 */
    right: 0;
    bottom: 0;          /* ここまでを埋める */

    width: 50%;         /* 画面右半分 */
    background: #ffffff;
    z-index: 100;

    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;

    padding: 24px 20px 30px;
    transform: translateX(100%);  /* 右に隠す */
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
    box-shadow: -8px 0 20px rgba(0,0,0,0.16);

    /* ここがポイント：高さを全体にし、縦スクロール可能に */
    height: calc(100vh - 56px);
    overflow-y: auto;

    gap: 18px;
    margin: 0;
  }

  nav a {
    padding: 14px 4px;
    font-size: 15px;
    width: 100%;
  }

   .nav-toggle-label { display: block; }

  /* チェック時に右からスライドイン */
  .nav-toggle:checked ~ nav {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
 .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;  /* 左右端に配置 */
  }

  .logo {
    order: 1;   /* 左側：ロゴ */
  }
  .nav-toggle-label {
    order: 2;   /* 右側：ハンバーガー */
    margin-left: auto;  /* ロゴとの間を自動で空ける */
  }
  nav {
    order: 3;   /* 下に展開されるナビ */
  }	
}
.logo img {
  display: block !important;
  width: 180px;
  height: auto;
  opacity: 1 !important;
}
/*==========================================================================
	ページタイトル
============================================================================*/

.pagetitle_main {
	padding-top: 30px;
	padding-right: 0%;
	padding-bottom: 30px;
	padding-left: 0%;
	background-image: url("/product/midoa-ai-assist/img/mv_sp.png");
  	background-size: cover;
  	background-position: center;
	border-bottom:  solid 15px #1b2b55 ;
}
.pagetitle_main .inner {
	max-width: 1300px !important;
    margin: 0px auto;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	}	

.subttil {
	text-align: center;
	padding:10px;
	list-style: none;
	margin-bottom: 20px;

}
.subttil li {
	
}
.subttil li span {
	padding:10px 20px 10px 20px;	
	color: #FFFFFF;
    border: solid 1px #1b2b55;     /* 枠線指定 */
    background-color: #1b2b55;     /* 背景色指定 */
    border-radius: 25px;        /* 角丸指定 */	
	text-align: center;
	font-size: 14px;
    font-weight: bold;
}
.chach {
	font-size: 32px;
    font-weight: bold;
	line-height: 40px;
}
/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
.pagetitle_main {
    padding-top: 150px;
    padding-right: 0%;
    padding-bottom: 30px;
    padding-left: 0%;
    background-image: url(/product/midoa-ai-assist/img/maidoaaiassist_mv.png);
    background-size: cover;
    background-position: center;
}

}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
.pagetitle_main {
    padding-top: 50px;
    padding-right: 0%;
    padding-bottom: 30px;
    padding-left: 0%;
    background-image: url(/product/midoa-ai-assist/img/maidoaaiassist_mv.png);
    background-size: 30%;
	background-position: right 200px center;
	background-repeat: no-repeat;
}
	.pagetitle_main .inner {
	max-width: 1300px !important;
    margin: 0px auto;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 30px;
	padding-left: 15px;
	}
	
.subttil {
	text-align: left;
	padding:10px;
	list-style: none;
	margin-bottom: 5px;

}
.subttil li {
	
}
.subttil li span {
	padding:10px 20px 10px 20px;
	color: #FFFFFF;
    border: solid 1px #1b2b55;     /* 枠線指定 */
    background-color: #1b2b55;     /* 背景色指定 */
    border-radius: 25px;        /* 角丸指定 */	
	text-align: center;
	font-size: 14px;
    font-weight: bold;
}
.chach {
	font-size: 36px;
    font-weight: bold;
	line-height: 60px;
}	
}

.btn-square-so-pop {
	margin-top: 20px;
	position: relative;
	display: inline-block;
	padding: 0.25em 3em;
	text-decoration: none;
	color: #FFF !important;
	background: #202535;/*色*/
	border-radius: 4px;/*角の丸み*/
	box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
	font-weight: bold;
	border: solid 2px #3B507F;/*線色*/
}

.btn-square-so-pop:active {
  /*押したとき*/
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}
.gif01 {
	text-align: center;	
}
.gifmv {
	border: solid 10px #FFFFFF;  
	border-radius: 10px; 
	box-shadow: 2px 2px 4px gray;
	width: 90%;
	text-align: right;
}
@media print, screen and (min-width: 1200px) {
.gif01 {
	text-align: right;	
}
}


.col_2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -ms-flexbox; /* IE10 */
  flex-wrap: wrap; 
  -ms-flex-wrap: wrap; /* IE10 */
  margin:0px;
}
.col_2 > div {
	width: 100%;
	margin-bottom: 20px;	
	}

@media screen and (min-width: 1200px) {
.col_2 > div {
	width: 48%;
	margin-bottom: 0px;
}
}

.chach02 img {
	width: 100%;
	margin-top: 10px;
}

/* コンテナ：画像と同じく2行に配置 */
.tag-row{
  margin: 20px 0 8px 8px;   /* 左上に少し余白 */
  white-space: nowrap;
}

/* 吹き出し風の丸ボタン */
.tag{
  display: inline-block;
  padding: 6px 20px;
  margin-right: 12px;
  border: 2px solid #1b2b55;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  background-color: #fff;
}





.sol_contents01 {
	background-color: #efeff0;
	background-position: center center;
	background-size:cover;
	}
.sol_contents01 .sol_con01_inner {
    max-width: 1200px !important;
    margin: 0px auto;
	padding-top: 30px;
	padding-right: 15px;
	padding-bottom: 30px;
	padding-left: 15px;
	}
@media print, screen and (min-width: 1200px) {
.sol_contents01 .sol_con01_inner  {
	padding-top: 50px;
	padding-left:15px;
	padding-right:15px;
	padding-bottom: 50px;
}
}


.col_3 {
  width: 100%;
  display: flex;
  justify-content: space-between;
align-items: flex-start;
-ms-flex-align: start;
  flex-wrap: wrap; 
  -ms-flex-wrap: wrap; /* IE10 */
  margin:0px;
}

.col_3 > div {
	width: 100%;
	margin-bottom: 20px;	
	}
	
@media screen and (min-width: 1200px) {
.col_3 > div {
	width: 30%;
	margin-bottom: 0px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
}
.col_3 div {
  background: #ffffff;                 /* 白背景 */
  border-radius: 12px;                 /* 角丸（必要に応じて変更） */
  padding: 20px;                       /* 内側余白 */
  box-shadow: 0 10px 24px rgba(0,0,0,0.12); /* ドロップシャドウ */
  border: 1px solid rgba(0,0,0,0.04);  /* 薄い境界線（任意） */

}
/* 画面内に入ったら付けるクラス */
.col_3 > div.is-visible {
  opacity: 1;
  transform: translateY(0);
}



.kadai_no {
	color: #1b2b55;
	text-align: center;
	font-size: 18px;
}
.kadai dt {
	text-align: center;
	color: #076fb8;
	line-height: normal;
	font-weight: bold;
	font-size: 21px;
	margin-top: 15px;
	margin-bottom: 15px;
}
.kadai dd {
	text-align: left;
	line-height: normal;
	font-weight: bold;
	font-size: 16px;
}
.kadai_txt {
	margin-top: 15px;
	list-style:disc;
	line-height: normal;
	margin-left: 14px;
	font-size: 16px;
}


.sol_contents02 {
    background-color: #FFFFFF;
	}
.sol_contents02 .sol_con02_inner {
    max-width: 1200px !important;
    margin: 0px auto;
	padding-top: 30px;
	padding-right: 15px;
	padding-bottom: 30px;
	padding-left: 15px;
	}
@media print, screen and (min-width: 1200px) {
.sol_contents02 .sol_con02_inner  {
	padding-top: 50px;
	padding-left:15px;
	padding-right:15px;
	padding-bottom: 50px;
}
}


.sol_contents03 {
    background-color: #FFFFFF;
    background-image: url(/product/midoa-ai-assist/img/bg01.png);
    background-size: cover;
    background-position: center;
  border-bottom: 1px solid #1b2b55 
	}
.sol_contents03 .sol_con03_inner {
    max-width: 1200px !important;
    margin: 0px auto;
	padding-top: 30px;
	padding-right: 15px;
	padding-bottom: 30px;
	padding-left: 15px;
	}
@media print, screen and (min-width: 1200px) {
.sol_contents03 .sol_con03_inner  {
	padding-top: 50px;
	padding-left:15px;
	padding-right:15px;
	padding-bottom: 50px;
}
}

.boxbg_pink {
  background-color: rgba(234, 186, 201, 0.7); /* #eabac9 の 70% 透過 */
  border-radius: 16px;                        /* 角丸。必要に応じて変更 */
  padding: 16px; 
}




.kouka h3 {
	color: #c40d23;
	font-size: 18px;
	text-align: center;
	line-height: normal;
}
.kouka p {
	margin-top: 20px;
	font-size: 16px;
	text-align: left;
	line-height: normal;
}

.kouka ul {
  list-style: none;
	margin-top: 20px;
  padding: 0;
}

/* 画像のようなピル型バッジ */
.kouka ul li {
  background: #E9A9BD;                 /* ピンク */
  color: #ffffff;                      /* 文字色 */
  font-size: 14px;
  font-weight: 600;
  padding: 10px 28px;                  /* 高さ・横幅のバランス */
  border-radius: 999px;                /* ピル型にする */
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18); /* 下に落ちる影 */
  margin: 8px auto;                    /* 上下の間隔＋中央寄せ */
  max-width: 280px;                    /* 幅の上限（好みで調整） */
}



.sol_contents04 {
	background-color: #eff4fb;
	background-position: center center;
	background-size:cover;
	}
.sol_contents04 .sol_con04_inner {
    max-width: 1200px !important;
    margin: 0px auto;
	padding-top: 30px;
	padding-right: 15px;
	padding-bottom: 30px;
	padding-left: 15px;
	}
@media print, screen and (min-width: 1200px) {
.sol_contents04 .sol_con04_inner  {
	padding-top: 50px;
	padding-left:15px;
	padding-right:15px;
	padding-bottom: 50px;
}
}

.kousei,.features {
  transform: translateY(16px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.kousei.is-visible,.features.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.kousei{
  background: #ffffff;                 /* 白背景 */
  border-radius: 12px;                 /* 角丸（必要に応じて変更） */
  padding: 20px;                       /* 内側余白 */
  box-shadow: 0 10px 24px rgba(0,0,0,0.12); /* ドロップシャドウ */
  border: 1px solid rgba(0,0,0,0.04);  /* 薄い境界線（任意） */
}

.col3_7 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -ms-flexbox; /* IE10 */
  flex-wrap: wrap; 
  -ms-flex-wrap: wrap; /* IE10 */
  margin:0px;
 border-bottom: solid 1px #efeff0;  
	padding-bottom: 30px !important;
}

.col3_7  > .area3 {
	width: 100%;
	line-height: normal;
	text-align: center;
}
.col3_7   > .area7 {
	width: 100%;
	text-align: left;
}

@media screen and (min-width: 1200px) {
.col3_7  {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -ms-flexbox; /* IE10 */
  flex-wrap: wrap; 
  -ms-flex-wrap: wrap; /* IE10 */
  margin:0px 15px 0px 15px;
}
.col3_7  > .area3 {
	width: 41%;
	}
.col3_7  > .area7 {
	width: 57%;
	margin-bottom: 0px;
	margin-left: 30px;
	}
}
.flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;              /* !important は一度外してOK */
  box-sizing: border-box;
}

/* 1つひとつの pill カード */
.flow-list li {
	
  width: 100%;    
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
 border-bottom: 1px solid #D8D8D8;
  border-radius: 999px;
  padding: 14px 36px;
  margin: 28px 0;           /* 左右の auto をやめる */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  box-sizing: border-box;   /* padding 込みで 100% にする */
  flex: 0 0 100%;           /* 親が flex でも 100% 使う */
}


/* 左側の番号バッジ（丸） */
.flow-badge {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #0074d9;          /* 青い輪郭 */
  color: #0074d9;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 右側テキスト */
.flow-content {
  font-size: 14px;
  line-height: 1.6;
}

/* 青いタイトル行 */
.flow-title {
  margin: 0 0 2px;
  font-weight: 700;
  color: #0074d9;
  font-size: 18px;
}

/* 黒い説明文 */
.flow-text {
  margin: 0;
  color: #333333;
  font-size: 16px;
}

/* スマホ向け微調整 */
@media (max-width: 480px) {
  .flow-list li {
    padding: 12px 16px;
    max-width: 100%;
  }
}



.kouseibox {
border: 1px solid #9fa0a0; 
padding: 15px;
margin-right: 20px;
border-bottom: 1px solid #1b2b55;
}


.sol_contents05 {
background: #FFFFFF;
	}
.sol_contents05 .sol_con05_inner {
    max-width: 1200px !important;
    margin: 0px auto;
	padding-top: 50px;
	padding-right: 15px;
	padding-bottom: 30px;
	padding-left: 15px;
	}

@media print, screen and (min-width: 1200px) {
.sol_contents05 .sol_con05_inner  {
	padding-left:15px;
	padding-right:15px;
	padding-top: 80px;
	padding-bottom: 70px;
}
}

.features {
  background: #ffffff;                 /* 白背景 */
  border-radius: 12px;                 /* 角丸（必要に応じて変更） */
  padding: 20px!important;                       /* 内側余白 */
  box-shadow: 0 10px 24px rgba(0,0,0,0.12); /* ドロップシャドウ */
  border: 1px solid rgba(0,0,0,0.04);  /* 薄い境界線（任意） */
	margin: 20px 0px;

}
.features h3 {
	font-size: 20px;
	color:  #1b2b55;	
}
.features p {
	font-size: 16px;
	line-height: normal;
	line-height: normal;
	margin: 8px 0px;
}

.in_col_2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -ms-flexbox; /* IE10 */
  flex-wrap: wrap; 
  -ms-flex-wrap: wrap; /* IE10 */
  margin:0px;
}
.in_col_2 > div {
	width: 100%;
	margin-bottom: 20px;	
	}

@media screen and (min-width: 1200px) {
.in_col_2 > div {
	width: 48%;
	margin-bottom: 0px;
}
}
.in ul {
	list-style: circle;
}

.in ul li {
	margin-left: 25px;
	font-size: 14px;
	line-height: normal;
}


.case_wrap {
  margin: 10px auto 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -ms-flexbox; /* IE10 */
  flex-wrap: wrap; 
  -ms-flex-wrap: wrap; /* IE10 */
  padding: 0 10px;
  box-sizing: border-box;
}

/* 左側 ---------------------------------------------------------- */
.case_wrap  > .left-panel {
	width: 100%;	
}
@media screen and (min-width: 1200px) {
.case_wrap  > .left-panel {
  width: 40%;
  margin-bottom: 0px;
}
}
.left-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px 22px 24px;
  width: 40%;
  box-sizing: border-box;
  border: 1px solid #dde3f0;
box-shadow: 0 10px 24px rgba(0,0,0,0.12); /* ドロップシャドウ */
}

.panel-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 18px;
}

.item {
  background: #e4edf8;
  border-radius: 26px;
  padding: 10px 18px;
  margin-bottom: 14px;
}

.item-label {
  font-size: 15px;
}

/* 右側（表） ---------------------------------------------------- */
.case_wrap  > .right-panel {
	width: 100%;	
}
@media screen and (min-width: 1200px) {
.case_wrap  > .right-panel {
  width: 55%;
  margin-bottom: 0px;
}
}
.right-panel {
  background: #ffffff;
  padding: 0;
  box-sizing: border-box;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  table-layout: fixed;
  border: none;   
}

.data-table th,
.data-table td {
  padding: 12px 16px;
  vertical-align: top;
  border: none;                 /* いったん全ての線をリセット */
}

.data-table thead th {
  background: #f4f6fb;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid #d1d7e4;
}

.data-table tbody tr + tr td {
  border-top: 1px solid #d1d7e4;
}

.col-combine {
  width: 210px;
}


.data-table th + th,
.data-table td + td {
  border-left: 1px solid #d1d7e4;
}
/* タグ ---------------------------------------------------------- */

.tag {
  display: inline-block;
  padding: 6px 10px;
  margin: 0 6px 6px 0;
  font-size: 13px;
  background: #e4edf8;
  border-radius: 14px;
	border: none;
}











































.heading {
	padding-top: 25px;
	padding-bottom: 25px !important;
	text-align: center;
	font-size: 32px;
	font-weight: bold;
	line-height: 40px;
}
@media print, screen and (min-width: 1200px) {
.heading {
	padding-top: 25px;
	padding-bottom: 25px !important;
	text-align: center;
	font-size: 42px;
	font-weight: bold;
	line-height: 50px;
}
}

.no {
	text-align: center;
}

.no span {
    position: relative;
    display: inline-block;
    padding: 0 40px;
	color: #1b2b55;
}

.no span:before,
.no span:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 25px;
    height: 5px;
    background-color: #1b2b55;
}

.no span:before {
    left: 0;
}

.no span:after {
    right: 0;
}

.col25_2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -ms-flexbox; /* IE10 */
  flex-wrap: wrap; 
  -ms-flex-wrap: wrap; /* IE10 */
  margin:0px;
}

.col25_2  > .box25 {
	width: 100%;
	line-height: normal;
	text-align: center;
}
.col25_2  > .box14 {
	width: 100%;
	text-align: center;
  background: #ffffff;                 /* 白背景 */
  border-radius: 12px;                 /* 角丸（必要に応じて変更） */
  padding: 20px!important;                       /* 内側余白 */
  box-shadow: 0 10px 24px rgba(0,0,0,0.12); /* ドロップシャドウ */
  border: 1px solid rgba(0,0,0,0.04);  /* 薄い境界線（任意） */
}

@media screen and (min-width: 1200px) {
.col25_2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -ms-flexbox; /* IE10 */
  flex-wrap: wrap; 
  -ms-flex-wrap: wrap; /* IE10 */
  margin:50px 15px 70px 15px;
}
.col25_2 > .box25 {
	width: 16%;
	margin-bottom: 0px;
	}
.col25_2 > .box14 {
	width: 3%;
	margin-bottom: 0px;
	margin-left: 5px !important;
	padding-right: 5px!important;
	
	}
}
.col25_2_2box p {
	color: #0c6bb0;
	font-weight: bold;
}

.box14 {
  background: #ffffff;                 /* 白背景 */
  border-radius: 14px;                 /* 角丸（必要に応じて変更） */
  padding: 20px!important;                       /* 内側余白 */
  box-shadow: 0 10px 24px rgba(0,0,0,0.12); /* ドロップシャドウ */
  border: 1px solid rgba(0,0,0,0.04);  /* 薄い境界線（任意） */
	padding: 15px;
	margin-top: 20px;
	
}
.box14 p img {
	width: 40%;
	margin: 0px;
}


.no_25 {
	color: #0c6bb0;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 10px;
}
.box14 dl {
	
}

.box14 dl dt {
	font-weight: bold;
	padding-bottom: 6px;
	
}
.box14 dl dd {
	font-size: 14px;
	
}

@media print, screen and (min-width: 1200px) {

.box14 {
	background-color: #FFFFFF;
	border: solid 1px #E8E8E8;  
	border-radius: 20px;
	padding: 15px;
	margin-top: 0px;
	
}
.box14 p img {
	width: 60%;
}


.no_25 {
	color: #0c6bb0;
	font-weight: bold;
	font-size: 21px;
	margin-bottom: 10px;
}
.box14 dl {
	
}

.box14 dl dt {
	font-weight: bold;
	padding-bottom: 6px;
	
}
.box14 dl dd {
	
}
}



.no02 {
	text-align: center;
}

.no02 span {
    position: relative;
    display: inline-block;
    padding: 0 50px;
	color: #c9e3f3;
}

.no02 span:before,
.no02 span:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 25px;
    height: 5px;
    background-color: #c9e3f3;
}

.no02 span:before {
    left: 0;
}

.no02 span:after {
    right: 0;
}


.solutionbox {
	padding: 25px;
	background-color: #e7e7f4;
	border-radius: 8px;
	margin-top: 26px;
}

.output {
  background: #FFFFFF;                        
  border-radius: 12px;                 /* 角丸（必要に応じて変更） */
  padding: 20px!important;                       /* 内側余白 */
  box-shadow: 0 10px 24px rgba(0,0,0,0.12); /* ドロップシャドウ */
  border: 1px solid rgba(0,0,0,0.04);  /* 薄い境界線（任意） */
  margin: 20px 0px;

}
.output_in {
    background-color: #e0e9f7;
	padding: 15px;
	margin-top: 15px;

}

.output_in ul {
	list-style: none;
}

.output_in ul li {
    background-image: url(/product/midoa-ai-assist/img/output_p.png);
    background-position: left;
	background-repeat: no-repeat;
	padding-left: 60px;
	line-height: normal;
	font-size: 16px;
}


.output p {
	line-height: normal;
	font-size: 16px;	
}



.service{
	  background: #ffffff;                 /* 白背景 */
  border-radius: 12px;                 /* 角丸（必要に応じて変更） */
  padding: 20px!important;                       /* 内側余白 */
  box-shadow: 0 10px 24px rgba(0,0,0,0.12); /* ドロップシャドウ */
  border: 1px solid rgba(0,0,0,0.04);  /* 薄い境界線（任意） */
	margin: 20px 0px;

}
.service p {
	line-height: normal;
	font-size: 16px;
	
}



	
.sol_contents06 {
	background-color: #1b2b55;

	}
.sol_contents06 .sol_con06_inner {
    max-width: 1200px !important;
    margin: 0px auto;
	padding-top: 30px;
	padding-right: 15px;
	padding-bottom: 30px;
	padding-left: 15px;
	}
@media print, screen and (min-width: 1200px) {
.area3 img {
	width: 96%;
	margin: 0px;
	}
}
@media print, screen and (min-width: 1200px) {
.sol_contents06 .sol_con06_inner  {
	padding-left:15px;
	padding-right:15px;
	padding-top: 80px;
	padding-bottom: 70px;
}
}




.sec-cta-form {
  width: 100%;
  overflow: hidden;
}

.sec-cta-form iframe {
  display: block;
  width: 100%;
  max-width: 814px;
  margin: 0 auto;
  border: none;
  height: 1900px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .sec-cta-form iframe {
    height: 1900px;
  }
}


.img-modal {
  display: none;          /* 初期は非表示 */
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);  /* 黒半透明背景 */
}

.img-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  box-shadow: 0 0 10px #000;
}

.img-modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.features img,
.output img {
  cursor: pointer;
  transition: opacity 0.2s;
}

.features img:hover,
.output img:hover {
  opacity: 0.8;
}