@charset "UTF-8";


body	{margin: 0;
	font-family:"Noto Sans JP", "SF Pro JP", "SF Pro Text", "SF Pro Icons", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Helvetica Neue", Helvetica, sans-serif; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ページの基本構造  'メイリオ', 'Hiragino Kaku Gothic ProN', sans-serif*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */



/* 左右の余白 */
.cols-inner	{
    max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
box-sizing: border-box;}

/* 上下の余白 */
.header	{padding-top: 0;
	padding-bottom: 0;}

.topmsg	{padding-top: 20px;
	padding-bottom: 20px;}

.gaiyou	{padding-top: 40px;
	padding-bottom: 8px;}

.description{
	padding-bottom: 8px;
}
/* .description::after {
  content: "";
  display: block;
  border-top: 1px solid #0000001a;
  margin: 0 16px;
} */

.footer	{
  padding: 40px 45px;
  background-color: #f4f5f7;
}


/* 背景色 */
.header	{background-color: #fff;}

.topic	{background-color: #FFFFFF;}

/* 段組み */
@media (min-width: 420px) {

	/* ヘッダー2段組   */
	.header .col	{float: left;}
	.header .col + .col	{float: right;}

	.footer .col	{float: left;
		width: 22%;
		margin-left: 2%;}



	/* 概要3段組み */
	.gaiyou .col	{float: left;
		width: 30%;
		margin-left: 4%;}

	/* 説明1段組み */
	.description .col	{float: center;}
	.header .col + .col	{float: center;}

}

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

	/* 概要2段組み */
	.gaiyou .col	{float: left;
		width: 48%;
		margin-left: 4%;}

	.gaiyou .col:first-child + .col + .col	{clear: both;
		margin-left: 0;}

}

.cols .col:first-child	{margin-left: 0;}

.cols:after	{content: "";
	display: block;
	clear: both}




/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* サイト名 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.logo {
    margin: 0;
    padding: 0;
}

.logo h1 {
    display: inline-block;
    margin: 0;
    padding: 0;
}
.logo span	{
    width: 155px;
	height: 60px;
	background-image: url(../image/logo_1.svg);
	background-size: 100% auto;
	background-position: 0% 25%;
	display: inline-block;
    background-repeat:no-repeat;
	overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
margin-top: 20px;
margin-left:10px;}



/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ナビゲーションメニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* 
.menu ul	{
  display: table;
	padding: 0;
	font-size: 16px;
	line-height: 2.5;
	list-style: none;
  color: #f4f5f7;
}

.menu li a	{display: block;
	padding: 3px 15px;
	color: #42526E;
	text-decoration: none;
  fill: #42526E;
}

.menu li a:hover	{
  color: #7D98BA;
  fill: #7D98BA;
}
 */

.menu li a {
	padding: 3px 15px;  
}
.open_in_new_icon{
  height: 16px;
}
/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*ナビゲーションを横並びに*/
nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
  align-items: center;
  padding-left: 0px;
  font-size: 18px;
  font-weight: 500;
}

/*2階層目以降は横並びにしない*/
nav ul ul{
	flex-direction: column;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

nav ul li.menuTl::before {
  content: "";
    display: block;
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #333;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

nav ul li.menuTl:hover:before {
  width: 100%;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color: #333;
	padding:20px 35px;
	transition:all .3s;
}

nav ul li li a{
	padding:10px 35px;
}

/*下の階層を持っているulの指定*/
nav li.has-child ul{
  /*絶対配置で位置を指定*/
position: absolute;
left:0;
top:35px;
z-index: 1000;
  /*形状を指定*/
background:#ffffff;
width:210px;
box-shadow: 0px 4px 18px rgb(0 0 0/4%),0px 2.025px 7.84688px rgba(0,0,0,.027),0px 0.8px 2.925px rgb(0 0 0/2%),0px 0.175px 1.04062px rgba(0,0,0,.013);
  /*はじめは非表示*/
visibility: hidden;
opacity: 0;
  /*アニメーション設定*/
transition: all .3s;
padding-left: 0;
border-radius: 10px;
padding:15px 20px 15px 10px;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #333;
}

nav li.has-child ul li a:hover{
  color: #1278d7;
}
/*
nav li.has-child ul li:last-child a{
	border-bottom:none;
}*/

.trial{
  background: -webkit-gradient(linear,left top,right top,from(#f68a00),to(#f66800));
  background: -webkit-linear-gradient(left,#f68a00, #f66800);
  background: -o-linear-gradient(left,#f68a00, #f66800);
  background: linear-gradient(to right,#f68a00, #f66800);
  padding: 8px;
  margin: 0 10px;
  border-radius: 5px;
  margin-left: 30px;
}

.trial a{
  color: #fff;
}
.contact a {
  color: #fff;
}

.contact {
  background: -webkit-gradient(linear,left top,right top,from(#026ddb),to(#1155d1));
  background: -webkit-linear-gradient(left,#026ddb, #1155d1);
  background: -o-linear-gradient(left,#026ddb, #1155d1);
  background: linear-gradient(to right,#026ddb, #1155d1);
  padding: 8px;
  margin: 0 10px;
  border-radius: 5px;
}

.trial:hover {
  opacity: .7;
  transition: all .5s;
}

.contact:hover {
  opacity: .7;
  transition: all .5s;
}

.pc-menu {
  align-items: flex-start;
  gap: 4px;
}


@media (max-width: 820px) {
  .sp-menu {
    width: 100%;
  }
	.menu	{display: none}

	.menubtn	{padding: 6px 12px;
		border: none;
		border-radius: 5px;
		background-color: #f4f5f7;
		position: absolute;
		top: 20px;
		right: 15px;
		cursor: pointer}

	.menubtn:hover	{background-color: #ddd}

	.menubtn:focus	{outline: none}

	.menubtn i	{color: #42526E;
		font-size: 22px}

	.menubtn span	{display: inline-block;
		text-indent: -9999px}

  	nav{
      padding: 0;
    }
    nav ul{
      display: block;
    }
    
    nav li.has-child ul,
    nav li.has-child ul ul{
      position: relative;
    left:0;
    top:0;
    width:100%;
    visibility:visible;/*JSで制御するため一旦表示*/
    opacity:1;/*JSで制御するため一旦表示*/
    display: none;/*JSのslidetoggleで表示させるため非表示に*/
    transition:none;/*JSで制御するためCSSのアニメーションを切る*/
  }
    
  nav ul li a{
    border-bottom:1px solid #ccc;
  }
  nav ul li.menuTl::before {
    display: none;
  }

  .trial,.contact {
    padding: 0;
    margin: 0;
  }

  nav li.has-child ul{
    border-radius: 0;
    padding: 0;
  }

  nav li.has-child ul li a{border-bottom:solid 1px rgba(255,255,255,0.6);
  }
}


@media (min-width: 820px) {
	.menu	{display: block !important;
    }

	.menu li	{float: left;vertical-align: middle;}

	.menu ul:after	{content: "";
		display: block;
		clear: both;}

	.menubtn	{display: none}

}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* パートナー画像 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.customer-logos {
  overflow-x: hidden;
}

/* スライドの動き等速 */
.customer-logos-container {
  display: flex;
  min-width: 100%;
  width: min-content;
  animation: 40s linear infinite sliderAnimation;
  align-items: center;
}
/* 画像のサイズ調整 */
.swiper-slide {

  margin: 20px;
  position: relative;
}

.swiper-slide img {
  width: 120px;
} 


@keyframes sliderAnimation {
  100% {
    transform: translateX(-50%);
  }
}



@media (max-width: 420px) {
  .swiper-slide img {
    width: auto;
    max-width: 120px;
  } 
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー画像 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.photo	{width: 100%;
	height: 270px;
	background-image: url(img/header.jpg);
	background-size: cover;
	background-position: 80% 20%;}

@media (max-width: 420px) {
	.photo	{height: 256px;
		background-image: url(img/header-s.jpg);
		background-position: 80% 40%;}
}



/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* トピック */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.topic article	{padding-bottom: 15px;}

.topic a	{color: #000;
		text-decoration: none;}
.topic a:hover	{color: #2E58FF;
		 opacity: 0.8}

.topic p	{margin-top: 15px;
	margin-bottom: 0;
	font-size: 11px}


@media (max-width: 420px) {
	.topic .snap	{margin-bottom: 10px;}
	.topic h1	{margin-bottom: 3px;}
}



/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* 概要 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.gaiyou article	{padding-bottom: 15px;}

.gaiyou a	{color: #000;
		text-decoration: none;}
.gaiyou a:hover	{color: #2E58FF;
		 opacity: 0.8}

.gaiyou .snap	{width: 100%;
	height: 120px;
	margin-bottom: 20px;
	background-position: 50% 50%;
	background-size: cover;}


.gaiyou h1	{margin: 0.5em 0;
  padding: 0.2em 0 0.1em 1em;
  border-bottom: 1px dotted #F66;
  border-left: 10px solid #F66;
  font-size: 15px;
  font-weight: bold;
  color: #808080;
	}


.gaiyou p	{margin-top: 0;
	margin-bottom: 0;
	font-size: 12px}


@media (max-width: 420px) {
	.gaiyou .snap	{margin-bottom: 10px;}
	.gaiyou h1	{margin-bottom: 3px;}
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* 説明 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.description article	{
	padding-bottom: 15px;
}

.description a	{
  color: #000;
	text-decoration: none;
  transition: box-shadow .3s ease, transform .2s ease;
  }
.description a:hover{
  color: #2E58FF;
	opacity: 0.8;
  transform: translateY(-5%);
  box-shadow: 0 8px 50px #23232333;
  }

/*
.description image { display: none; }
*/

.description h1	{
    width: 100%;
      position: relative;
  /* display: inline-block; */
  margin-bottom: 1em;
  padding: 0;
  font-size: 50px;
  font-weight: bold;
  color: #13305F;
  margin-bottom: 50px;
    text-align: center;
	}

.description h1:before{
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 130px;
  height: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #0093d3;
  border-radius: 2px;}

@media (max-width: 420px) {
	.description h1	{
    display: block;
    font-size: 1.2em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;}
}

.producttitle {
      height:15px !important;
  margin-left:15px !important;
    margin-bottom: 5px;
  padding: 0.2em 0 0.5em 1em !important;
  border-bottom: 1px dotted #F66 !important;
  border-left: 10px solid #F66 !important;
  font-size: 15px !important;
  font-weight: bold !important;
  color: #808080 !important;
	}

.description p	{
	margin-right:0;
	margin-left:0;	
	font-size: 16px;
    line-height: 25px;
}

.support_h2 {
    width: 100%;
      position: relative;
  display: inline-block;
    margin-top: 0;
    margin-left: 0;
  margin-bottom: 0;
  padding: 0;
  font-size: 26px;
  font-weight: bold;
  color: rgb(51, 51, 51);
    text-align: left;
      border-bottom: solid 3px #dadeec;
	}

.support_h2:before{
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #4b4b4b;
  bottom: -3px;
  width: 10%;}

.support_box_wrapper {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 0;
    margin-bottom: 80px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

.support_a,.supportp_a {
    position: relative;
    width: 200px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 18px;
    font-weight: bold;
    padding: 0.5em 1em;
    margin-top: 0;
    margin-bottom: 10px;
    margin-right: 20px;
    font-weight: bold;
    border: solid 5px #dadeec;
    text-align: center;
}

.support_a:hover,.supportp_a:hover{
    background-color: #dadeec;
}

.support_a a{
    position: absolute;
    top: 0;
    left: 0;
    text-decoration: none;
    color: #06c;
    margin-top: 40px;
    width:100%;
    height: 100%;
    margin: 0;
    padding-top:65px;
    box-sizing: border-box;
}

.supportp_a a{
    position: absolute;
    top: 0;
    left: 0;
    font-size: 28px;
    text-decoration: none;
    color: #06c;
    width:100%;
    height: 100%;
    margin: 0;
    padding-top:50px;
    box-sizing: border-box;
}

.supportp_a span{
    position: absolute;
    top: 30px;
    left: 0;
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    color: #666;
    margin-top: 0;
    width:100%;
    height: 100%;
    margin: 0;
    padding-top:0;
    box-sizing: border-box;
}



@media screen and (max-width: 580px) {
.support_a,.supportp_a {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #666;
    padding: 0.5em 1em;
    margin-top: 0;
    margin-bottom: 10px;
    margin-right: 20px;
    font-weight: bold;
    border: solid 5px #dadeec;
    text-decoration: none;
    text-align: center;
}}

@media (max-width: 420px) {
    #snap {
        width: auto;
    }
    img {
        max-width: 100%;
        height: auto;
    }
}



/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* OS対応等テーブル */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
table{
	width:85%;
	border-collapse: collapse;
	border-spacing:0;
	border:1px solid #ccc;
	padding:0;
	margin-right : auto;
	margin-left : auto
}

table tr{
	border:1px solid #ddd;
	font-size: 12px;
	padding:2px;
}

table th, table td{
	padding:5px;
	font-size: 12px;
	text-align:center;
}

table th{
	font-size:12px;
	letter-spacing:1px;
}

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

	table{
		border:0;
	}

	table thead{
		display:none;
	}

	table tr{
		margin-bottom:10px;
		display:block;
		border-bottom:2px solid #ddd;
	}

	table td{
		display:block;
		font-size:13px;
		border-bottom:1px dotted #ccc;
        text-align: right;
	}

	table td:last-child{
		border-bottom:0;
	}

table td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
}
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* 動画 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.video {
position: relative;
height: 0;
padding: 0 0 56.25%;
overflow: hidden;
}
.video iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* 商標 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.mark {
	width:50%;
	border-collapse:collapse;
	border-spacing:0;
	border:1px solid #ccc;
	padding:0;
	margin-right : auto;
	margin-left : auto;
}

.mark th {
	font-size: 12px;
	padding:5px;
	text-align:center;
}

.mark td {
	font-size: 12px;
	padding:5px;
	text-align:center;
}


.mark th, .mark td {
	padding:10px;
	font-size: 12px;
	text-align:center;

}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* コピーライト */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.copyright p	{margin: 0;
	color: #CCC;
	font-size: 12px;
}
.footer-container{
  background-color: #f4f5f7;
  padding-bottom: 50px;
}
  .language-switch {
    display: flex;
    justify-content: center;
    padding: 10px;
  }
  
  .language-link {
    display: flex;
    align-items: center;
    background-color: #f4f5f7;
    color: #121212;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    text-decoration: none;
    cursor: pointer;
    width: 100px;
    border: 1px solid rgba(0,0,0,.15);
  }
  
  .footer-container-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 15px;
    /* ここにSVGのスタイルを追加する場合はここに書く */
  }
  /* インタラクティブな要素をホバーしたときのスタイル */
  .language-link:hover {
    border: 1px solid rgba(0,0,0,.5);
  }
  .footer-container-text {
    font-size: 16px;
  }

  
  
  
  
  


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
  /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


.footer a	{
  color: #00000099;
	text-decoration: none;
  line-height: 1.9;
  display: flex;
  align-items: center;
}
.footer a:hover	{
  color: #076097;
	opacity: 0.8;
}

.footer h4 {
  font-size: 14px;
  font-weight: 600;
  color: #121212;
  padding: 15px 0 0 15px;
  line-height: 1.9;
  
}

footer .copy {
  font-size: 12px;
  font-weight: bold;
  color: #ccc;
  text-align: center;
}

.footer_common	{
  padding: 0px 15px 15px 15px;
	color: #CCC;
	font-size: 14px;
  line-height: 1.4;
}

.product-pb1 {
  display: flex;
}
.product-pb2 {
  padding-left: 50px;
}

.footer-inner	{
  max-width: 1200px;
margin-left: auto;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
box-sizing: border-box;}

.footer-cnt {
display: flex;
justify-content: center;
}
.title-inr {
padding: 0 15px;
}


/* .footer article	{padding-bottom: 30px;}

.footer a	{color: #42526E;
		text-decoration: none;}
.footer a:hover	{color: #7D98BA;
		 opacity: 0.8}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  color: #293856;
  margin-top: 0;
}

.copy {
  font-size: 12px;
  font-weight: bold;
  color: #ccc;
}

.footer_common	{margin: 0;
	color: #CCC;
	font-size: 14px;}
 */

@media (max-width: 420px) {
	.gaiyou .snap	{margin-bottom: 10px;}
	.gaiyou h1	{margin-bottom: 3px;}
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* TOPに戻る 現在非表示中 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* #pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
 
#pageTop a {
  display: block;
  z-index: 999;
  padding: 8px 0 0 0px;
  width: 35px;
  height: 32px;
  background-color: #2588f4;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}

#pageTop a:hover {
  filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    opacity: 0.8;
} */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* 動作環境一覧・問い合わせ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.requirement_title {
    font-size: 24px !important;
    font-weight: bolder;
    text-align: center;
    text-decoration: none !important;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: auto;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 0;
    box-sizing: border-box;
}

.requirement_p {
    padding-top: 15px;
    font-size: 18px !important;
    text-align: center !important;
        margin: 0 !important;
    color: #FFF;
        font-weight: bolder;
}

.btn_requirement {
      width: 300px;
  height: 60px;
  background-color: #7391D9; 
  display: table;
  margin-left: auto;
  margin-right: auto;
        margin-bottom: 50px;
        text-decoration: none; 
}

.btn_requirement:hover {
  filter: alpha(opacity=80);
    -moz-opacity: 0.8;
  opacity: 0.8;
}

.btn_other {
      width: 300px;
  height: 60px;
  background-color: #00A29A; 
  display: table;
  margin-left: auto;
  margin-right: auto;
        margin-bottom: 50px;
        text-decoration: none; 
}

.btn_other:hover {
  filter: alpha(opacity=80);
    -moz-opacity: 0.8;
  opacity: 0.8;
}

.contact_title {
    font-size: 24px !important;
    font-weight: bolder;
    text-align: center;
        text-decoration: none !important;
}

.contact_p {
    padding-top: 15px;
    font-size: 18px !important;
    text-align: center !important;
        margin-left: 20px !important;
            margin-top: 0 !important;
    color: #FFF;
        font-weight: bolder;
}

.btn_contact {
      width: 300px;
  height: 60px;
  background-color: #f28313; 
  display: table;
  margin-left: auto;
  margin-right: auto;
        margin-bottom: 50px;
        text-decoration: none; 
}

.btn_contact:hover {
  filter: alpha(opacity=80);
    -moz-opacity: 0.8;
  opacity: 0.8;
}


.mail_icon {
  color: #FFF;
  position: absolute;
  margin-left: 40px;
  margin-top: 21px;
  width: 15px;
  height: 10px;
  border-radius: 1px;
  border: solid 1.5px currentColor;
}
.mail_icon:before {
  content: '';
  position: absolute;
  left: 7px;
  top: -4px;
  width: 1.5px;
  height: 10px;
  background-color: currentColor;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotate(-54deg);
          transform: rotate(-54deg);
}
.mail_icon:after {
  content: '';
  position: absolute;
  left: 7px;
  top: -4px;
  width: 1.5px;
  height: 10px;
  background-color: currentColor;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotate(54deg);
          transform: rotate(54deg);
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* QA */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.qaContainer dl {
    margin-left: 50px;
}

.qaContainer dt {
padding: 10px 10px 10px 35px;
border-radius: 5px;
background: #D9DFE7;
text-indent: -25px;
color: #666;
    font-weight: bold;
}

.qaContainer dt:before {
content: "Q.";

font-weight: bold;
margin-right: 7px;
}

.qaContainer dd {
margin: 20px 10px 40px 35px;
text-indent: -25px;
}

.qaContainer dd:before {
content: "A.";

font-weight: bold;
margin-right: 7px;
}

.qaContainer a {
    color :#06c;
    font-weight: bold;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* アイコン */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.laptop_icon {
  color: #000;
  position: absolute;
  margin-left: 3px;
  margin-top: -40px;
  width: 24px;
  height: 16px;
  border-radius: 2px;
  border: solid 2px #06c;
}
.laptop_icon:before {
  content: '';
  position: absolute;
  left: -7.7px;
  bottom: -10px;
  width: 36px;
  height: 2px;
  border-radius: 0 0 2px 2px;
  border: solid 2px #06c;
}

.alert-circle_icon {
      color: #000;
  position: absolute;
    margin-left: 2px;
  margin-top: -50px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: solid 2px #06c;
}

.alert-circle_icon:before {
content: '';
    position: absolute;
    display: block;
    top: 6px;
    left: 14px;
    width: 4px;
    height: 14px;
    background-color: #06c;
}

.alert-circle_icon:after {
content: '';
    position: absolute;
    display: block;
    top: 22px;
    left: 14px;
    width: 4px;
    height: 4px;
    background-color: #06c;
}

.profile_icon {
  color: #666;
  position: absolute;
  margin-left: 3px;
  margin-top: -20px;
  width: 28px;
  height: 12px;
  border-left: solid 2px #06c;
  border-right: solid 2px #06c;
  border-top: solid 2px #06c;
  border-bottom: solid 2px transparent;
  border-radius: 12px 12px 0 0;
}

.profile_icon:before {
  content: '';
  position: absolute;
  left: 4px;
  top: -20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: solid 2px #06c;
}

.list-square_icon {
      color: #000;
  position: absolute;
    margin-top: -40px;
    margin-left: -20px;
    width: 4px;
    height: 4px;
    border-radius: 1px;
    border: solid 2px #06c;
}

.list-square_icon:before {
    top: 8px;
}
.list-square_icon:after {
    top: 18px;
}

.list-square_icon:before, .list-square_icon:after {
content: '';
    position: absolute;
    display: block;
left: -2px;
    width: 4px; 
    height: 4px;
    border-radius: 1px;
    border: solid 2px #06c;
}

.list-square_icon i {
      color: #000;
  position: absolute;
top: -1px;
    left: 8px;
    width: 20px;
    height: 4px;
    border-radius: 1px;
    border: solid 2px #06c;
}

.list-square_icon i:before {
    top: 8px;
}
.list-square_icon i:after {
    top: 18px;
}

.list-square_icon i:before, .list-square_icon i:after {
content: '';
    position: absolute;
    display: block;
    left: -2px;
    width: 20px;
    height: 4px;
    border-radius: 1px;
    border: solid 2px #06c;
}


.mail_icon2 {
  color: #000;
  position: absolute;
  margin-left: 2px;
  margin-top: -40px;
  width: 30px;
  height: 20px;
  border-radius: 1px;
  border: solid 2px #06c;
}

.mail_icon2:before {
  content: '';
  position: absolute;
  left: 14px;
  top: -4px;
  width: 2px;
  height: 19px;
  background-color: #06c;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotate(-54deg);
          transform: rotate(-54deg);
}

.mail_icon2:after {
  content: '';
  position: absolute;
  left: 14px;
  top: -4px;
  width: 2px;
  height: 19px;
  background-color: #06c;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotate(54deg);
          transform: rotate(54deg);
}