@charset "utf-8";

/*　■■■■■■■■■■■■■■■　common ここから　■■■■■■■■■■■■■■■　*/

/*-----------------------------------------------------
							　　　　　目次

  ■リセットCSS
		・リセットCSS-全体
		・リセットCSS-form
	
	■グリッドレイアウトスタイル（modify以外は編集不可）
		・共通
		・SP (xs) 
		・TABLET (sm)
		・PC (md)
		
	■汎用スタイル common
	
		0.基本スタイル（追加 clearfix）
		1.テキストレイアウト 
		2.下余白
		3.フォントカラー/サイズ
		4.フォント装飾
		5.リスト
		6.テーブル
		7.テキストリンク
		8.表示/非表示
		9.width%
		10.汎用　打ち消し系
		
		99.フォーム共通スタイル

		
	■ PC/SP　一部共通スタイル
		・見出し
		・ボタン
		

	■汎用スタイル(デバイス別)
		・SP (xs) 
		・TABLET (sm)
		・PC (md)
		
-----------------------------------------------------*/



/*  ================================================================================================

    リセット

    ============================================================================================  */
		
/*　リセットCSS-全体
-----------------------------------------------------*/
.contentsWrap, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, hgroup, 
menu, nav, output, ruby, section{
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
.contentsWrap{
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.contentsWrap img {
	vertical-align: bottom;
}
.en .breadcrumb {
	margin-bottom: 0 ;
}

/*　見出しリセット
-----------------------------------------------------*/
.contentsWrap h1,
.contentsWrap h2,
.contentsWrap h3,
.contentsWrap h4,
.contentsWrap h5,
.contentsWrap h6{
	font-weight: normal;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	color: #000;
}
.contentsWrap h2.titleA{
	border: none;
}


/*　リセットCSS-form
-----------------------------------------------------*/
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}



/*  ================================================================================================

    グリッドレイアウトスタイル（modify以外は編集不可）

    ============================================================================================  */
		
/*-----------------------------------------------------
                      共通 
-----------------------------------------------------*/
.contentsWrap *, .contentsWrap *:before, .contentsWrap *:after, .contentsWrap .col-md-1, .contentsWrap .col-md-2 {
	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
			 -o-box-sizing: border-box;
			-ms-box-sizing: border-box;
					box-sizing: border-box;
}

.clearfix:before,
.clearfix:after,
.row:before,
.row:after,
.row-fleximg:before,
.row-fleximg:after,
.row-xs-nogutter:before,
.row-xs-nogutter:after,
.row-sm-nogutter:before,
.row-sm-nogutter:after,
.row-md-nogutter:before,
.row-md-nogutter:after,  {
	display: table;
	content: " ";
}

.clearfix:after,
.row:after,
.row-fleximg:after,
.row-xs-nogutter:after,
.row-sm-nogutter:after,
.row-md-nogutter:after {
	clear: both;
}

.row img {
	max-width:100%;
}


/*-----------------------------------------------------
                      SP (xs) 
-----------------------------------------------------*/
@media screen and (max-width: 680px) {

	.contentsWrap section > .row {
		margin-right: 13px; /* 18-5=13 */
		margin-left: 13px;
	}
	.contentsWrap section > .row-xs-nogutter {
		margin-right: 0!important;
		margin-left: 0!important;
	}
	.row, 
	.row-fleximg, 
	.row-xs-nogutter {
		display: -ms-flexbox;
		display: -ms-flex;
		display: -webkit-flex;
		display: flex;
		-ms-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.row .row, 
	.row-fleximg .row {
		/*modify*/
		margin-right: -5px;
		margin-left: -5px;
	}
	/* アコーディオン */
	.acContent > .row {
		/*modify*/
		margin-right: 0;
		margin-left: 0;
	}
	.row .row [class*="col-xs-"], 
	.row-fleximg .row [class*="col-xs-"], 
	.row-xs-nogutter .row [class*="col-xs-"] {
		/*modify*/
		padding-top: 10px;
		padding-bottom: 0px;
	}
	.row .row:first-child [class*="col-xs-"], 
	.row-fleximg .row:first-child [class*="col-xs-"], 
	.row-xs-nogutter .row:first-child [class*="col-xs-"] {
		/*modify*/
		padding-top: 0px;
		padding-bottom: 10px;
	}

	[class*="col-xs-"] {
		/*modify*/
		padding-right:5px;
		padding-bottom:10px;
		padding-left:5px;
	}
	.row-xs-nogutter > [class*="col-xs-"] {
		padding-right:0;
		padding-left:0;
		padding-bottom:0;
	}

	.col-xs-1 {  -ms-flex: 1 1 8.33333333%; flex: 1 1 8.33333333%; max-width: 8.33333333%; }
	.col-xs-2 {  -ms-flex: 2 1 16.66666667%; flex: 2 1 16.66666667%; max-width: 16.66666667%; }
	.col-xs-3 {  -ms-flex: 3 1 25%; flex: 3 1 25%; max-width: 25%; }
	.col-xs-4 {  -ms-flex: 4 1 33.33333333%; flex: 4 1 33.33333333%; max-width: 33.33333333%; }
	.col-xs-5 {  -ms-flex: 5 1 41.66666667%; flex: 5 1 41.66666667%; max-width: 41.66666667%; }
	.col-xs-6 {  -ms-flex: 6 1 50%; flex: 6 1 50%; max-width: 50%; }
	.col-xs-7 {  -ms-flex: 7 1 58.33333333%; flex: 7 1 58.33333333%; max-width: 58.33333333%; }
	.col-xs-8 {  -ms-flex: 8 1 66.66666667%; flex: 8 1 66.66666667%; max-width: 66.66666667%; }
	.col-xs-9 {  -ms-flex: 9 1 75%; flex: 9 1 75%; max-width: 75%; }
	.col-xs-10 { -ms-flex: 10 1 83.33333333%; flex: 10 1 83.33333333%; max-width: 83.33333333%; }
	.col-xs-11 { -ms-flex: 11 1 91.66666667%; flex: 11 1 91.66666667%; max-width: 91.66666667%; }
	.col-xs-12 { -ms-flex: 12 1 100%; flex: 12 1 100%; max-width: 100%; }

	.col-xs-5eq{ -ms-flex: 1 1 20%; flex: 1 1 20%; max-width: 20%;} /* 5等分 */

	.col-xs-offset-12 { margin-left: 100%;         }
	.col-xs-offset-11 { margin-left: 91.66666667%; }
	.col-xs-offset-10 { margin-left: 83.33333333%; }
	.col-xs-offset-9 {  margin-left: 75%;          }
	.col-xs-offset-8 {  margin-left: 66.66666667%; }
	.col-xs-offset-7 {  margin-left: 58.33333333%; }
	.col-xs-offset-6 {  margin-left: 50%;          }
	.col-xs-offset-5 {  margin-left: 41.66666667%; }
	.col-xs-offset-4 {  margin-left: 33.33333333%; }
	.col-xs-offset-3 {  margin-left: 25%;          }
	.col-xs-offset-2 {  margin-left: 16.66666667%; }
	.col-xs-offset-1 {  margin-left: 8.33333333%;  }
	.col-xs-offset-0 {  margin-left: 0;            }


	/* 順番指定 */
	.col-xs-ordinal-1 {
		-ms-flex-order: 0;
		-webkit-box-ordinal-group: 0;
		-webkit-order: 0;
		order: 0;
	}
	.col-xs-ordinal-2 {
		-ms-flex-order: 1;
		-webkit-box-ordinal-group: 1;
		-webkit-order: 1;
		order: 1;
	}
	.col-xs-ordinal-3 {
		-ms-flex-order: 2;
		-webkit-box-ordinal-group: 2;
		-webkit-order: 2;
		order: 2;
	}
	.col-xs-ordinal-4 {
		-ms-flex-order: 3;
		-webkit-box-ordinal-group: 3;
		-webkit-order: 3;
		order: 3;
	}
	.col-xs-ordinal-5 {
		-ms-flex-order: 4;
		-webkit-box-ordinal-group: 4;
		-webkit-order: 4;
		order: 4;
	}
	.col-xs-ordinal-6 {
		-ms-flex-order: 5;
		-webkit-box-ordinal-group: 5;
		-webkit-order: 5;
		order: 5;
	}
	.col-xs-ordinal-7 {
		-ms-flex-order: 6;
		-webkit-box-ordinal-group: 6;
		-webkit-order: 6;
		order: 6;
	}
	.col-xs-ordinal-8 {
		-ms-flex-order: 7;
		-webkit-box-ordinal-group: 7;
		-webkit-order: 7;
		order: 7;
	}
	.col-xs-ordinal-9 {
		-ms-flex-order: 8;
		-webkit-box-ordinal-group: 8;
		-webkit-order: 8;
		order: 8;
	}
	.col-xs-ordinal-10 {
		-ms-flex-order: 9;
		-webkit-box-ordinal-group: 9;
		-webkit-order: 9;
		order: 9;
	}
	.col-xs-ordinal-11 {
		-ms-flex-order: 10;
		-webkit-box-ordinal-group: 10;
		-webkit-order: 10;
		order: 10;
	}
	.col-xs-ordinal-12 {
		-ms-flex-order: 11;
		-webkit-box-ordinal-group: 11;
		-webkit-order: 11;
		order: 11;
	}


	/* 片側固定 */
	.col-xs-fluid {
		-ms-flex: 1;
		-webkit-box-flex: 1; 
		-webkit-flex: 1;
		flex: 1;
		padding-top: 0px;
	}
	.col-xs-fix-50 {  width: 50px;  }
	.col-xs-fix-100 { width: 100px; }
	.col-xs-fix-150 { width: 150px; }
	.col-xs-fix-200 { width: 200px; }
	.col-xs-fix-250 { width: 250px; }
	.col-xs-fix-300 { width: 300px; }
	.col-xs-fix-350 { width: 350px; }
	.col-xs-fix-400 { width: 400px; }
	.col-xs-fix-450 { width: 450px; }
	.col-xs-fix-500 { width: 500px; }
	.col-xs-fix-550 { width: 550px; }

	/* 表示設定 */
	.visible-sm { display: none!important;}
	.visible-md { display: none!important;}

	/* 非表示設定 */
	.hidden-xs { display: none!important;}
	.spNone { display: none!important;}

	/* border none */
	.border-xs-none     { border: none!important;}
	.border-xs-topnone  { border-top: none!important;}
	.border-xs-btmnone  { border-bottom: none!important;}
	.border-xs-leftnone { border-left: none!important;}
	.border-xs-rightnone{ border-right: none!important;}

}
/*  //SP (xs) */



/*-----------------------------------------------------
                     TABLET (sm) 
-----------------------------------------------------*/
@media screen and (min-width: 681px) and (max-width: 900px) {

	.row, 
	.row-fleximg, 
	.row-sm-nogutter {
		display: -ms-flexbox;
		display: -ms-flex;
		display: -webkit-flex;
		display: flex;
		-ms-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.row .row, 
	.row-fleximg .row {
		/*modify*/
		margin-right: -5px;
		margin-left: -5px;
	}
	.row-sm-nogutter .row {
	}
	.row .row [class*="col-sm-"], 
	.row-fleximg .row [class*="col-sm-"], 
	.row-sm-nogutter .row [class*="col-sm-"] {
		/*modify*/
		padding-top: 10px;
		padding-bottom: 0px;
	}
	.row .row:first-child [class*="col-sm-"], 
	.row-fleximg .row:first-child [class*="col-sm-"], 
	.row-sm-nogutter .row:first-child [class*="col-sm-"] {
		/*modify*/
		padding-top: 0px;
		padding-bottom: 0px;
	}

	[class*="col-sm-"] {
		/*modify*/
		padding-right:5px;
		padding-bottom:10px;
		padding-left:5px;
	}
	.row-sm-nogutter [class*="col-sm-"] {
		padding-right:0;
		padding-left:0;
		padding-bottom:0;
	}


	.col-sm-1 {  -ms-flex: 1 1 8.33333333%; flex: 1 1 8.33333333%; max-width: 8.33333333%; }
	.col-sm-2 {  -ms-flex: 2 1 16.66666667%; flex: 2 1 16.66666667%; max-width: 16.66666667%; }
	.col-sm-3 {  -ms-flex: 3 1 25%; flex: 3 1 25%; max-width: 25%; }
	.col-sm-4 {  -ms-flex: 4 1 33.33333333%; flex: 4 1 33.33333333%; max-width: 33.33333333%; }
	.col-sm-5 {  -ms-flex: 5 1 41.66666667%; flex: 5 1 41.66666667%; max-width: 41.66666667%; }
	.col-sm-6 {  -ms-flex: 6 1 50%; flex: 6 1 50%; max-width: 50%; }
	.col-sm-7 {  -ms-flex: 7 1 58.33333333%; flex: 7 1 58.33333333%; max-width: 58.33333333%; }
	.col-sm-8 {  -ms-flex: 8 1 66.66666667%; flex: 8 1 66.66666667%; max-width: 66.66666667%; }
	.col-sm-9 {  -ms-flex: 9 1 75%; flex: 9 1 75%; max-width: 75%; }
	.col-sm-10 { -ms-flex: 10 1 83.33333333%; flex: 10 1 83.33333333%; max-width: 83.33333333%; }
	.col-sm-11 { -ms-flex: 11 1 91.66666667%; flex: 11 1 91.66666667%; max-width: 91.66666667%; }
	.col-sm-12 { -ms-flex: 12 1 100%; flex: 12 1 100%; max-width: 100%; }

	.col-sm-5eq { -ms-flex: 1 1 20%; flex: 1 1 20%; max-width: 20%;} /* 5等分 */

	.col-sm-offset-12 { margin-left: 100%;         }
	.col-sm-offset-11 { margin-left: 91.66666667%; }
	.col-sm-offset-10 { margin-left: 83.33333333%; }
	.col-sm-offset-9 {  margin-left: 75%;          }
	.col-sm-offset-8 {  margin-left: 66.66666667%; }
	.col-sm-offset-7 {  margin-left: 58.33333333%; }
	.col-sm-offset-6 {  margin-left: 50%;          }
	.col-sm-offset-5 {  margin-left: 41.66666667%; }
	.col-sm-offset-4 {  margin-left: 33.33333333%; }
	.col-sm-offset-3 {  margin-left: 25%;          }
	.col-sm-offset-2 {  margin-left: 16.66666667%; }
	.col-sm-offset-1 {  margin-left: 8.33333333%;  }
	.col-sm-offset-0 {  margin-left: 0;            }

	/* 順番指定 */
	.col-sm-ordinal-1 {
		-ms-flex-order: 0;
		-webkit-box-ordinal-group: 0;
		-webkit-order: 0;
		order: 0;
	}
	.col-sm-ordinal-2 {
		-ms-flex-order: 1;
		-webkit-box-ordinal-group: 1;
		-webkit-order: 1;
		order: 1;
	}
	.col-sm-ordinal-3 {
		-ms-flex-order: 2;
		-webkit-box-ordinal-group: 2;
		-webkit-order: 2;
		order: 2;
	}
	.col-sm-ordinal-4 {
		-ms-flex-order: 3;
		-webkit-box-ordinal-group: 3;
		-webkit-order: 3;
		order: 3;
	}
	.col-sm-ordinal-5 {
		-ms-flex-order: 4;
		-webkit-box-ordinal-group: 4;
		-webkit-order: 4;
		order: 4;
	}
	.col-sm-ordinal-6 {
		-ms-flex-order: 5;
		-webkit-box-ordinal-group: 5;
		-webkit-order: 5;
		order: 5;
	}
	.col-sm-ordinal-7 {
		-ms-flex-order: 6;
		-webkit-box-ordinal-group: 6;
		-webkit-order: 6;
		order: 6;
	}
	.col-sm-ordinal-8 {
		-ms-flex-order: 7;
		-webkit-box-ordinal-group: 7;
		-webkit-order: 7;
		order: 7;
	}
	.col-sm-ordinal-9 {
		-ms-flex-order: 8;
		-webkit-box-ordinal-group: 8;
		-webkit-order: 8;
		order: 8;
	}
	.col-sm-ordinal-10 {
		-ms-flex-order: 9;
		-webkit-box-ordinal-group: 9;
		-webkit-order: 9;
		order: 9;
	}
	.col-sm-ordinal-11 {
		-ms-flex-order: 10;
		-webkit-box-ordinal-group: 10;
		-webkit-order: 10;
		order: 10;
	}
	.col-sm-ordinal-12 {
		-ms-flex-order: 11;
		-webkit-box-ordinal-group: 11;
		-webkit-order: 11;
		order: 11;
	}

	/* 片側固定 */
	.col-sm-fluid {
		-ms-flex: 1;
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		flex: 1;
		padding-top: 0px;
	}
	.col-sm-fix-50 {  width: 50px;  }
	.col-sm-fix-100 { width: 100px; }
	.col-sm-fix-150 { width: 150px; }
	.col-sm-fix-200 { width: 200px; }
	.col-sm-fix-250 { width: 250px; }
	.col-sm-fix-300 { width: 300px; }
	.col-sm-fix-350 { width: 350px; }
	.col-sm-fix-400 { width: 400px; }
	.col-sm-fix-450 { width: 450px; }
	.col-sm-fix-500 { width: 500px; }
	.col-sm-fix-550 { width: 550px; }


	/* 表示設定 */
	.visible-xs { display: none!important; }
	.visible-md { display: none!important; }

	/* 非表示設定 */
	.hidden-sm { display: none!important; }
	.tbNone { display: none!important; }

	/* border none */
	.border-sm-none     { border: none!important;}
	.border-sm-topnone  { border-top: none!important;}
	.border-sm-btmnone  { border-bottom: none!important;}
	.border-sm-leftnone { border-left: none!important;}
	.border-sm-rightnone{ border-right: none!important;}

}
/* //TABLET (sm) */


/*-----------------------------------------------------
                        PC (md) 
-----------------------------------------------------*/
@media print, screen and (min-width: 901px) {

	/*modify*/
	article section > .row,
	article section > .row-md-nogutter,
	footer section > .row{
		margin-left: auto;
		margin-right: auto;
	}
	
	.row, 
	.row-fleximg, 
	.row-md-nogutter {
		display: -ms-flexbox;
		display: -ms-flex;
		display: -webkit-flex;
		display: flex;
		-ms-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.row .row, 
	.row-fleximg .row {
		/*modify-(1)*/
		margin-right: -18px;
		margin-left: -18px;
	}
	.row .row [class*="col-md-"], 
	.row-fleximg .row [class*="col-md-"], 
	.row-md-nogutter .row [class*="col-md-"] {
		/*modify*/
		padding-top: 10px;
		padding-bottom: 0px;
	}
	.row .row:first-child [class*="col-md-"], 
	.row-fleximg .row:first-child [class*="col-md-"], 
	.row-md-nogutter .row:first-child [class*="col-md-"] {
		/*modify*/
		padding-top: 0px;
		padding-bottom: 0px;
	}

	[class*="col-md-"] {
		/*modify-(1)*/
    padding-right: 18px;
    padding-left: 18px;
    padding-bottom: 36px;
	}
	.row-md-nogutter > [class*="col-md-"] {
		padding-right:0;
		padding-left:0;
		padding-bottom:0;
	}

	.col-md-1 {  -ms-flex: 1 1 8.33333333%; flex: 1 1 8.33333333%; max-width: 8.33333333%; }
	.col-md-2 {  -ms-flex: 2 1 16.66666667%; flex: 2 1 16.66666667%; max-width: 16.66666667%; }
	.col-md-3 {  -ms-flex: 3 1 25%; flex: 3 1 25%; max-width: 25%; }
	.col-md-4 {  -ms-flex: 4 1 33.33333333%; flex: 4 1 33.33333333%; max-width: 33.33333333%; }
	.col-md-5 {  -ms-flex: 5 1 41.66666667%; flex: 5 1 41.66666667%; max-width: 41.66666667%; }
	.col-md-6 {  -ms-flex: 6 1 50%; flex: 6 1 50%; max-width: 50%; }
	.col-md-7 {  -ms-flex: 7 1 58.33333333%; flex: 7 1 58.33333333%; max-width: 58.33333333%; }
	.col-md-8 {  -ms-flex: 8 1 66.66666667%; flex: 8 1 66.66666667%; max-width: 66.66666667%; }
	.col-md-9 {  -ms-flex: 9 1 75%; flex: 9 1 75%; max-width: 75%; }
	.col-md-10 { -ms-flex: 10 1 83.33333333%; flex: 10 1 83.33333333%; max-width: 83.33333333%; }
	.col-md-11 { -ms-flex: 11 1 91.66666667%; flex: 11 1 91.66666667%; max-width: 91.66666667%; }
	.col-md-12 { -ms-flex: 12 1 100%; flex: 12 1 100%; max-width: 100%; }

	.col-md-5eq { -ms-flex: 1 1 20%; flex: 1 1 20%; max-width: 20%;} /* 5等分 */

	.col-md-offset-12 { margin-left: 100%;         }
	.col-md-offset-11 { margin-left: 91.66666667%; }
	.col-md-offset-10 { margin-left: 83.33333333%; }
	.col-md-offset-9 {  margin-left: 75%;          }
	.col-md-offset-8 {  margin-left: 66.66666667%; }
	.col-md-offset-7 {  margin-left: 58.33333333%; }
	.col-md-offset-6 {  margin-left: 50%;          }
	.col-md-offset-5 {  margin-left: 41.66666667%; }
	.col-md-offset-4 {  margin-left: 33.33333333%; }
	.col-md-offset-3 {  margin-left: 25%;          }
	.col-md-offset-2 {  margin-left: 16.66666667%; }
	.col-md-offset-1 {  margin-left: 8.33333333%;  }
	.col-md-offset-0 {  margin-left: 0;            }

	/* 順番指定 */
	.col-md-ordinal-1 {
		-ms-flex-order: 0;
		-webkit-box-ordinal-group: 0;
		-webkit-order: 0;
		order: 0;
	}
	.col-md-ordinal-2 {
		-ms-flex-order: 1;
		-webkit-box-ordinal-group: 1;
		-webkit-order: 1;
		order: 1;
	}
	.col-md-ordinal-3 {
		-ms-flex-order: 2;
		-webkit-box-ordinal-group: 2;
		-webkit-order: 2;
		order: 2;
	}
	.col-md-ordinal-4 {
		-ms-flex-order: 3;
		-webkit-box-ordinal-group: 3;
		-webkit-order: 3;
		order: 3;
	}
	.col-md-ordinal-5 {
		-ms-flex-order: 4;
		-webkit-box-ordinal-group: 4;
		-webkit-order: 4;
		order: 4;
	}
	.col-md-ordinal-6 {
		-ms-flex-order: 5;
		-webkit-box-ordinal-group: 5;
		-webkit-order: 5;
		order: 5;
	}
	.col-md-ordinal-7 {
		-ms-flex-order: 6;
		-webkit-box-ordinal-group: 6;
		-webkit-order: 6;
		order: 6;
	}
	.col-md-ordinal-8 {
		-ms-flex-order: 7;
		-webkit-box-ordinal-group: 7;
		-webkit-order: 7;
		order: 7;
	}
	.col-md-ordinal-9 {
		-ms-flex-order: 8;
		-webkit-box-ordinal-group: 8;
		-webkit-order: 8;
		order: 8;
	}
	.col-md-ordinal-10 {
		-ms-flex-order: 9;
		-webkit-box-ordinal-group: 9;
		-webkit-order: 9;
		order: 9;
	}
	.col-md-ordinal-11 {
		-ms-flex-order: 10;
		-webkit-box-ordinal-group: 10;
		-webkit-order: 10;
		order: 10;
	}
	.col-md-ordinal-12 {
		-ms-flex-order: 11;
		-webkit-box-ordinal-group: 11;
		-webkit-order: 11;
		order: 11;
	}

	/* 片側固定 */
	.col-md-fluid {
		-ms-flex: 1;
		-webkit-box-flex: 1; 
		-webkit-flex: 1;
		flex: 1;
		padding-top: 0px;
	}
	.col-md-fix-50 {  width: 50px;  }
	.col-md-fix-100 { width: 100px; }
	.col-md-fix-150 { width: 150px; }
	.col-md-fix-200 { width: 200px; }
	.col-md-fix-250 { width: 250px; }
	.col-md-fix-300 { width: 300px; }
	.col-md-fix-350 { width: 350px; }
	.col-md-fix-400 { width: 400px; }
	.col-md-fix-450 { width: 450px; }
	.col-md-fix-500 { width: 500px; }
	.col-md-fix-550 { width: 550px; }


	/* 表示設定 */
	.visible-xs { display: none!important; }
	.visible-sm { display: none!important; }

	/* 非表示設定 */
	.hidden-md { display: none!important; }
	.pcNone { display: none!important; }

	/* border none */
	.border-md-none     { border: none!important;}
	.border-md-topnone  { border-top: none!important;}
	.border-md-btmnone  { border-bottom: none!important;}
	.border-md-leftnone { border-left: none!important;}
	.border-md-rightnone{ border-right: none!important;}

}
/* //PC (md) */



/*  ================================================================================================

    汎用スタイル　common

    ============================================================================================  */
		
/* common 0.基本スタイル
-----------------------------------------------------*/
.contentsWrap{
	color: #333;
	letter-spacing: 1px;
	overflow-wrap: break-word;　/* 禁則処理 */
}
.contentsWrap .row img {
	max-width:100%!important;
}


/*----- リンク色 -----*/
a:link,
a:visited{
	color: #000;
	text-decoration: none;
}
a:hover,
a:active{
	color: #000;
	text-decoration: none;
}
/* パンくず */
.breadcrumb a:link{
	text-decoration: underline;
}
/* hover時 */
a img:hover {
	opacity:0.8;
}

/*----- レイアウト -----*/
.row figure{	
	text-align: center;
}
.row figcaption{	
	text-align: left;
}
.noWrap{
	white-space: nowrap!important;
}

/* 追加 clearfix (初期追加のみ)
---------------------------------------*/
.clearfix:after {
	content:" ";
	display:block;
	clear:both;
}
.contentsWrap:before,
.contentsWrap:after{
    content: " ";
    display: table;
}
.contentsWrap:after{
    clear: both;
}


/* common 1.テキストレイアウト 
-----------------------------------------------------*/
.text-left  { text-align: left!important;}
.text-center{ 
	text-align: center!important;
	margin-left: auto;
	margin-right: auto;
}
.text-right { text-align: right!important;}

.valign-top  { vertical-align: top!important;}
.valign-center{ vertical-align:middle!important;}
.valign-bottom { vertical-align: bottom!important;}


/* common 2.見出し
-----------------------------------------------------*/
.contentsWrap .titleA{
	font-weight: bold;
}
.contentsWrap .titleB{
	font-weight: bold;
	line-height: 1.3;
}
.contentsWrap .titleB span{
	letter-spacing: 0;
	display: block;
	color: #0F3CAA;
}
.contentsWrap .titleC{
	font-weight: bold;
	line-height: 1.3;
}
.contentsWrap .titleC span{
	letter-spacing: 0;
	display: block;
	color: #0F3CAA;
}
.contentsWrap .titleD{
	font-weight: bold;
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
}
.contentsWrap .titleE{
	font-weight: bold;
}
.contentsWrap .titleF{
	color: #0F3CAA;
	font-weight: bold;
}
.contentsWrap .titleG{
	margin-bottom: 5px;
}


/* common 3.フォントカラー/サイズ
-----------------------------------------------------*/
.text-warning { color: #C00;}
.text-success { color: #336666;}
.text-primary { color: #0066CC;}
.text-muted   { color: #777;}
.text-info    { color: #31708f;}
.text-danger  { color: #FF0000;}


/* common 4.フォント装飾
-----------------------------------------------------*/
sup{
	font-size: 75.5%;
	vertical-align: top;
	position: relative;
	top: -0.1em;
}
sub{
	font-size: 75.5%;
	vertical-align: bottom;
	position: relative;
	top: 0.1em;
}
strong{
	font-weight: bold;
}
em{
	font-style: oblique;
}
.text-indent {
	text-indent: -1.5em;
	padding-left: 1.5em;
}
.text-indent2 {
	text-indent: -2em;
	padding-left: 2em;
}
.note{
	font-size: 13px;
	line-height: 1.4;
}
em,
.italic{
	font-style: italic!important;
}


/* common 5.リスト
-----------------------------------------------------*/
/* listAsterisk */
.listAsterisk{
	padding-left: 1.5em;
	margin-bottom: 20px;
}
.listAsterisk>li{
	text-indent: -1.5em;
	line-height: 1.5;
}
.listAsterisk>li:before{
	content: '※';
	padding-right: 0.5em;
}

/* listCircle */
.listCircle{
	list-style-type: disc;
	padding-left:1.5em;
	margin-bottom: 20px;
}

/* listDecimal */
.listDecimal{
	list-style-type: decimal;
	padding-left:1.5em;
	margin-bottom: 20px;
}


/* common 6.テーブル
-----------------------------------------------------*/
/*----- テーブル共通スタイル -----*/
.table{
	width: 100%;
	max-width: 100%;
}
.table th{
	vertical-align: middle;
	font-weight: bold;
}

/*----- ベースのテーブル -----*/
.table td,
.table th {
	border: 1px solid #ccc;
}

/*-----中央寄せ-----*/
.thCenter th,
.tdCenter td{
	text-align: center;
}

/*----- テーブルA -----*/
.tableStyleA th{
	background-color: #eee;
	white-space: nowrap;
}


/* common 9.width%
-----------------------------------------------------*/
.width-10per { width: 10%!important;}
.width-20per { width: 20%!important;}
.width-30per { width: 30%!important;}
.width-40per { width: 40%!important;}
.width-50per { width: 50%!important;}
.width-60per { width: 60%!important;}
.width-70per { width: 70%!important;}
.width-80per { width: 80%!important;}
.width-90per { width: 90%!important;}
.width-100per{ width: 100%!important;}


/* common 10.汎用　打ち消し系
-----------------------------------------------------*/
/* 余白　打ち消し */
.p0{padding: 0!important;}
.pt0{padding-top: 0!important;}
.pb0{padding-bottom: 0!important;}
.pr0{padding-right: 0!important;}
.pl0{padding-left: 0!important;}

.mt0{margin-top: 0!important;}
.mb0{margin-bottom: 0!important;}
.mr0{margin-right: 0!important;} 
.ml0{margin-left: 0!important;}


/* common 99.フォーム共通スタイル
-----------------------------------------------------*/

/** テキストボックス **/
input[type="text"],
textarea {
	outline: none;
	background-color: #F2F0EC;
	padding: 8px 10px;
	margin-right: 10px;
}



/*  ================================================================================================

    PC/SP　一部共通スタイル

    ============================================================================================  */


/* common ボタンの色
-----------------------------------------------------*/
/* デザイン */
.btnA{
	background-color: #0F3CAA;
	color: #fff!important;
}


/* common ボタンのレイアウト
-----------------------------------------------------*/
.btnArea a:hover,
.btnAreaR a:hover{
	opacity:0.7;
	cursor: pointer;
}
.btnArea{	
	text-align: center;
}

/* hover */
.btnFlexible:hover,
.btnFixed:hover{
	text-decoration: none;
}


/* common 背景色
-----------------------------------------------------*/
.bgG{
	background-color: #EEE;
}


/*  キャプション
-----------------------------------------------------*/
figcaption{
	margin-top: 5px;
	line-height: 1.3;
}


/*  youtube
-----------------------------------------------------*/
.youtube{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe{
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* 表紙 */
.movie-inner .movie-thumb:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	transition: 0.5s;
}
.movie-inner .movie-thumb:hover {
	opacity:0.7;
	cursor: pointer;
}
/*  ローカルナビ
-----------------------------------------------------*/
.en .navList .current a {
	background-color: #cde5f6 ;
	padding-right: 0.25em ;
}


/*  ================================================================================================

    汎用スタイル(デバイス別)

    ============================================================================================  */

/*-----------------------------------------------------
                      SP (xs) 
-----------------------------------------------------*/
@media screen and (max-width: 680px) {


/* SP 1.テキストレイアウト 
-----------------------------------------------------*/
.text-xs-left  { text-align: left!important;}
.text-xs-center{
	text-align: center!important;
	margin-left: auto;
	margin-right: auto;
}
.text-xs-right { text-align: right!important;}


/* SP  2.下余白
-----------------------------------------------------*/
/* 下余白 */
.blockend-ss{	margin-bottom: 10px!important;}
.blockend-s {	margin-bottom: 15px!important;}
.blockend-m {	margin-bottom: 20px!important;}
.blockend-l {	margin-bottom: 30px!important;}

/* 下余白 SPのみ */
.blockend-xs-ss{	margin-bottom: 5px!important;}
.blockend-xs-s {	margin-bottom: 10px!important;}
.blockend-xs-m {	margin-bottom: 20px!important;}
.blockend-xs-l {	margin-bottom: 30px!important;}

/* 上余白 */
.blocktop-ss{	margin-top: 5px!important;}
.blocktop-s {	margin-top: 10px!important;}
.blocktop-m {	margin-top: 25px!important;}
.blocktop-l {	margin-top: 30px!important;}

/* SP 3.フォントサイズ
-----------------------------------------------------*/
.small_xx { font-size: 1.2rem;}/* SP　1.2より下にはしない */
.small_x  { font-size: 1.2rem;}
.small    { font-size: 1.3rem;}
.medium   { font-size: 1.4rem;}
.large    { font-size: 1.5rem;} 
.large_x  { font-size: 1.6rem;}
.large_xx { font-size: 1.8rem;}


/* SP  6.テーブル
-----------------------------------------------------*/
.table td,
.table th{
	padding: 4px;
	font-size: 12px;
}
.table{
	margin-bottom: 20px;
}


/* SP 9.width %  
-----------------------------------------------------*/
.width-xs-ss{width: 40%!important;}
.width-xs-s{ width: 60%!important;}
.width-xs-m{ width: 80%!important;}
.width-xs-l{ width: 90%!important;}

.width-xs-10per { width: 10%!important;}
.width-xs-20per { width: 20%!important;}
.width-xs-30per { width: 30%!important;}
.width-xs-40per { width: 40%!important;}
.width-xs-50per { width: 50%!important;}
.width-xs-60per { width: 60%!important;}
.width-xs-70per { width: 70%!important;}
.width-xs-80per { width: 80%!important;}
.width-xs-90per { width: 90%!important;}
.width-xs-100per{ width: 100%!important;}



/* SP 99.フォームスタイル 
-----------------------------------------------------*/
/** textarea  **/
input[type="text"],
textarea {
	width: 100%;
}


}
/* // SP (xs) */



/*-----------------------------------------------------
                     TABLET (sm) 
-----------------------------------------------------*/
@media screen and (min-width: 681px) and (max-width: 900px) {

	

/* TB 1.テキストレイアウト 
-----------------------------------------------------*/
.text-sm-left  { text-align: left!important;}
.text-sm-center{
	text-align: center!important;
	margin-left: auto;
	margin-right: auto;
}
.text-sm-right { text-align: right!important;}


/* TB  2.下余白
-----------------------------------------------------*/
/* 下余白 */
.blockend-ss{	margin-bottom: 5px!important;}
.blockend-s {	margin-bottom: 10px!important;}
.blockend-m {	margin-bottom: 20px!important;}
.blockend-l {	margin-bottom: 30px!important;}

/* 下余白 SPのみ */
.blockend-sm-ss{	margin-bottom: 5px!important;}
.blockend-sm-s {	margin-bottom: 10px!important;}
.blockend-sm-m {	margin-bottom: 20px!important;}
.blockend-sm-l {	margin-bottom: 30px!important;}

/* 上余白 */
.blocktop-ss{	margin-top: 10px!important;}
.blocktop-s {	margin-top: 20px!important;}
.blocktop-m {	margin-top: 40px!important;}
.blocktop-l {	margin-top: 60px!important;}

/* TB 3.フォントサイズ
-----------------------------------------------------*/
.small_xx { font-size: 1.2rem;}
.small_x  { font-size: 1.3rem;}
.small    { font-size: 1.4rem;}
.medium   { font-size: 1.5rem;}
.large    { font-size: 1.6rem;} 
.large_x  { font-size: 1.7rem;}
.large_xx { font-size: 1.8rem;}


/* TB  6.テーブル
-----------------------------------------------------*/
.table td,
.table th{
	padding: 6px;
	font-size: 12px;
}
.table{
	margin-bottom: 20px;
}


/* TB 9.width% 
-----------------------------------------------------*/
.width-sm-ss{width: 40%!important;}
.width-sm-s{ width: 60%!important;}
.width-sm-m{ width: 80%!important;}
.width-sm-l{ width: 90%!important;}

.width-sm-10per { width: 10%!important;}
.width-sm-20per { width: 20%!important;}
.width-sm-30per { width: 30%!important;}
.width-sm-40per { width: 40%!important;}
.width-sm-50per { width: 50%!important;}
.width-sm-60per { width: 60%!important;}
.width-sm-70per { width: 70%!important;}
.width-sm-80per { width: 80%!important;}
.width-sm-90per { width: 90%!important;}
.width-sm-100per{ width: 100%!important;}



/* TB 99.フォームスタイル
-----------------------------------------------------*/
/** textarea  **/
input[type="text"],
textarea {
	width: 100%;
}


}
/*  //TABLET (sm) */


/*-----------------------------------------------------
                        PC (md) 
-----------------------------------------------------*/
@media print, screen and (min-width: 901px) {
	

/* PC 1.テキストレイアウト 
-----------------------------------------------------*/
.text-md-left  { text-align: left!important;}
.text-md-center{
	text-align: center!important;
	margin-left: auto;
	margin-right: auto;
}
.text-md-right { text-align: right!important;}


/* PC  2.下余白
-----------------------------------------------------*/
/* 下余白 */
.blockend-ss{	margin-bottom: 15px!important;}
.blockend-s {	margin-bottom: 30px!important;}
.blockend-m {	margin-bottom: 50px!important;}
.blockend-l {	margin-bottom: 70px!important;}

/* 下余白 PCのみ */
.blockend-md-ss{	margin-bottom: 15px!important;}
.blockend-md-s {	margin-bottom: 30px!important;}
.blockend-md-m {	margin-bottom: 50px!important;}
.blockend-md-l {	margin-bottom: 70px!important;}

/* 上余白 */
.blocktop-ss{	margin-top: 15px!important;}
.blocktop-s {	margin-top: 30px!important;}
.blocktop-m {	margin-top: 50px!important;}
.blocktop-l {	margin-top: 100px!important;}

/* PC 3.フォントサイズ
-----------------------------------------------------*/
.small_xx { font-size: 1.3rem;}
.small_x  { font-size: 1.4rem;}
.small    { font-size: 1.5rem;}
.medium   { font-size: 1.6rem;}
.large    { font-size: 1.7rem;} 
.large_x  { font-size: 1.8rem;}
.large_xx { font-size: 2.0rem;}


/* PC  6.テーブル
-----------------------------------------------------*/
/* テーブル */
.table td,
.table th{
	padding: 8px;
	font-size: 14px;
	line-height: 1.5;
}

.noWrapTh-md th{
	white-space: nowrap;
}


/* PC 9.width% 
-----------------------------------------------------*/
.width-md-ss{width: 40%!important;}
.width-md-s{ width: 60%!important;}
.width-md-m{ width: 80%!important;}
.width-md-l{ width: 90%!important;}

.width-md-10per { width: 10%!important;}
.width-md-20per { width: 20%!important;}
.width-md-30per { width: 30%!important;}
.width-md-40per { width: 40%!important;}
.width-md-50per { width: 50%!important;}
.width-md-60per { width: 60%!important;}
.width-md-70per { width: 70%!important;}
.width-md-80per { width: 80%!important;}
.width-md-90per { width: 90%!important;}
.width-md-100per{ width: 100%!important;}

}
/* PC (md) */




/**************************** technology 以下共通　common *******************************/

/* 余白調整
-----------------------------------------------------*/
.padAdjust{
	max-width: 1236px;
	padding-right: 18px;
  padding-left: 18px;
}

/* リンク共通
-----------------------------------------------------*/
/* 外部サイトアイコン 大 */
.blank{
	position: relative;
	display:inline-block;
}
.blank:after{
  position: absolute;
  top: 0;
  bottom: 0;
  right: -30px;
  margin: auto;
	content:" ";
	background: url(/img/technology/common/ico_blank.png) no-repeat;
	display:inline-block;
	width: 60px;
	height: 60px;
	-moz-background-size:contain;
	-webkit-background-size:contain;
	-o-background-size:contain;
	-ms-background-size:contain;	
	background-size:contain;
	z-index: 100;
}

/* 外部サイトアイコン 小 */
.blank_s{
	position: relative;
	display:inline-block;
	padding-right: 22px;
}
.blank_s:after{
  position: absolute;
  bottom: 7px;
  right: 5px;
	content:" ";
	background: url(/img/technology/common/ico_blank_s.png) no-repeat;
	display:inline-block;
	width: 12px;
	height: 12px;
	-moz-background-size:contain;
	-webkit-background-size:contain;
	-o-background-size:contain;
	-ms-background-size:contain;	
	background-size:contain;
}


/**************************** technology トップ *******************************/


/* ナンバー付きリスト	/technology/index.php
--------------------------------------------------------------*/
.techtop .listNum{
	max-width: 490px;
}

.jp .techtop .listNum.listTechtop {
    max-width: 588px;
}
.jp .techtop .listNum.listTechtop li {
    letter-spacing: -0.02em;
}

.jp .techtop .listNum>li{
	padding: 5px 0 5px 75px;
	border-left: 1px solid #0551a3;
    font-size: 20px;
}
.en .techtop .listNum>li{
	border-bottom: 1px solid #CDCDCD;
	padding: 10px 0 10px 55px;
}
.techtop .listNum>li:last-child{
	border-bottom:none;
}
.jp .techtop .listNum>li:nth-child(1){ background: url(/img/technology/common/img_no1.png) no-repeat left 20px center;}
.jp .techtop .listNum>li:nth-child(2){ background: url(/img/technology/common/img_no2.png) no-repeat left 20px center;}
.jp .techtop .listNum>li:nth-child(3){ background: url(/img/technology/common/img_no3.png) no-repeat left 20px center;}
.jp .techtop .listNum>li:nth-child(4){ background: url(/img/technology/common/img_no4.png) no-repeat left 20px center;}
.jp .techtop .listNum>li:nth-child(5){ background: url(/img/technology/common/img_no5.png) no-repeat left 20px center;}
.en .techtop .listNum>li:nth-child(1){ background: url(/img/technology/common/img_no1.png) no-repeat left center;}
.en .techtop .listNum>li:nth-child(2){ background: url(/img/technology/common/img_no2.png) no-repeat left center;}
.en .techtop .listNum>li:nth-child(3){ background: url(/img/technology/common/img_no3.png) no-repeat left center;}
.en .techtop .listNum>li:nth-child(4){ background: url(/img/technology/common/img_no4.png) no-repeat left center;}

.jp .techtop .listNum>li:nth-child(1),
.jp .techtop .listNum>li:nth-child(2),
.jp .techtop .listNum>li:nth-child(3),
.jp .techtop .listNum>li:nth-child(4),
.jp .techtop .listNum>li:nth-child(5){
	-moz-background-size: 30px auto;
	-webkit-background-size: 30px auto;
	-ms-background-size: 30px auto;
	-o-background-size: 30px auto;
	background-size: 30px auto;
}
.en .techtop .listNum>li:nth-child(1),
.en .techtop .listNum>li:nth-child(2),
.en .techtop .listNum>li:nth-child(3),
.en .techtop .listNum>li:nth-child(4){
	-moz-background-size: 24px auto;
	-webkit-background-size: 24px auto;
	-ms-background-size: 24px auto;
	-o-background-size: 24px auto;
	background-size: 24px auto;
}


/* ナンバー付きリンクリスト	/technology/index.php
--------------------------------------------------------------*/
.jp .techtop .listNumLink{
	max-width: 490px;
}

.jp .techtop .listNumLink.listTechtop {
    max-width: 588px;
}
.jp .techtop .listNumLink.listTechtop a {
    letter-spacing: -0.02em;
}

.jp .techtop .listNumLink>li {
	font-size: 20px;
}
.jp .techtop .listNumLink>li a {
	display: inline-block;
	padding: 5px 32px 5px 75px;
	border-left: 1px solid #0551a3;
	background-size: 30px auto;
	background-repeat: no-repeat;
	background-position: left 20px center;
	position: relative;
}
.jp .techtop .listNumLink>li:nth-child(1) a {
	background-image: url(/img/technology/common/img_no1.png);
}
.jp .techtop .listNumLink>li:nth-child(2) a {
	background-image: url(/img/technology/common/img_no2.png);
}
.jp .techtop .listNumLink>li:nth-child(3) a {
	background-image: url(/img/technology/common/img_no3.png);
}
.jp .techtop .listNumLink>li:nth-child(4) a {
	background-image: url(/img/technology/common/img_no4.png);
}
.jp .techtop .listNumLink>li:nth-child(5) a {
	background-image: url(/img/technology/common/img_no5.png);
}
.jp .techtop .listNumLink>li:last-child a {
	border-bottom:none;
}
.jp .techtop .listNumLink>li a::after {
	content: "";
	width: 17px;
	height: 17px;
	background-image: url(/img/technology/common/ico_blankA.png);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: left top;
	transform: translate(0, -50%);
	position: absolute;
	top: 50%;
	right: 0;
}


/* 画像切り替えスライダー	/technology/index.php
--------------------------------------------------------------*/
.slider{
	position:relative;
	z-index:-1;
}
.slider img{
	width:100%;
}
.slideBaseBox{
	position:absolute;
	width:100%;
	top:0;
	left:0;
}
.circleBaseBox{
	position: absolute;
	top: 25.18%;
	left: 61.2%;
	width: 26.67%;
}
.slider ul{
	margin:0 auto;
	position:relative;
	background:#FFFFFF!important;
	padding:0;
	list-style:none;
}
.slider .sliderWrapCircle{
	position:relative;
}
.slider ul.sliderWrap li,
.slider ul.sliderWrapCircle li{
	position:absolute;
	top:0;
	left:0;
	width:100%;
}
.slider ul.sliderWrapCircle li.sliderTextBox{
	z-index:11;
}
.slider ul.sliderWrapCircle li:not(.sliderTextBox){
	z-index:10;
}
.slider ul.sliderWrapCircle li div,
.slider ul.sliderWrap li div{
	animation-iteration-count:infinite;
	animation-duration:18s;
}
.slider ul.sliderWrapCircle li:nth-child(2) div{
	animation-name:rotation;
	animation-delay:-1s;
	animation-timing-function: linear;
}
.slider ul.sliderWrapCircle li:nth-child(3) div{
	animation-name:rotation2;
	animation-delay:5s;
	opacity:0;
	animation-timing-function: linear;
}
.slider ul.sliderWrapCircle li:nth-child(4) div{
	animation-name:rotation3;
	animation-delay:11s;
	opacity:0;
	animation-timing-function: linear;
}
.slider ul.sliderWrap li:nth-child(1) div{
	animation-name:slider;
	animation-delay:-1s;
}
.slider ul.sliderWrap li:nth-child(2) div{
	animation-name:slider2;
	animation-delay:5s;
	opacity:0;
}
.slider ul.sliderWrap li:nth-child(3) div{
	animation-name:slider3;
	animation-delay:11s;
	opacity:0;
}

@keyframes slider{
	0%{
		opacity:0;
	}
	6.25%{
		opacity:1;
	}
	12.5%{
		opacity:1;
	}
	33.33%{
		opacity:1;
	}
	45.83%{
		opacity:0;
	}
	100%{
		opacity:0;
	}	
}
@keyframes slider2{
	0%{
		opacity:0;
	}
	6.25%{
		opacity:1;
	}
	12.5%{
		opacity:1;
	}
	33.33%{
		opacity:1;
	}
	45.83%{
		opacity:0;
	}
	100%{
		opacity:0;
	}	
}
@keyframes slider3{
	0%{
		opacity:0;
	}
	6.25%{
		opacity:1;
	}
	12.5%{
		opacity:1;
	}
	33.33%{
		opacity:1;
	}
	45.83%{
		opacity:0;
	}
	100%{
		opacity:0;
	}	
}
@keyframes rotation{
	0%{
		opacity:0;
	}
	6.25%{
		opacity:1;
	}
	12.5%{
		opacity:1;
		transform: rotate(0deg);
	}
	24.33%{
		opacity:1;
		transform: rotate(0deg);
	}
	31.33%{
		opacity:1;
		transform:rotate(120deg);
	}
	33.33%{
		opacity:1;
		transform:rotate(120deg);
	}
	39.58%{
		opacity:0;
		transform:rotate(120deg);
	}
	45.83%{
		opacity:0;
		transform:rotate(120deg);
	}
	100%{
		opacity:0;
		transform:rotate(120deg);
	}	
}
@keyframes rotation2{
	0%{
		opacity:0;
	}
	6.25%{
		opacity:1;
	}
	12.5%{
		opacity:1;
		transform: rotate(0deg);
	}
	24.33%{
		opacity:1;
		transform: rotate(0deg);
	}
	31.33%{
		opacity:1;
		transform:rotate(120deg);
	}
	33.33%{
		opacity:1;
		transform:rotate(120deg);
	}
	39.58%{
		opacity:0;
		transform:rotate(120deg);
	}
	45.83%{
		opacity:0;
		transform:rotate(120deg);
	}
	100%{
		opacity:0;
		transform:rotate(120deg);
	}
}
 
@keyframes rotation3{
	0%{
		opacity:0;
	}
	6.25%{
		opacity:1;
	}
	12.5%{
		opacity:1;
		transform: rotate(0deg);
	}
	24.33%{
		opacity:1;
		transform: rotate(0deg);
	}
	31.33%{
		opacity:1;
		transform:rotate(120deg);
	}
	33.33%{
		opacity:1;
		transform:rotate(120deg);
	}
	39.58%{
		opacity:0;
		transform:rotate(120deg);
	}
	45.83%{
		opacity:0;
		transform:rotate(120deg);
	}
	100%{
		opacity:0;
		transform:rotate(120deg);
	}
}

.jp .contentsWrap .allWrapper1,
.jp .contentsWrap .allWrapper3{
	background-color: #eeeeee;
}

.jp .contentsWrap .allWrapper2{
	background-color: #ffffff;
}

.jp h3.columnsGlossary {
    text-align: center;
    font-weight: 700;
    font-size: 36px;
}

.jp h4.columnsGlossaryEn {
    text-align: center;
    color: #004ea1;
    font-weight: 700;
    font-size: 16px;
}


.jp .breadcrumb{
	margin-bottom: 0;
}

/*　■■■■■■■■■■■■■■■　common ここまで　■■■■■■■■■■■■■■■　*/






/*　■■■■■■■■■■■■■■■　sp ここから　■■■■■■■■■■■■■■■　*/
@media screen and (max-width: 680px) {

/*-----------------------------------------------------
							　　　　　目次

■SP 共通
・font-size フォントサイズ
・layout　レイアウト

■SP 汎用スタイル
・見出し
・ボタン
・リンク共通
・その他

■SP ページごと個別スタイル

-----------------------------------------------------*/


/*  ================================================================================================

    SP 共通

    ============================================================================================  */
		
/* font-size フォントサイズ
------------------------------------------------------------------ */
body{
	-webkit-text-size-adjust: 100%; /* iPhone safari ランドスケープ時　文字サイズ対応 */
}
.contentsWrap>article{
	font-size: 14px;
	line-height: 1.6;
}

.contentsWrap h1,
.contentsWrap h2,
.contentsWrap h3,
.contentsWrap h4,
.contentsWrap h5,
.contentsWrap h6{
	line-height: 1.6;
}


/* layout　レイアウト
------------------------------------------------------------------ */
.row-xs-nogutter .fitWidthA{
	width: 100%;
	margin-left: 0!important;
	margin-right: 0!important;	
}



/*  ================================================================================================

    SP 汎用スタイル

    ============================================================================================  */

/* 見出し
-----------------------------------------------------*/
.contentsWrap .titleA{
	font-size: 17px;
	margin-bottom: 10px;
}
.jp .contentsWrap .titleB{
	font-size: 15px;
	padding-top: 20px;
	padding-left: 10px;
	margin-bottom: 10px;
}
.en .contentsWrap .titleB{
	font-size: 15px;
	border-left: 2px solid #0F3CAA;
	padding-top: 20px;
	padding-left: 10px;
	margin-bottom: 10px;
}
.contentsWrap .titleB span{
	font-size: 12px;
}
.contentsWrap .titleC{
	font-size: 15px;
	border-bottom: 1px solid #0F3CAA;
	padding-bottom: 5px;
	margin-bottom: 10px;
}
.contentsWrap .titleC span{
	font-size: 12px;
}
.contentsWrap .titleD{
	font-size: 15px;
}
.contentsWrap .titleE{
	font-size: 15px;
	margin-bottom: 10px;
}
.contentsWrap .titleF{
	font-size: 15px;
	margin-bottom: 8px;
}
.contentsWrap .titleG{
	font-size: 15px;
}
figcaption{
	font-size: 12px;
}


/* SPボタン
-----------------------------------------------------*/
.btnFlexible,
.btnFixed{
	display: inline-block;
	font-weight: bold;
	padding: 12px 5px;
	margin: 10px 0;
	text-align: center;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
.btnFixed{
	width: 200px;
}


.jp a.btnFlexible.btnA.arrowRTechnologyTop {
    width: 80%;
    max-width: 370px;
    padding: 12px 20px;
}
.en .btnFlexible{
	width: 80%;
	max-width: 370px;
	padding: 12px 20px;
}


.jp .btnFixed.arrowRTech{
	width: 72vw;
	font-size: 13px;
}

/* ボタン 矢印の形状(右配置　右→) --------------------*/
.arrowR{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	text-decoration: none;
}
.arrowR:before,
.arrowR:after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.arrowR:before{
	right: 10px;
	width: 13px;
	height: 2px;
	background: #fff;
}
.arrowR:after{
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


/* SP ボタンのレイアウト
-----------------------------------------------------*/
.btnAreaR{	
	text-align: center;
}


/* リンク共通
-----------------------------------------------------*/
/* 外部サイトアイコン 大 */
.blank:after{
  right: -12px;
	width: 25px;
	height: 25px;
}

/* 外部サイトアイコン 小 */
.blank_s{
	position: relative;
	display:inline-block;
	padding-right: 22px;
}
.blank_s:after{
  position: absolute;
  bottom: 7px;
  right: 5px;
	content:" ";
	background: url(/img/technology/common/ico_blank_s.png) no-repeat;
	display:inline-block;
	width: 12px;
	height: 12px;
	-moz-background-size:contain;
	-webkit-background-size:contain;
	-o-background-size:contain;
	-ms-background-size:contain;	
	background-size:contain;
}


/*  その他
-----------------------------------------------------*/
.paragraph{
	margin-bottom: 20px;
}

/* 背景色
-----------------------------------------------------*/
.bgG{
	padding-bottom: 25px;
}



/**************************** technology トップ SP *******************************/


/* レーダーテクノロジー　　/technology/index.php
-----------------------------------------------------*/
.radarImg figure{
	position: relative;
}
.radarImg figure .radartext{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
	width: 70%;
}

/* 目次リスト */
.techtop .listNum.displayFlex li {
	background-size: 35px auto!important;
}


/* 外部リンク画像つきリンク　/technology/index.php、/technology/radar/solution/index.php
-----------------------------------------------------*/
.linkList p{
	font-size: 13px;
	line-height: 1.3;
	width: 100%;
}
.linkList p:first-of-type{
	font-size: 14px;
	width: 78%;
	margin-top: 8px;
	margin-bottom: 8px;
}
.linkList figure{
	position: relative;
}
.linkList figure:before{
	position: absolute;
	bottom: -20px;
	right: 5px;
	content:" ";
	background: url(/img/technology/common/ico_blank.png) no-repeat;
	display:inline-block;
	width: 25px;
	height: 25px;
	-moz-background-size:contain;
	-webkit-background-size:contain;
	-o-background-size:contain;
	-ms-background-size:contain;	
	background-size:contain;
	z-index: 100;
}
.jp .linkList.linkListTech figure:before{
	right: 8px;
	width: 30px;
	height: 30px;
}

/* ソリューション */
.solution .linkList p{
	width: 100%;
}

.jp .topMainText .topMainText1 {
    padding-bottom: 0px;
}

.jp .topMainText .topMainText2 {
    font-size: 14px;
}
.jp .topMainImg{
	position: relative;
}

.jp .topTitle{
	display: none;
}

.jp .topMainImg .topTitleSP{
	width: 52%;
    height: auto;
    position: absolute;
    top: 10.2vw;
    left: 4.13vw;
    background: rgb(8, 8, 8, 0.4);
    padding: 3vw;
}
.jp .topTitleSP img{
	width: 100%;
}
.jp .titleTech{
	border-left: 3px solid #0F3CAA;
}
.jp .adjusttopMainText{
	padding: 25px 0;
}
.jp .contentsWrap .titleTech{
	padding-left: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    padding-top: 23px;
}
.jp h2.titleA.titleTechDetail {
    margin-top: 18px;
}
.jp .blockend-25sp {
    padding-bottom: 25px;
}
.jp .techtop .listNum>li:nth-child(1){ background: url(/img/technology/common/img_no1.png) no-repeat left 15px center;}
.jp .techtop .listNum>li:nth-child(2){ background: url(/img/technology/common/img_no2.png) no-repeat left 15px center;}
.jp .techtop .listNum>li:nth-child(3){ background: url(/img/technology/common/img_no3.png) no-repeat left 15px center;}
.jp .techtop .listNum>li:nth-child(4){ background: url(/img/technology/common/img_no4.png) no-repeat left 15px center;}
.jp .techtop .listNum>li:nth-child(5){ background: url(/img/technology/common/img_no5.png) no-repeat left 15px center;}

.jp .techtop .listNum>li {
    padding: 5px 0 5px 60px;
    border-left: 2px solid #0551a3;
    font-size: 14px;
}

.jp .techtop .listNum>li:nth-child(1),
.jp .techtop .listNum>li:nth-child(2),
.jp .techtop .listNum>li:nth-child(3),
.jp .techtop .listNum>li:nth-child(4),
.jp .techtop .listNum>li:nth-child(5){
	-moz-background-size: 30px auto;
	-webkit-background-size: 30px auto;
	-ms-background-size: 30px auto;
	-o-background-size: 30px auto;
	background-size: 30px auto;
}

.jp .techtop .listNumLink>li a {
	padding: 5px 20px 5px 60px;
	border-left: 2px solid #0551a3;
	font-size: 14px;
	background-position: left 15px center;
	background-size: 30px auto;
}
.jp .techtop .listNumLink>li a::after {
	width: 13px;
	height: 13px;
	background-image: url(/img/technology/common/ico_blankASP.png);
}

.jp .listTechtop .oneRow{
	line-height: 47.8px;
}
.jp h3.columnsGlossary {
    font-size: 18px;
}
.jp h4.columnsGlossaryEn{
	font-size: 12px;
}
.jp .linkListTech p{
	font-size: 12px;
}


.jp .allWrapperFlex1{
    margin: 20px -18px;
}

.jp .allWrapperFlex1.SPnone{
	display: none;
}



.jp .arrowRTech:after {
	width: 9px;
    height: 9px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 1px;
    bottom: 0;
    right: 15px;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.jp .arrowRTech:before {
    right: 14px;
    width: 13px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 0.5px;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.jp a.btnFlexible.btnA.arrowRTech.SPwieghtLight{
	font-weight: 300;
}
.jp a.btnFixed.btnA.arrowRTech.SPwieghtLight {
    padding: 10px 20px;
}
.jp .btnArea.btnAreaAdjust {
    padding-bottom: 20px;
}
.jp p.btnFixed.btnA.arrowRTech.SPwieghtLight {
    font-weight: 300;
}

.jp .slideBaseBoxPC{
	display: none;
}
.jp .circleBaseBox {
    position: absolute;
    top: 21.18%;
    left: 67.2%;
    width: 26.67%;
}

}
/*　■■■■■■■■■■■■■■■　sp ここまで　■■■■■■■■■■■■■■■　*/





/*　■■■■■■■■■■■■■■■　pc ここから　■■■■■■■■■■■■■■■　*/
@media print, screen and (min-width: 681px) {

/*-----------------------------------------------------
							　　　　　目次
							
■PC 共通
・font-size フォントサイズ
・layout　レイアウト	

■PC 汎用スタイル
・見出し
・ボタン
・その他

■PC ページごと個別スタイル
	
-----------------------------------------------------*/


/*  ================================================================================================

    PC 共通

    ============================================================================================  */
		
/* font-size フォントサイズ
------------------------------------------------------------------ */
.contentsWrap>article{
	font-size: 16px;
	line-height: 1.8;
}

.contentsWrap h1,
.contentsWrap h2,
.contentsWrap h3,
.contentsWrap h4,
.contentsWrap h5,
.contentsWrap h6{
	line-height: 1.8;
}


/* layout　レイアウト
------------------------------------------------------------------ */
.fitWidthA{
	max-width: 1236px;/* 1200+18*2=1236 */
  margin-left: auto!important;
  margin-right: auto!important;
}




/*  ================================================================================================

    PC 汎用スタイル

    ============================================================================================  */

/* PC見出し
-----------------------------------------------------*/
.contentsWrap .titleA{
	font-size: 34px;
	margin-bottom: 20px;
}
.jp .contentsWrap .titleB{
	font-size: 30px;
	padding-top: 60px;
	padding-left: 25px;
	margin-bottom: 20px;
}
.en .contentsWrap .titleB{
	font-size: 30px;
	border-left: 3px solid #0F3CAA;
	padding-top: 60px;
	padding-left: 25px;
	margin-bottom: 20px;
}

.contentsWrap .titleB span{
	font-size: 16px;
}


.jp .contentsWrap .titleForIndex{
	font-size: 27px;
	padding-top: 0px;
	padding-left: min(10vw,110px);
	margin-bottom: 0px;
}
.jp .contentsWrap .titleTechDetail{
	font-size: 30px;
	margin-bottom: 20px;
	line-height: 1.3;
}
.jp .titleTech{
	border-left: 3px solid #0F3CAA;
}
.jp .contentsWrap .titleTech{
	font-size: 40px;
}
.jp .contentsWrap .titleTech span{
	font-size: 20px;
}
.jp .blockend-25{
	padding-bottom: 25px;
}


.contentsWrap .titleC{
	font-size: 30px;
	border-bottom: 2px solid #0F3CAA;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.contentsWrap .titleC span{
	font-size: 16px;
}
.contentsWrap .titleD{
	font-size: 22px;
}
.contentsWrap .titleE{
	font-size: 22px;
	margin-bottom: 20px;
}
.contentsWrap .titleF{
	font-size: 18px;
	margin-bottom: 5px;
}
.contentsWrap .titleG{
	font-size: 18px;
}

figcaption{
	font-size: 14px;
}

/* PCボタン
-----------------------------------------------------*/
.btnFlexible,
.btnFixed{
	display: inline-block;
	margin: 10px 0;
	text-align: center;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;		
}
.btnFixed{
	width: 273px;
	padding: 23px 20px 22px;
}
.btnFlexible{
	min-width: 340px;
	padding: 23px 30px 22px;
}

/* PCボタン 矢印の形状(右配置　右→) --------------------*/
.arrowR{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	text-decoration: none;
}
.arrowR:before,
.arrowR:after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.arrowR:before{
	right: 13px;
	width: 24px;
	height: 1px;
	background: #fff;
}
.arrowR:after{
	width: 18px;
	height: 18px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btnFlexible.arrowR{
	padding-right: 50px;
}

/* PCボタン 矢印の形状調整 --------------------*/
.jp .arrowR:after {
    width: 9px;
    height: 9px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0.5px;
    bottom: 0;
    right: 10px;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.jp .arrowR:before {
    right: 9px;
    width: 11px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 0.5px;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}


.jp .btnFixed.arrowRTech{
	padding: 12px 20px 10px;
	width: 300px;
}

.jp .arrowRTechnologyTop:before {
    right: 19px;
    width: 20px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 0.5px;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.jp .arrowRTechnologyTop:after {
    width: 15px;
    height: 15px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0.5px;
    bottom: 0;
    right: 21px;
    margin: auto;
    content: "";
    vertical-align: middle;
}



/* PC ボタンのレイアウト
-----------------------------------------------------*/
.btnAreaR{	
	text-align: right;
}


/* PC その他
-----------------------------------------------------*/
.paragraph{
	margin-bottom: 25px;
}

/* PC 背景色
-----------------------------------------------------*/
.bgG{
	padding-bottom: 70px;
}


/* PC キャプションを画像の幅に合わせる
-----------------------------------------------------*/
figure.imgFit{
	display: table; /* figure要素をtableとして扱う */
	min-width: 100px;
	margin: 0 auto;
}
figure.imgFit figcaption{
	display:table-caption;
	caption-side:bottom;
}
figure.imgFit .note{
	margin-top:5px;
}
figure.imgFit img{
	width: 100%;
}


/* PC youtube
-----------------------------------------------------*/
.youtubeWrap{
	max-width: 582px;
}



/**************************** technology トップ PC *******************************/


/* mainImg　メインイメージ　　/technology/index.php
-----------------------------------------------------*/
.techtop .mainImgWrap{
	z-index: 1;
}
.jp .techtop .topMainText{
	max-width: 1200px;
	margin-top: 60px;
	text-align: center;
  margin-left: auto;
  margin-right: auto;
	z-index: 2;
}
.en .techtop .topMainText{
	max-width: 1200px;
	margin-top: -60px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	z-index: 2;
}
.techtop .topMainText>.row>div{
	background-color: #fff;
}

.jp .topMainText .topMainText1 {
    padding-bottom: 40px;
    font-size: 20px;
}

.jp .topMainText .topMainText2 {
    font-size: 30px;
}
.jp .topMainImg{
	position: relative;
}

.jp .topMainImg .topTitle{
    width: 37.5%;
    height: auto;
    position: absolute;
    top: 11.5vw;
    left: 9.99vw;
    background: rgb(8, 8, 8, 0.4);
    padding: 20px;
}
.jp .topTitle img{
	width: 100%;
}
.jp .topTitleSP{
	display: none;
}
.jp .adjusttopMainText12{
	padding-right: 18px;
    padding-left: 18px;
    padding-bottom: 60px;
    margin: 0 auto;
}
.jp .listTechtop .PCnone{
	display: none;
}





/* レーダーテクノロジー　　/technology/index.php
-----------------------------------------------------*/
.radarImg figure{
	position: relative;
}
.radarImg figure .radartext{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

/* 目次リスト */
.techtop .listNum.displayFlex {
	max-width:100%;
	display:flex;
}
.techtop .listNum.displayFlex li {
	padding:0 20px 0 50px;
	line-height:160%;
	border-right:1px solid #ccc;
	border-bottom:none;
	margin: 0 10px 0 0;
	flex:1;
	font-size:14px;
	background-size: 40px auto!important;
	background-position: left top 5px;
}
.techtop .listNum.displayFlex li:last-child {
	border-right:none;
}


/* 外部リンク画像つきリンク　/technology/index.php、/technology/radar/solution/index.php
-----------------------------------------------------*/
.linkList p{
	font-size: 16px;
	line-height: 1.4;
	width: 100%;
}
.linkList p:first-of-type{
	font-size: 18px;
	width: 80%;
	margin-top: 5%;
	margin-bottom: 12px;
}
.linkList figure{
	position: relative;
}
.linkList figure:before{
	position: absolute;
	bottom: -17%;
	right: 0;
	content:" ";
	background: url(/img/technology/common/ico_blank.png) no-repeat;
	display:inline-block;
	width: 20%;
	height: 23%;
	-moz-background-size:contain;
	-webkit-background-size:contain;
	-o-background-size:contain;
	-ms-background-size:contain;	
	background-size:contain;
	z-index: 100;
}

/* ソリューション */
.solution .linkList p{
	margin-top: 12px;
}
.solution .linkList figure:before{
	width: 13%;
	height: 30%;
}


.jp .allWrapperFlex{
	display: flex;
	justify-content: space-between;
}
.jp .allWrapperFlex1,
.jp .allWrapperFlex2{
	width: 49%;
}


.jp .allWrapperFlex1.PCnone{
	display: none;
}

.jp .linkListTech .PCnone{
	display: none;
}
.jp .slideBaseBoxSP{
	display: none;
}

}
/*　■■■■■■■■■■■■■■■　pc ここまで　■■■■■■■■■■■■■■■　*/




/*　■■■■■■■■■■■■■■■　tb ここから　■■■■■■■■■■■■■■■　*/
@media screen and (min-width: 681px) and (max-width: 900px) {


/*
 TBは、pc.css　を読み込んでいます。打ち消したいスタイルを以下に。
*/


/*  ================================================================================================

    TB 打ち消しスタイル

    ============================================================================================  */


/* font-size フォントサイズ
-----------------------------------------------------*/
.contentsWrap>article{
	font-size: 14px;
	line-height: 1.6;
}

.contentsWrap h1,
.contentsWrap h2,
.contentsWrap h3,
.contentsWrap h4,
.contentsWrap h5,
.contentsWrap h6{
	line-height: 1.6;
}


/* layout　レイアウト
-----------------------------------------------------*/
.fitWidthA{
	width:-webkit-calc(100% - 36px) ; /* 18*2=36 */
	width: calc(100% - 36px) ;
  margin-left: auto!important;
  margin-right: auto!important;
}
.row-sm-nogutter .fitWidthA{
	width: 100%;
	margin-right: 0!important;
	margin-left: 0!important;
}


/* 見出し
-----------------------------------------------------*/
.contentsWrap .titleA{
	font-size: 24px;
}
.contentsWrap .titleB,
.en .contentsWrap .titleB{
	font-size: 20px;
  padding-top: 15px;
}
.contentsWrap .titleB span{
	font-size: 12px;
}
.contentsWrap .titleC{
	font-size: 18px;
}
.contentsWrap .titleC span{
	font-size: 12px;
}
.contentsWrap .titleD{
	font-size: 14px;
}
.contentsWrap .titleE{
	font-size: 14px;
}
.contentsWrap .titleF{
	font-size: 14px;
}
.contentsWrap .titleG{
	font-size: 14px;
}
figcaption{
	font-size: 12px;
}



/**************************** technology トップ *******************************/


/* レーダーテクノロジー　　/technology/index.php
-----------------------------------------------------*/
/* PCスタイル打ち消し */
.techtop .listNum.displayFlex li {
	border-right: none;
}

/* 目次リスト */
.techtop .listNum.displayFlex{
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.techtop .listNum.displayFlex > li {
	-ms-flex: 1 1 48%;
	flex: 1 1 48%;
	max-width: 48%;
	border-bottom: 1px solid #CDCDCD;
	padding: 10px 0 10px 55px;
	background-position: left center;
}



/* 外部リンク画像つきリンク　/technology/index.php、/technology/radar/solution/index.php
-----------------------------------------------------*/
.linkList p{
	font-size: 14px;
}


}
/*　■■■■■■■■■■■■■■■　tb ここまで　■■■■■■■■■■■■■■■　*/





/*　■■■■■■■■■■■　追加ブレイクポイント ここから　■■■■■■■■■■　*/

@media screen and (min-width: 900px) and (max-width: 1160px) {

/* レーダーテクノロジー　　/technology/index.php
-----------------------------------------------------*/
/* 目次リスト　改行位置の調整 */
	.techtop .displayFlex .pointNone{
		display: none;
	}
	
}

/*　■■■■■■■■■■■　追加ブレイクポイント ここまで　■■■■■■■■■■■　*/





/*　■■■■■■■■■■■■■■■　print ここから　■■■■■■■■■■■■■■■　*/
@media print { 

/* 印刷時、背景を強制的に印刷させる（Chromeのみ有効）
---------------------------------------------------- */
body { 
 	-webkit-print-color-adjust: exact; 
} 


/* 印刷調整
---------------------------------------------------- */
body.jp{
	width: 1200px;
	margin: 0 auto;
}

/* floatがclearされる前にページをまたぐと、それ以降のページが正しく印刷出来なくなる 
---------------------------------------------------- */
body {
	overflow: visible!important;
}

}
/*　■■■■■■■■■■■■■■■　print ここまで　■■■■■■■■■■■■■■■　*/

