@charset "utf-8";
/* CSS Document */
html{ 
    background:#FFFFFF; 
} 
body {
	font-family: 'メイリオ','Arial','sans-serif';
	background: #FFF;
	margin: 0; /* 複数の異なるブラウザの初期設定値に対応するため、body エレメントのマージンと余白を 0 にすることをお勧めします */
	padding: 0;
	text-align: center; /* これにより、IE 5* ブラウザではコンテナが中央揃えになります。そして、テキストは、#container セレクタの初期設定である左揃えに設定されます */
	font-size:16px;
	line-height:180%;
	color:#444;
}

/* ~~ エレメント / タグセレクター ~~ */
ul, ol, dl { /* ブラウザー間の相違により、リストの余白とマージンをゼロにすることをお勧めします。一貫性を保つために、量をここで指定するか、リストに含まれるリスト項目 (LI、DT、DD) で指定できます。より詳細なセレクターを記述しない限り、ここで指定する内容が .nav リストにも適用されることに注意してください。 */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* 上マージンを削除すると、マージンを含む div からマージンがはみ出す場合があるという問題を回避できます。残った下マージンにより、後続のエレメントからは離されます。 */
	padding-right: 15px;
	padding-left: 15px; /* div 自体ではなく div 内でエレメントの両側に余白を追加すると、ボックスモデル計算が不要になります。代わりに、両側に余白を指定した div をネストして使用することもできます。 */
	font-family: 'メイリオ','Arial','sans-serif';
}
/*　リンク　*/
a img { /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
	border: none;
  webkit-transition: 0.2s; 
	-moz-transition: 0.2s; 
	-o-transition: 0.2s; 
	-ms-transition: 0.2s; 
	transition: 0.2s;
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}

a:hover img{
	opacity:0.80;
	filter: alpha(opacity=80);
	-ms-filter: "alpha(opacity=80)";
}
img{
	border:none;
	  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}
/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
	color: #000066;
	text-decoration:underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
	webkit-transition: 0.2s; 
	-moz-transition: 0.2s; 
	-o-transition: 0.2s; 
	-ms-transition: 0.2s; 
	transition: 0.2s;
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}

a:hover, a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
	text-decoration: underline;
	color:#E25355;
}

a:visited {
	color: #6E6C64;
	color:#333399;
	text-decoration: none;
}

li{
	list-style:none;
}
ol li{
	list-style:decimal outside;
	margin-left:25px;
}

/*　トピックパス（パンくずリスト）　*/
.topic{
	margin:0;
	padding:0;
	background:#FFFFFF;
	font-size:smaller;
	text-align:left;
}
.topic ol{
	margin:0 20px;
	padding:5px;
	line-height:100%;
}
.topic ol li{
	display:inline;
	list-style-type: none;
	color:#333;
	margin:0;
	padding:0;
}

.topic ol li a {
    /* aの背景画像に記号の画像を指定 */
    background-image:url(../../external.gif?link=http://www.sanmei-ele.co.jp/recruit/images/greetings/migi.gif);

    /* 右寄せ＆リピート無し */
    background-position: center right;
    background-repeat: no-repeat;
	padding:0;
    padding-right: 15px;
}

/* ~~ この固定幅コンテナが他のすべてのエレメントを囲みます。~~ */
.container:after{
	height:0;
	visibility:hidden;
	content:".";
	display:block;
	clear:both;
}
.container {
	font-family: 'メイリオ','Arial','sans-serif';
	clear:both;
	width: 980px;
	font-size:1.1em;
	line-height:180%;
	background:none;
	margin: 0px auto; /* 幅に加え、両側を自動値とすることで、レイアウトが中央に揃います。 */
	padding:10px 0;
	_height:1px;
	min-height:1px;
	/*\*//*/
	height:auto;
	overflow:hidden;
	/**/
}

.wrapper{
	margin:0px auto 0 auto;
	padding:0;
	
}
.content:after{
	height:0;
	visibility:hidden;
	content:".";
	display:block;
	clear:both;
}
.content{
	clear:both;
	font-family: 'メイリオ','Arial','sans-serif';
	font-size:1.1em;
	margin:30px auto;
	padding:0;
	width:980px;
	clear:both;
	_height:1px;
	min-height:1px;
	/*\*//*/
	height:auto;
	overflow:hidden;
	/**/
	background:#FFFFFF;
}

.img_border a{
	border:5px solid #CCC;
	padding:0;
	margin:0;
	border-radius: 7px;        /* CSS3草案 */  
	-webkit-border-radius: 7px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 7px;   /* Firefox用 */
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}

.img_border a:hover{
	border:5px solid #F5F5F5;
	padding:0;
	margin:0;
	border-radius: 7px;        /* CSS3草案 */  
	-webkit-border-radius: 7px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 7px;   /* Firefox用 */
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}

/*　ヘッダ　*/
#header {
	margin:0;
	padding: 0;
	border-bottom:1px solid #999;
	border-top:2px solid #039;
	background:#FFFFFF;
}
.head{
	width:980px;
	margin:10px auto 0 auto;
	text-align:left;
	padding: 0;
	height:80px;
	background:#FFFFFF;
}
.head img{
	vertical-align:middle;
}
.head h1 a:hover img {
	opacity:1;
	filter: alpha(opacity=100);
}
.head h1 {
	margin: 0; /* #header div の最後のエレメントのマージンを 0 に設定することにより、マージンの相殺（div 間の原因不明のスペース）が回避されます。div の周囲に境界線が適用されている場合は、境界線によってマージンの相殺が回避されるため、この操作は不要です */
	padding: 0; /* マージンの代わりに余白を使用して、エレメントを div の端に接触しない位置に維持することができます */
	padding-top:5px;
	vertical-align:middle;
	float:left;
}

.head ul{
	float: right;
	text-align:right;
	width:450px;
	margin:30px 0 10px 30px;
	padding:0;
}

.head li{
	float:right;
	margin:0px 0px 0 60px;
	padding:0;
	font-size:0.88em;
	color:#777;
	text-decoration:none;
	list-style:none;
}
.head li a{
	color:#777;
	text-decoration:none;
}
.head li a:hover{
	color:#999;
	color:#ff7878;
	text-decoration:underline;
}

.head_right{
	float:right;
	text-align:right;
}

/*　iframe　*/
iframe{
	border:none;
	padding-right:0;
	border-bottom:1px solid #CCC;
	border-left:1px solid #CCC;
}

/* TOPメイン　ラインナップ3段・2段 */
.lineup{
	float:left;
	margin:0 20px 30px 0;
	width:230px;
}
.lineup1{
	float:left;
	margin:0 16px 30px 0;
	width:150px;
}
.lineup1_right{
	float:right;
	margin:0 0px 30px 0;
	width:150px;
}

.lineup_right{
	float:right;
	margin:0 0 30px 0;
	width:230px;
}

.lineup2{
	float:left;
	margin:20px 20px 0 0;
	width:480px;

}
.lineup2_right{
	float:right;
	margin:20px 0 30px 0;
	width:480px;

}
.lineup3{
	float:left;
	width:320px;
}
.lineup3_right{
	float:right;
	width:320px;
}
.lineup_midashi2{
	float:left;
	width:480px;
	margin:0 20px 30px 0;
	border:0;
}
.lineup_midashi3{
	float:left;
	width:640px;
	margin-top:0;
	vertical-align:top;
}
.lineup_midashi4{
	float:left;
	width:320px;
	margin:0 20px 30px 0;
	border:0;
}
.lineup_midashi2right{
	float:right;
	width:480px;
}

.lineup_midashi3right{
	float:right;
	width:640px;
	margin-top:0;
	vertical-align:top;
}
.lineup4_right{
	float:right;
	margin:20px 0 30px 0;
	width:640px;

}

#linkArea,#linkAreaE{
position: relative;
width: 480px;
height: 240px;
border:0;
margin:0;
padding:0;
}
#linkArea a,#linkAreaE a{
display: block;
position: absolute;
top: -10px;
left: -10px;
width: 100%;
height: 100%;
border:0;
}
#linkArea a:hover {
	position: absolute;
	bottom: 0px;
	top:-10px;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	line-height:200%;
/*	background: rgba(0,0,0,.3);*/
	background:url(../../external.gif?link=http://www.sanmei-ele.co.jp/images/products/hovr.gif);
	opacity:0.25;
	filter: alpha(opacity=25);
	-webkit-transition: .3s;
	transition: .3s;
	color:#EBEBEB;
}

#linkAreaE a:hover {
	position: absolute;
	bottom: 0px;
	top:-10px;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	line-height:200%;
	background:url(../../external.gif?link=http://www.sanmei-ele.co.jp/images/english/hovr.gif);
	opacity:0.25;
	filter: alpha(opacity=25);
	-webkit-transition: .3s;
	transition: .3s;
	color:#EBEBEB;
}

#linkArea2,#linkAreaE2{
position: relative;
width: 365px;
height: 140px;
border:0;
margin:0;
padding:0;
}
#linkArea2 a,#linkAreaE2 a{
display: block;
position: absolute;
top: -10px;
left: -20px;
width: 100%;
height: 100%;
border:0;
}
#linkArea2 a:hover {
	position: absolute;
	bottom: 0px;
	top:-10px;
	left: -10px;
	z-index: 2;
	width: 100%;
	height: 100%;
	line-height:200%;
/*	background: rgba(0,0,0,.3);*/
	background:url(../../external.gif?link=http://www.sanmei-ele.co.jp/images/products/hovr.gif) ;
	opacity:0.25;
	filter: alpha(opacity=25);
	-webkit-transition: .3s;
	transition: .3s;
	color:#EBEBEB;
}
#linkAreaE2 a:hover {
	position: absolute;
	bottom: 0px;
	top:-10px;
	left: -10px;
	z-index: 2;
	width: 100%;
	height: 100%;
	line-height:200%;
	background:url(../../external.gif?link=http://www.sanmei-ele.co.jp/images/english/hovr.gif) ;
	opacity:0.25;
	filter: alpha(opacity=25);
	-webkit-transition: .3s;
	transition: .3s;
	color:#EBEBEB;
}

#linkArea3{
position: relative;
width: 480px;
height: 203px;
border:0;
margin:0;
padding:0;
}
#linkArea3 a{
display: block;
position: absolute;
top: 0px;
left: -20px;
width: 100%;
height: 100%;
border:0;
}
#linkArea3 a:hover {
	position: absolute;
	bottom: 0px;
	top:0px;
	left: 0px;
	z-index: 2;
	width: 100%;
	height: 100%;
	line-height:200%;
/*	background: rgba(0,0,0,.3);*/
	background:url(../../external.gif?link=http://www.sanmei-ele.co.jp/images/products/hovr.gif) ;
	opacity:0.3;
	filter: alpha(opacity=3);
	-webkit-transition: .3s;
	transition: .3s;
	color:#EBEBEB;
}

.infobox{
	display:block;
	clear:both;
	border:1px solid #CCC;
	background:#DDD;
	height:60px;
	width:230px;
	text-align:center;
	margin:10px auto;
	color:#444;
	padding:10px 5px;
	font-weight:bold;
	font-size:105%;
	line-height:120%;
/*	border-radius: 7px;        /* CSS3草案 */  
/*	-webkit-border-radius: 7px;    /* Safari,Google Chrome用 */  
/*	-moz-border-radius: 7px;   /* Firefox用 */
/*	behavior: url(../ie-css3.htc);
/*	behavior: url(../PIE.htc);*/
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 0px rgba(0, 0, 0, 0.1);
               -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 0px rgba(0, 0, 0, 0.1) ;
                    box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 0px rgba(0, 0, 0, 0.1) ;
			behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
}
infobox a{
	display:block;
	height:60px;
	width:230px;
}

.infobox a:hover{
	color:#FFFFFF;
	background:#ff7878;
	text-shadow: 2px 2px 1px #d3353a; 
}

.infobox2{
	display:block;
	border:3px solid #EEE;
	text-align:center;
	height:75px;
	width:238px;
	margin:10px auto;
	color: #000099;
	font-weight:bold;
	font-size:100%;
	border-radius: 4px;        /* CSS3草案 */  
	-webkit-border-radius: 4px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 4px;   /* Firefox用 */
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}
.infobox2 a{
	display:block;
	height:60px;
	width:228px;
	padding:15px 5px 0px 5px;
	color:#444;
	text-decoration:none;
	background:#F1F1F1;
	border-radius: 4px;        /* CSS3草案 */  
	-webkit-border-radius: 4px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 4px;   /* Firefox用 */
	text-decoration:none;
	line-height:140%;
	-webkit-box-shadow:1px 4px 1px rgba(0, 0, 0, 0.3), 0 0 0px rgba(0, 0, 0, 0.1) inset;
               -moz-box-shadow:0px 4px 1px rgba(0, 0, 0, 0.3), 0 0 0px rgba(0, 0, 0, 0.1) inset;
                    box-shadow:0px 4px 1px rgba(0, 0, 0, 0.3), 0 0 0px rgba(0, 0, 0, 0.1) inset;
			behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
}

.infobox2 a:hover{
	display:block;
	width:228px;
	color: #06F;
	color:#FFF;
	background:#F3F3F3;
	background:#ff7878;
	text-shadow: 1px 1px 1px #d3353a;
	border-radius: 4px;        /* CSS3草案 */  
	-webkit-border-radius: 4px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 4px;   /* Firefox用 */
	-webkit-box-shadow:none;
               -moz-box-shadow:none;
                    box-shadow:none;
			behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
			behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}

.infobox3{
	display:block;
	border:3px solid #FF7878;
	text-align:center;
	height:55px;
	width:288px;
	margin:20px auto;
	color: #F35563;
	font-size:100%;
}
.infobox3 a{
	display:block;
	height:40px;
	width:278px;
	padding:15px 5px 0px 5px;
	color:#444;
	text-decoration:none;
	background:#FFF;
	text-decoration:none;
	line-height:140%;
	-webkit-box-shadow:5px 5px 0px rgba(222, 56, 61, 0.9);
               -moz-box-shadow:5px 5px 0px rgba(222, 56, 61, 0.9);
                    box-shadow:5px 5px 0px rgba(222, 56, 61, 0.9);
			behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
			behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}

.infobox3 a:hover{
	display:block;
	width:278px;
	color: #06F;
	color:#FFF;
	background:#ff7878;
	text-shadow: 1px 1px 1px #d3353a;
	-webkit-box-shadow:none;
               -moz-box-shadow:none;
                    box-shadow:none;
			behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
}

.infobox4{
	display:block;
	border:2px solid #FF7878;
	text-align:center;
	height:50px;
	width:220px;
	margin:20px auto;
	color: #F35563;
	font-size:100%;
}
.infobox4 a{
	display:block;
	height:35px;
	width:210px;
	padding:15px 5px 0px 5px;
	color:#444;
	text-decoration:none;
	background:#FFF;
	text-decoration:none;
	line-height:140%;
	-webkit-box-shadow:4px 4px 0px rgba(222, 56, 61, 0.9);
               -moz-box-shadow:4px 4px 0px rgba(222, 56, 61, 0.9);
                    box-shadow:4px 4px 0px rgba(222, 56, 61, 0.9);
			behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
			behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}

.infobox4 a:hover{
	display:block;
	width:210px;
	color: #06F;
	color:#FFF;
	background:#ff7878;
	text-shadow: 1px 1px 1px #d3353a;
	-webkit-box-shadow:none;
               -moz-box-shadow:none;
                    box-shadow:none;
			behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
}



.border{
	display:block;
	border:1px solid #CCC;
	padding:14px;
	padding-right:11px;
	font-size:16px;
	line-height:200%;
	border-radius: 5px;        /* CSS3草案 */  
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 5px;   /* Firefox用 */
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}	

.gray_bg {
  margin: 18px 2px 18px 2px;
  padding: 2px 8px 2px 18px;
  line-height: 180%;
  letter-spacing: 1px;
  font-size: 13px;
  border: solid 1px #dddddd;
  background-color: #eeeeee;
}
.white_bg:after{
	height:0;
	visibility:hidden;
	content:".";
	display:block;
	clear:both;
}
.white_bg {
  margin: 18px 2px 18px 2px;
  padding: 10px 10px 10px 18px;
  line-height: 190%;
  letter-spacing: 1px;
  font-size: 14px;
  background-color: #FFF;
	/*\*//*/
	height:auto;
	overflow:hidden;
	/**/
	border-radius: 5px;        /* CSS3草案 */  
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 5px;   /* Firefox用 */
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
	opacity:0.90;
	filter: alpha(opacity=90);
}	

/*　共通事項　*/
.float_left{
	float:left;
	padding:0;
}
.float_right{
	float:right;
	padding:0;
}
.float_right2{
	float:right;
	width:720px;
	text-align:left;
	padding:0;
	margin:10px 0;
}

.margin_top10{
	margin-top:10px;
	margin-bottom:0;
}
.margin_top20{
	margin-top:20px;
	margin-bottom:0;
}

.margin_top30{
	margin-top:30px;
}
.margin_top50{
	margin-top:50px;
}

.margin_top0{
	margin-top:0;
}
.margin0{
	margin:0;
}

.margin5{
	margin:5px 0;
}

.margin_right10{
	margin-right:10px;
}
.margin_bottom{
	margin-bottom:30px;
}
.clear {
	clear:both;
}
.clear_both{
	clear:both;
	line-height:0;
	height:0;
	margin:0;
	padding:0;
}
.padding_bottom10{
	padding-bottom:10px;
}

.x-small{
	font-size:x-small;
}

.font12{
	font-size:12px;
}
.font14{
	font-size:14px;
	font-weight:bold;
}

.section {
	margin:20px 0px 20px 20px;
	text-align:left;
}
.section li{
	line-height:200%;
	list-style-image:url(../../external.gif?link=http://www.sanmei-ele.co.jp/images/li.gif);
	list-style-position:inside;
}

.right{
	text-align:right;
	margin:0px;
	font-size:x-small;
}

#list li{
	list-style-image::url(../../external.gif?link=http://www.sanmei-ele.co.jp/images/li.jpg);
	list-style-position:outside;
	margin-left:30px;
}
#list li a{
	list-style-image::url(../../external.gif?link=http://www.sanmei-ele.co.jp/images/li.jpg);
	list-style-position:outside;
	color:#006699;
}
#list li a:hover{
	color:#EC8602;
}

.point{
	padding:7px;
	border:1px solid #E0474B;
	margin:10px;
}

.larger{
	font-size:larger;
}
.xxlarge{
	font-size:xx-large;
	font-weight:bold;
}
.xxxlarge{
	font-size:36px;
	font-weight:bold;
	line-height:180%;
}
.line_height{
	line-height:100%;
}

/* メイン */
#wrapper:after{
	height:0;
	visibility:hidden;
	content:".";
	display:block;
	clear:both;
}

#wrapper {
	clear:both;
	width:980px;
	color:#333333;
	margin: 0px auto;
	padding:0;
	text-align:left;
	_height:1px;
	min-height:1px;
	/*\*//*/
	height:auto;
	overflow:hidden;
	/**/
}

.container a:hover img{
	opacity:0.75;
	filter: alpha(opacity=75);
}
.container a.stay img{
	opacity:1.00;
	filter: alpha(opacity=100);	
}

/* 左メイン */
#primary:after{
	height:0;
	visibility:hidden;
	content:".";
	display:block;
	clear:both;
}
#primary{
	width:730px;
	float:right;
	margin:0px auto;
	padding:0;
	background:none;
	text-align:left;
	line-height:200%;
	_height:1px;
	min-height:1px;
	/*\*//*/
	height:auto;
	overflow:hidden;
	/**/
}
#main:after{
	height:0;
	visibility:hidden;
	content:".";
	display:block;
	clear:both;
}
#main{
	width:730px;
	float:left;
	margin:0px auto;
	padding:0;
	background:none;
	text-align:left;
	line-height:200%;
	_height:1px;
	min-height:1px;
	/*\*//*/
	height:auto;
	overflow:hidden;
	/**/
}

/* 右サブメイン */
#container{
	text-align:center;
	margin:5px;
	height:180px;
}
#secondary{
	width:230px;
	float:left;
	padding:0;
}

#secondary a img{
	display:block;
	margin-bottom:15px;
}

#sub{
	width:225px;
	float:right;
	padding:0;
}

#sub img{
	display:block;
	margin-bottom:5px;
}

.cal_box{
	width:300px;
	text-align:center;
	background:#C00;
	margin:5px 0 10px 0;
	padding:7px auto;
	border-radius: 7px;        /* CSS3草案 */  
	-webkit-border-radius: 7px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 7px;   /* Firefox用 */
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}
.mov_box{
	width:300px;
	text-align:center;
	background:#C00;
	margin:5px 0 10px 0;
	padding:7px auto;
	border-radius: 7px;        /* CSS3草案 */  
	-webkit-border-radius: 7px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 7px;   /* Firefox用 */
	height:190px;
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}

.mov_box img{
	margin:0 auto;
}

/*　サブメニュー　*/
#submenu{
	float:left;
	margin:0 0 10px 0;
	padding:2px 0 0 0;
	text-align:center;
}
#submenu ul {
	margin:0;
	padding:0;
	list-style:none;
}

#submenu li {
	margin:0;
	text-align:left;
	overflow:hidden;
	width:225px;
}

#menu {
	font-weight:bold;
	font-size:95%;
	color:#FF6600;
	overflow:hidden;
	text-align:left;
	border-bottom:1px dotted #CCCCCC;
}
#menu a{
	display:block;
	padding:12px 0 12px 12px;
	color:#C00;
	background: none;
	text-decoration:none;
}
#menu a:hover{
	color:#666;
}
#menu2 a{
	display:block;
	width:287px !important;
	width/**/: 297px;
	margin:0;
	padding:12px 0px 12px 15px;
	height:20px;
	font-size:95%;
	font-weight:bold;
	color:#333;
	text-decoration:none;
	list-style:none;
	border-bottom:1px solid #CCCCCC;
}

#menu2 a:hover {
	color:#C00;
	background: none;
}
#menu3 a{
	display:block;
	width:215px !important;
	width/**/: 225px;
	margin:0;
/*	padding:12px 0px 12px 20px;*/
	padding:12px 0px 12px 10px;
	height:20px;
	font-size:95%;
	color:#444;
	text-decoration:none;
/*	background: url(../images/li.gif) left center no-repeat;*/
	list-style:none;
	border-bottom:1px dotted #999;
}

#menu3 a:hover {
	color: #039;
	color:#E25355;
	text-decoration:none;
/*	background: url(../images/li_blue.gif) left center no-repeat;*/
}

#menu3 a.active {
	color: #039;
	color:#E25355;
	text-decoration:none;
	font-weight:bold;
	background:#FBF0F0;
	background:#F1F1F1;
}

#menu4 a{
	display:block;
	width:185px !important;
	width/**/: 195px;
	margin:0px;
	padding:12px 0px 12px 30px;
	height:20px;
	font-size:95%;
	color:#888;
	text-decoration:none;
	list-style:none;
	border-bottom:1px dotted #999;
	font-size:96%;
}

#menu4 a:hover {
	color:#ff7878;
	text-decoration:none;
}

#menu4 a.active {
	color: #039;
	text-decoration:none;
	font-weight:bold;
}


/* 見出し */
h3{
	color:#333;
	border:1px solid #CCC;
	line-height:200%;
	margin:0;
	padding:7px;
	background-color:#F1F1F1;
	font-weight:normal;
	font-size:98%;
	text-align:center;
}
h3 a{
	display:block;
	padding:6px 7px 6px 7px;
	font-size:0.98em;
	text-decoration:none;
	font-weight:normal;
	border:1px solid #BBB;
	height:30px;
}
h3 a:hover{
	background: #ff7878;
	color:#FFF;	
	text-shadow: 1px 1px 1px #d3353a;
	text-decoration:none;
}
.content h1{
	clear:both;
	font-size:120%;
	color: #06C;
	text-align:left;
	margin:15px 0;
	padding:7px 0 7px 15px;
	border:1px solid #E4E4E4;
	border-bottom:3px solid #005AAB;
	background:#CCCCCC url(../../external.gif?link=http://www.sanmei-ele.co.jp/recruit/images/menu_bg.jpg) top repeat-x;
}
.content h2{
	clear:both;
	font-size:140%;
	font-weight:800;
	color: #FFF;
	margin:0 0 20px 0;
	padding:12px 0 12px 25px;
	text-align:left;
	height:26px;
	background:#F9F8F8;
		background: #ff7878;
	line-height:150%;
	text-shadow: 2px 2px 1px #d3353a;
	position:relative;
}
.content h2:before {
    content:"";
    position:absolute;
    top:0;
	right:0;
    border-width:0 20px 20px 0; /* This trick side-steps a webkit bug */
    border-style:solid;
    border-color:#fff #fff #E0474B #E0474B; /* A bit more verbose to work with .rounded too */
    background:#E25355; /* For Opera when also applying a border-radius */
    display:block; width:0; /* Only for Firefox 3.0 damage limitation */
/* Optional: shadow */
    -webkit-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
    -moz-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
    box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
}
.container h4{
	font-size:18px;
}
.content h4{
	font-size:110%;
	color:#444;
	margin:4px 0 30px 0;
	border-bottom:2px solid #E25355;
	border-bottom:2px solid #ff7878;
	background:none;
	padding:10px 0 10px 10px;
	text-align:left;
	height:18px;
	border-radius:0;
}
#primary h1{
	clear:both;
	font-size:150%;
	color: #06C;
	text-align:left;
	margin:0 0 20px 0;
	padding:20px 0 17px 20px;
	border:1px solid #E4E4E4;
	border-left:12px double #005AAB;
	border-bottom:1px solid #005AAB;
	background:#CCCCCC url(../../external.gif?link=http://www.sanmei-ele.co.jp/recruit/images/menu_bg.jpg) top repeat-x;	
}

#primary h2{
	clear:both;
	font-size:140%;
	font-weight:bold;
	color: #FFF;
	margin:0 0 20px 0;
	padding:12px 0 12px 25px;
	text-align:left;
	height:26px;
	background:#F9F8F8;
		background: #ff7878;
	line-height:150%;
/*	border:1px solid #CCC;
	border-radius: 5px;        /* CSS3草案 */  
/*	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
/*	-moz-border-radius: 5px;   /* Firefox用 */
/*	behavior: url(../ie-css3.htc);
	behavior: url(../PIE.htc);*/
	text-shadow: 2px 2px 1px #d3353a; 
}
#primary h2 a{
	display:block;
	text-decoration:underline;
	text-indent:15px;
}
#primary h3{
	clear:both;
	font-size:110%;
	font-weight:bold;
	color: #444;
	margin:0 0 20px 0;
	padding:12px 0 5px 15px;
	text-align:left;
	height:26px;
	background:#F9F8F8;
	border:1px solid #CCC;
	line-height:150%;
	border-radius: 5px;        /* CSS3草案 */  
	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 5px;   /* Firefox用 */
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
	text-shadow:none;
}
#primary h3 a{
	color:#333333;
	color:#003366;
	text-decoration:none;
}
#primary h3 a:hover{
	color:#004D99;
	text-decoration:none;
	text-shadow:none;
}

#primary h4{
	font-size:110%;
	color:#444;
	margin:40px 0 30px 0;
	border-bottom:2px solid #ff7878;
	background:none;
	padding:10px 0 10px 10px;
	text-align:left;
	height:18px;
	border-radius:0;
}

#secondary h2{
	clear:both;
	height:20px;
	vertical-align:central;
	background:#9CF;
	color:#06F;
	font-size:90%;
	margin:0 0 3px 0;
	padding:0;
	padding-top:3px;
	text-align:center;
	border-radius: 12px;
	-webkit-border-radius: 12px;	/* Safari,Google Chrome */
	-moz-border-radius: 12px; /* Firefox */
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);

}

#main h1{
	height:40px;
	color:#C36;
	font-size:130%;
	line-height:180%;
	padding-top:8px;
	border:none;
	border-bottom:2px solid #C36;
	padding-left:20px;
}

.text{
	float: right;
	font-size: 70%;
	font-weight: normal;
	margin:0px 5px 0 0;
	padding:0;
}
*:first-child+html .text{
	margin:-28px 3px 0 0;
}
*html body .text{
	margin:-28px 3px 0 0;
}
#main h2:before {
    content:"";
    position:absolute;
    top:0px;
	right:0px;
    border-width:0 18px 18px 0; /* This trick side-steps a webkit bug */
    border-style:solid;
    border-color:#fff #fff #CCC #CCC; /* A bit more verbose to work with .rounded too */
    background:#CCC; /* For Opera when also applying a border-radius */
    display:block; width:0; /* Only for Firefox 3.0 damage limitation */
/* Optional: shadow */
    -webkit-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
    -moz-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
    box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
}

#main h2{
	position:relative;
	clear:both;
	font-size:130%;
	font-family:"メイリオ", sans-serif;
	font-weight:bold;
	color: #E25355;
	color: #d3353a;
	color:#666;
	margin:0 0 20px 0;
	padding:12px 0 12px 20px;
	text-align:left;
	height:26px;
	background:#F1F1F1;
	border-bottom:2px solid #ff7878;
	line-height:150%;
	text-shadow: 2px 2px 1px #d3353a;
	text-shadow:none;
/*	-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px rgba(0, 0, 0, 0.1) inset;
               -moz-box-shadow:0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px rgba(0, 0, 0, 0.1) inset;
                    box-shadow:0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px rgba(0, 0, 0, 0.1) inset;
	-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px rgba(0, 0, 0, 0.1);
               -moz-box-shadow:0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px rgba(0, 0, 0, 0.1);
                    box-shadow:0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px rgba(0, 0, 0, 0.1);*/
}
#main h2 i{
	color: #E25355;
}
#main h2 i a:hover{
	text-decoration:underline;
}
/*
#main h2 a i{
	color: #666;
}
#main h2 a:hover i{
	color: #E25355;
}

#main h3{
	clear:both;
	font-size:110%;
	font-weight:bold;
	color: #444;
	margin:0 0 20px 0;
	padding:12px 0 5px 15px;
	text-align:left;
	height:26px;
	background:#F9F8F8;
	border:1px solid #CCC;
	line-height:150%;
	border-radius: 5px;        /* CSS3草案 */  
/*	-webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
/*	-moz-border-radius: 5px;   /* Firefox用 */
/*	behavior: url(../ie-css3.htc);
	behavior: url(../PIE.htc);
	text-shadow:none;
}
#main h3 a{
	color:#333333;
	color:#003366;
}
#main h3 a:hover{
	color:#004D99;
	text-decoration:none;
	text-shadow:none;
}
*/

#main h4{
	clear:both;
	font-size:110%;
	color:#555;
	margin:30px 0 30px 0;
	border-bottom:2px solid #E25355;
	border-bottom:2px solid #ff7878;
	padding:7px 2px 10px 10px;
	text-align:left;
	height:18px;
}

#main h5{
	clear:both;
	font-size:105%;
	color:#555;
	margin:0 0 0px 0;
	border-bottom:2px solid #FF7878;
/*	background:#F1F1F1;*/
	padding:0px 0 10px 17px;
	text-align:left;
	height:18px;
	font-family: 'メイリオ','Arial','sans-serif';
}
#sub h1:before {
    content:"";
    position:absolute;
    top:0;
	right:0;
    border-width:0 15px 15px 0; /* This trick side-steps a webkit bug */
    border-style:solid;
    border-color:#fff #fff #E0474B #E0474B; /* A bit more verbose to work with .rounded too */
    background:#E25355; /* For Opera when also applying a border-radius */
    display:block; width:0; /* Only for Firefox 3.0 damage limitation */
/* Optional: shadow */
    -webkit-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
    -moz-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
    box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
}

#sub h1{
	position:relative;
	clear:both;
	font-size:100%;
	margin:0 0 10px 0;
	padding:10px 0 3px 0px;
	*padding-top:0;/* IE7以下 */
	text-indent:18px;
	text-align:left;
	height:30px;
	background: #D0D0D0;
	background: #ff7878;
/*	border-radius: 5px;
	-webkit-border-radius: 5px;	/* Safari,Google Chrome */
/*	-moz-border-radius: 5px; /* Firefox */
/*	behavior: url(../ie-css3.htc);
	behavior: url(../PIE.htc);
	vertical-align:bottom;*/
	border:none;
}
html.ie8 #sub h1{ 
	padding-top:0;
} 
#sub h1 a{
	background:#D0D0D0;
	background: #ff7878;
	color:#444;
	color:#FFF;
	display:block;
	margin:0;
	padding:0;
	*padding-top:10px;/* IE7以下 */
	text-align:left;
	height:30px;
	*height:40px;/* IE7以下 */	
	vertical-align:central;
	text-shadow: 2px 2px 1px #d3353a;
}

html.ie8 #sub h1 a{ 
 height:32px; /* IE8 */ 
	padding-top:7px;
	vertical-align:bottom;
} 

#sub h2{
	clear:both;
	height:20px;
	vertical-align:central;
	background:#C00;
	color:#fff;
	font-size:90%;
	margin:0 0 3px 0;
	padding:0;
	padding-top:3px;
	text-align:center;
	border-radius: 12px;
	-webkit-border-radius: 12px;	/* Safari,Google Chrome */
	-moz-border-radius: 12px; /* Firefox */
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}

h5{
	font-size:180%;
	border-bottom:1px solid #CCCCCC;
	color:#141414;
	padding:0 0 0 10px;
/*	border-left:7px solid #999999;*/
	height:30px;
	margin:15px 0;
}	
h6{
	clear:both;
	font-size:110%;
	color: #FF6600;
	border-left:6px solid #FF6600;
	padding:5px;
}

/*個人情報*/

ol.privacy{
    margin:1em 0;
	padding:0 0 0 25px;
	list-style:decimal outside none;
}

ol.privacy li{
	line-height:150%;
	margin:1em;
	padding:0 0 0 15px;
	list-style:lower-roman outside none;
}
ol.privacy2{
    margin:1em 0;
	padding:0 0 0 15px;
	list-style:decimal outside none;
}
ol.privacy2 li{
	line-height:150%;
	margin:10px;
	padding:0;
	list-style:decimal outside none;
}

/*　先輩ページ　*/

#senpai{
	clear:both;
	width:892px;
	width:100%;
	background-color:#CC0000;
	min-height:1px;
	padding:4px 0;
	margin:0px auto;
	text-align:center;
}
.senpai{
	margin:0 auto;
	text-align:center;
	width:892px;
}

.senpai_p{
	float:left;
	margin-right:4px;
}

.senpai_right{
	float:left;
	margin:0;
}
.margin_minus{
	margin-top:-10px;
}
        /* Shared styles */
        
        .drop-shadow {
            position:relative; 
            -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
               -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
                    box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
			behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
        }

        .drop-shadow:before,
        .drop-shadow:after {
            content:"";
            position:absolute; 
            z-index:-2;
        }
        
/*        .drop-shadow p {
            font-size:16px;
            font-weight:bold;
        }*/


        /* Raised shadow - no pseudo-elements needed */
        
        .raised {
            -webkit-box-shadow: 0 12px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
               -moz-box-shadow: 0 12px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
                    box-shadow: 0 12px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
		behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/recruit/css/ie-css3.htc);
        }
		
        /* 2- Shared styles */
	 .drop-shadow2 a:link{
		 display:block;
		 width:220px;
		 zoom:1;
		 height:0 !important;
		height /**/:140px;
		padding-bottom:0; !important;
		padding /**/:1em 0 1.8em 0;
		margin:0;
		line-height:140%;
		text-decoration:none;
		background:#fff;
	 }        
        .drop-shadow2 {
			font:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
            position:relative;
            width:220px;
			text-align:center;
			padding:0;
			padding-top:10px; !important;   
            padding-top/**/:0.4em;
			padding-bottom :10px; !important;
			padding-bottom /**/:2.4em;
			margin:0;
			margin-top:6px;
			margin-bottom:3px;
			margin-left:2px;
            background:#fff;
			text-decoration:none;
            -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
               -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
                    box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
			behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
        }

        .drop-shadow2:before,
        .drop-shadow2:after {
            content:"";
            position:absolute; 
            z-index:-2;
        }
        
        .drop-shadow2 p {
            font-size:16px;
            font-weight:bold;
			margin:0;
			padding:0;
        }
 
        /* Rotated box */
        
        .rotated {
            -webkit-box-shadow:none;
               -moz-box-shadow:none;
                    box-shadow:none;
            -webkit-transform:rotate(-3deg);    
               -moz-transform:rotate(-3deg);   
                -ms-transform:rotate(-3deg);
                 -o-transform:rotate(-3deg);
                    transform:rotate(-3deg);
			-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
               -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
                    box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
			behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
        }
        
        .rotated > :first-child:before {
            content:"";
            position:absolute;
            z-index:-1;
            top:0;
            bottom:0;
            left:0;
            right:0;
            background:#fff;
            -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
               -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
                    box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
			behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
        }
/*　テーブル　*/
#profile{
	clear:both;
	border:1px solid #BBBBBB;
	border-collapse:collapse;
	margin:0px auto;
	width:630px;
	padding:0px;
	text-align:center;
}
#profile thead th{
	background: #EBC6C7;
	font-weight:bold;
	padding:10px;
	text-align:center;
	border:none;
	border-collapse:collapse;
	border-bottom:1px solid #999;
	border-right:1px solid #999;
	text-align:center;
	font-size:100%;
	vertical-align:top;
	color:#FFFFFF;
}
#profile th{
	width:150px;
	padding:10px;
	border:none;
	border-collapse:collapse;
	border-bottom:1px solid #F5F5F5;
	border-right:1px solid #F5F5F5;
	text-align:center;
	background: #EBC6C7;
	font-size:100%;
	vertical-align:top;
}
#profile td{
	min-width:100px;
	padding:10px;
	text-align:left;
	border-collapse:collapse;
	border:1px solid #BBB8B8;
	border-top:none;
}
#profile2{
	clear:both;
	border:1px solid #BBBBBB;
	border-collapse:collapse;
	margin:0px auto;
	width:720px;
	padding:0px;
	text-align:center;
	line-height:200%;
}
#profile2 thead th{
	background: #EBC6C7;
	font-weight:bold;
	padding:10px;
	text-align:center;
	border:none;
	border-collapse:collapse;
	border-bottom:1px solid #999;
	border-right:1px solid #999;
	text-align:center;
	font-size:110%;
	vertical-align:top;
	color:#444;
}
#profile2 th{
	width:150px;
	padding:10px;
	border:none;
	border-collapse:collapse;
	border-bottom:1px solid #F9F9F9;
	border-right:1px solid #F5F5F5;
	text-align:center;
	background:#E9D3D3;
	font-size:100%;
	vertical-align:top;
}
#profile2 td{
	min-width:200px;
	padding:10px;
	text-align:left;
	border-collapse:collapse;
	border:1px solid #BBB8B8;
	border-top:none;
}
		
#report{
	clear:both;
	border:1px solid #BBBBBB;
	border-collapse:collapse;
	margin:0px auto;
	width:630px;
	padding:0px;
	text-align:center;
}
#report thead th{
	background: #559CBB;
	font-weight:bold;
	padding:10px;
	text-align:center;
	border:none;
	border-collapse:collapse;
	border-bottom:1px solid #999;
	border-right:1px solid #999;
	text-align:center;
	font-size:100%;
	vertical-align:top;
	color:#FFFFFF;
}
#report th{
	padding:10px;
	border:none;
	border-collapse:collapse;
	border-bottom:1px solid #F5F5F5;
	border-right:1px solid #F5F5F5;
	text-align:center;
	background: #B7D5DD;
	font-size:100%;
	vertical-align:top;
}
#report td{
	min-width:100px;
	padding:10px;
	text-align:center;
	border-collapse:collapse;
	border:1px solid #BBB8B8;
	border-top:none;
}
		
#flow{
	width:800px;
	border-collapse:collapse;
	border:1px solid #BBBBBB;
	text-align:center;
	margin:50px auto;
	padding:0;
	font-size:16px;
	line-height:120%;
}
#flow thead th{
	padding:10px;
	border:none;
	border-collapse:collapse;
	border-bottom:1px solid #999;
	border-right:1px solid #F5F5F5;
	text-align:center;
	background: #559CBB;
	font-size:100%;
	vertical-align:top;
	color:#FFFFFF;
}
#flow thead td{
	padding:10px;
	border:none;
	border-collapse:collapse;
	border-bottom:1px solid #999;
	border-right:1px solid #999;
	text-align:center;
	background: #559CBB;
	font-size:100%;
	vertical-align:top;
	color:#FFFFFF;
}
#flow th{
	padding:10px;
	border:none;
	border-collapse:collapse;
	border-bottom:1px solid #F5F5F5;
	border-right:1px solid #F5F5F5;
	text-align:center;
	background: #B7D5DD;
	font-size:100%;
	vertical-align:top;
}
#flow td{
	min-width:150px;
	padding:10px;
	text-align:center;
	border-collapse:collapse;
	border:1px solid #BBB8B8;
	border-top:none;
}

#flow td h5{
	width:500px;
	font-size:110%;
	font-weight:bold;
	color:#CC0000;
	border-bottom:1px solid #CC0000;
	border-left:5px solid #CC0000;
	border-collapse:collapse;
	padding:3px 0 2px 10px;
	margin:0 0 10px 0;
	text-align:left;
}

#flow2{
	width:900px;
	border-collapse:collapse;
	border:1px solid #BBBBBB;
	text-align:center;
	margin:50px auto;
	padding:0;
	font-size:16px;
	line-height:120%;
}
#flow2 thead th{
	padding:10px 5px;
	border:none;
	border-collapse:collapse;
	border-bottom:1px solid #999;
	border-right:1px solid #F5F5F5;
	text-align:center;
	background: #559CBB;
	font-size:100%;
	vertical-align:top;
	color:#FFFFFF;
}
#flow2 thead td{
	padding:5px;
	border:none;
	border-collapse:collapse;
	border-bottom:1px solid #999;
	border-right:1px solid #999;
	text-align:center;
	background: #559CBB;
	font-size:100%;
	vertical-align:top;
	color:#FFFFFF;
}
#flow2 th{
	padding:10px;
	border:none;
	border-collapse:collapse;
	border-bottom:1px solid #F5F5F5;
	border-right:1px solid #F5F5F5;
	text-align:center;
	background: #B7D5DD;
	font-size:100%;
	vertical-align:top;
}
#flow2 td{
	min-width:30px;
	padding:10px 5px;
	text-align:center;
	border-collapse:collapse;
	border:1px solid #BBB8B8;
	border-top:none;
}

#flow3{
	width:980px;
	border-collapse:collapse;
	border:1px solid #BBBBBB;
	text-align:center;
	margin:50px auto;
	padding:0;
	font-size:16px;
	line-height:120%;
}
#flow3 thead th{
	padding:12px 5px;
	border:none;
	border-collapse:collapse;
	border-bottom:1px solid #F5F5F5;
	border-right:1px solid #F5F5F5;
	text-align:center;
	background: #559CBB;
	font-size:100%;
	font-weight:normal;
	vertical-align:central;
	color:#FFFFFF;
}
#flow3 thead td{
	padding:5px;
	border:none;
	border-collapse:collapse;
	border-bottom:1px solid #999;
	border-right:1px solid #999;
	text-align:center;
	background: #559CBB;
	font-size:100%;
	vertical-align:top;
	color:#FFFFFF;
}
#flow3 tbody th{
	padding:10px 6px;
	border:none;
	border-collapse:collapse;
	border-bottom:1px solid #F5F5F5;
	border-right:1px solid #F5F5F5;
	text-align:center;
	background: #B7D5DD;
	font-size:100%;
	vertical-align:central;
	font-weight:400;
	color:#111;
}
#flow3 tbody td{
	padding:10px 5px;
	text-align:center;
	border-collapse:collapse;
	border:1px solid #BBB8B8;
	border-top:none;
}


#smalltable{
	width:350px;
	border-collapse:collapse;
	border:1px solid #BBBBBB;
	text-align:center;
	margin:50px auto;
	padding:0;
}
#smalltable thead th{
	padding:10px;
	border:none;
	border-collapse:collapse;
	border-bottom:1px solid #999;
	border-right:1px solid #999;
	text-align:center;
	background: #9FC7D8;
	font-size:100%;
	vertical-align:top;
}
#smalltable th{
	width:80px;
	padding:10px;
	border:none;
	border-collapse:collapse;
	border-bottom:1px solid #F5F5F5;
	border-right:1px solid #F5F5F5;
	text-align:center;
	background: #B7D5DD;
	font-size:100%;
	vertical-align:top;
}
#smalltable td{
	min-width:30px;
	padding:10px 5px;
	text-align:center;
	border-collapse:collapse;
	border:1px solid #BBB8B8;
	border-top:none;
}



.flash {
	clear:both;
	margin-top:0px;
	margin-bottom:10px;
	margin:0 auto;
}

.flash a:hover img {
	opacity:1;
	filter: alpha(opacity=100);
}
.flash2 {
	clear:both;
	width:980px;
	margin:0 auto;
	padding:0;
}
.flash2 a:hover img {
	opacity:0.10;
	filter: alpha(opacity=10);
}
.flash2 h1{
	background:none;
	font-size:36px;
	text-align:left;
	line-height:200%;
	padding:16px 0 8px 25px;
	border-left:8px double #DE383D;
	height:68px;
}
.flash2 h1 span{
	font-size:14px;
	font-family:'メイリオ', Verdana, Geneva, sans-serif;
	font-style:italic;
	color:#777;
}
.flash_bg {
	margin-top:0px;
	margin:0 auto;
	padding:0;
	background:url(../../external.gif?link=http://www.sanmei-ele.co.jp/recruit/images/project/top_over.jpg) no-repeat;
}
.flashbox{
/*	border:5px solid #E25355;*/
	padding:16px 0;
}
.recruit_top{
	margin:0;
	padding:0;
}
.recruit_bg{
	margin-top:10px;
	padding:10px 0;
	background: #FFF url(../../external.gif?link=http://www.sanmei-ele.co.jp/recruit/images/bg.jpg) repeat-x center top;
	width: 100%;
	left: 0;
	/*背景画像を画面いっぱいにする*/
	-webkit-background-size: cover;
    -moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.recruit_bg2{
	margin:20px 0 0;
	padding:0;
	width: 100%;
	height:auto;
	left: 0;
/*	background: #8A8A8A url(../images/bg.jpg) repeat-x;*/
	background: #DADADA;
/*	background: -moz-linear-gradient(top center, #AAAAAA 0%, #888888 100%);  /* Firefox */ 
/*	background: -webkit-gradient(linear, center top, center bottom, from(#AAAAAA), to(#888888));  /* Chrom と Safari */ 
/*	background: linear-gradient(top center, #AAAAAA 0%, #888888 100%);  /* 共通 */
	/* IE5.5-7 */  
/*	filter: progid:  
	DXImageTransform.Microsoft.gradient(  
	startColorstr='#AAAAAA', endColorstr='#888888', GradientType=0);
 
	/* IE8-9 */  
/*	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#AAAAAA', endColorstr='#888888', GradientType=0)";
 
	/* IE10 */  
/*	background: -ms-linear-gradient(to bottom,  #AAAAAA,  #888888);
  
	behavior: url(../ie-css3.htc);*/
}

.bg{
	background:#DFEEFA url(../../external.gif?link=http://www.sanmei-ele.co.jp/recruit/images/bg2.jpg) no-repeat center center;
	margin:0;
	padding:0;
}

.bg_white{
	background-color:#FFFFFF;
	opacity:0.90;
	filter: alpha(opacity=90);
}

.greetings{
	line-height:240%;
	font-size:105%;
	color:#444;
}
.jinji{
	padding:10px 20px 10px 20px;
	margin:20px;
	border:1px dotted #CCCCCC;
	margin:0 0 15px 0;
	line-height:140%;
}
.jinji1{
	border-left:8px solid #FF9900;
	border-bottom:1px solid #FF9900;
	padding:10px;
	margin:0 0 15px 0;
	line-height:130%;
}

.phot_right{
	float:right;
	clear:none;
	padding:3px;
	margin:0 0 0 20px;
	border:1px solid #CCCCCC;
	border-bottom:2px solid #CCCCCC;
	border-right:2px solid #CCCCCC;
}
.jinji_left{
	clear:left;
	float:left;
	border:2px solid #CCCCCC;
	padding:10px;
	margin:0 10px 15px 0;
	width:265px;	
}
.jinji_right{
	float:right;
	border:2px solid #CCCCCC;
	border-bottom:3px solid #CCCCCC;
	border-right:3px solid #CCCCCC;
	padding:10px;
	margin:0 0 15px 0;
	width:265px;	
}

.special{
	border:5px solid #CCCCCC;
	padding:10px;
	margin:10px 0;
	height:auto;
}
#schedule{
	width:560px;
	padding:0px;
	_height:1px; 　/*ここから追加*/
	min-height:1px;
	/*\*//*/
	height:auto;
	overflow:hidden;
	/**/
}
* html #schedule li a{
 height: 1%;
}
#schedule:after{
	height:0;
	visibility:hidden;
	content:".";
	display:block;
	clear:both;
}
#schedule ul{
	margin:0;
	padding:0;
	list-style:none;
	vertical-align:bottom;
}
#schedule li {
	display:inline;
	float:left;
	margin:0;
	margin-right:1px;
	padding:0;
	width:111px;
	list-style-type:none;
	/*height:45px;*/
	vertical-align:bottom;
	text-align:center;
}

#schedule li img{
	display: inline;
	vertical-align:bottom;
}
#schedule li a{
	display:block;
	overflow:hidden;
	width:100%;
	zoom:1;
	line-height:0;
	font-size:0;
	vertical-align:bottom;
}
#schedule li a:hover img{
	opacity:0.75;
	filter: alpha(opacity=75);
}

#schedule td{
	border:1px dotted #999999;
	padding:10px;
	border-collapse:collapse;
}

.photo{
	float:left;
	margin:0px 10px 10px 0;
	width:355px;
}
.p_right{
	float:right;
	margin:0px 0 10px 0px;
	width:355px;
}
.midashi{
	float:left;
	clear:right;
	width:220px;
}
.midashi ul{
	margin:10px 0 10px  10px;
}
.midashi ul li{
	list-style:url(../../external.gif?link=http://www.sanmei-ele.co.jp/images/li.gif) inside;
}

.midashi2{
	float:left;
	clear:right;
	width:355px;
}
.midashi2 ul{
	margin:10px 0 10px 25px;
	line-height:240%;
}
.midashi2 ul li{
	list-style:url(../../external.gif?link=http://www.sanmei-ele.co.jp/images/li.gif) inside;
}

.setsumei{
	font-size:0.95em;
	padding:15px 0 0 5px;
	line-height:150%;
}
.oomidashi{
	font-size:110%;
	font-weight:bold;
	padding:0;
	margin:0;
	text-indent:12px;
	background:url(../../external.gif?link=http://www.sanmei-ele.co.jp/images/li.gif) left center no-repeat;
}
.p_title {
	display:block;
	width:345px;
	padding:10px 5px;
	font-weight:normal;
	background-color:#DFDFDF;
	text-align:center;
	font-size:90%;
	line-height:170%;
}
.p_title2 {
	display:block;
	width:290px;
	padding:5px 5px;
	font-weight:normal;
	background-color:#DFDFDF;
	text-align:center;
	font-size:90%;
	line-height:170%;
}

.center_box{
	margin:10px auto;
	width:700px;
	text-align:left;
	line-height:200%;
}

/* テーブル */

#message {
	width:auto;
	border-collapse:collapse;
	border:1px solid #CCCCCC;
	text-align:left;
	font-size:small;
}
#message th {
	padding:8px;
	border-collapse:collapse;
	border:0;
}
#message td {
	padding:8px;
	border-collapse:collapse;
	border:0;
}
.message {
	background-color:#F0F4FF;
	font-size:110%;
}
.photo_a{
	float:left;
	clear:left;
	margin-right:20px;
	border:2px solid #D6D6D6;
	padding:2px;
	border-radius: 4px;        /* CSS3草案 */  
	-webkit-border-radius: 4px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 4px;   /* Firefox用 */
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}
.photo_a img{
	border-radius: 4px;        /* CSS3草案 */  
	-webkit-border-radius: 4px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 4px;   /* Firefox用 */
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}

.leftmessage{
	float:left;
	text-align:left;
	width:450px;
	line-height:200%;
}
.rightmessage{
	float:right;
	text-align:left;
	width:520px;
	line-height:200%;
}
.aki{
	margin-top:20px;
}

.title{
	text-align:center;
	background-color:#FFF0E1;
}
div .float2:after{
	height:0;
	visibility:hidden;
	content:".";
	display:block;
	clear:both;
}

div .float2{
	clear:both;
	margin:10px 0;
	_height:1px; 　/*ここから追加*/
	min-height:1px;
	/*\*//*/
	height:auto;
	overflow:hidden;
	/**/
}
#kansou{
	width:590px;
	border:1px solid #CCCCCC;
	border-collapse:collapse;
	margin:10px 0;
}
#kansou td{
	padding:7px;
	text-align:left;
	border-bottom:1px dotted #CCCCCC;
	background-color:#FFFFE8;
}
#qa{
	margin-top:20px;
	width:590px;
	border:1px solid #CCCCCC;
	border-collapse:collapse;
	background-color:#FFFFFF;
}
#qa td{
	border-bottom:1px dotted #CCCCCC;
	padding:7px;
	border-collapse:collapse;
	vertical-align:top;
}
#qa th{
	border-bottom:1px dotted #CCCCCC;
	padding:7px;
	border-collapse:collapse;
	font-weight:bold;
	font-size:120%;
	background-color:#FFF9EC;
	text-align:left;
}

#ui{
	border:none;
	width:730px;
	margin:10px 0 30px 0;
}
#ui th{
	width:300px;
	padding:10px 10px 10px 0;
	text-align:left;
	vertical-align:top;
	font-weight:normal;
}
#ui td{
	width:400px;
	padding:10px 0 10px 0;
	text-align:left;
	vertical-align:top;
}
#inside{
	border:none;
	margin:0;
	width:400px;
}
#inside th{
	border:none;
	margin:0;
	padding:0 5px 0 0;
	width:80px;
}
#inside td{
	border:none;
	margin:0;
	padding:5px 0;
	width:auto;
	line-height:120%;
	text-align:left;
}

#staff{
	border:1px solid #999999;
	border-collapse:collapse;
	width:720px;
	margin:10px 0;
}
#staff th{
	border:1px solid #CCCCCC;
	border-collapse:collapse;
	padding:5px;
	vertical-align:top;
	color:#CC0000;
	font-size:120%;
	text-align:center;
}
#staff td{
	border:1px solid #CCCCCC;
	border-collapse:collapse;
	padding:2px;
	line-height:190%;
	font-size:95%;
	text-align:left;
	width:305px;
	vertical-align:top;
}
.staff-photo{
	margin:0px 10px 0px 0px;
	padding:0 2px 2px 0;
	border-bottom:2px solid #CCCCCC;
	border-right:2px solid #CCCCCC;
	float:left;
}

.staff{
	float:left;
	width:154px;
	color:#333;
	font-size:90%;
	margin:7px 0 5px 0;
	padding:5px;
	text-align:left;
	line-height:130%;
	vertical-align:central;
	border:1px solid #CCC;
	border-bottom:3px solid #CCC;
	border-right:2px solid #CCC;
	border-radius: 7px;
	-webkit-border-radius: 7px;	/* Safari,Google Chrome */
	-moz-border-radius: 7px; /* Firefox */
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}
.staff1{
	float:left;
	width:auto;
	color:#333;
	font-size:90%;
	margin:7px 5px 5px 0px;
	padding:5px;
	text-align:left;
	vertical-align:central;
	line-height:130%;
	border:1px solid #CCC;
	border-bottom:3px solid #CCC;
	border-right:2px solid #CCC;
	border-radius: 7px;
	-webkit-border-radius: 7px;	/* Safari,Google Chrome */
	-moz-border-radius: 7px; /* Firefox */
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
	behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}

#network{
	border:1px solid #CCCCCC;
	border-collapse:collapse;
	width:620px;
	margin:10px;
	padding:10px;
}
#network td{
	border:1px solid #CCCCCC;
	border-collapse:collapse;
	padding:10px;
}



/* 共通設定追加 */	
.center{
	text-align:center;
}

.moji_color{
	color:#DE383D;
}
.moji_color2{
	color:#003399;
}
.margin-my{
	margin:0 0 20px 20px;
}
.padding30{
	padding:30px;
}
.left:after{
	height:0;
	visibility:hidden;
	content:".";
	display:block;
	clear:both;
}
.left{
	float:left;
	width:278px;
	padding:0px 10px 2px 2px;
	line-height:130%;
	margin-top:0;
	_height:1px; 　/*ここから追加*/
	min-height:1px;
	/*\*//*/
	height:auto;
	overflow:hidden;
	/**/
}
.rightbox:after{
	height:0;
	visibility:hidden;
	content:".";
	display:block;
	clear:both;
}
.rightbox{
	float:right;
	text-align:left;
	width:281px;
	padding:0px 2px 2px 2px;
	border-left:1px dotted #CCCCCC;
	line-height:130%;
	margin-top:0;
	_height:1px; 　/*ここから追加*/
	min-height:1px;
	/*\*//*/
	height:auto;
	overflow:hidden;
	/**/
}
.left2{
	float:left;
	width:145px;
	padding:3px 5px 3px 5px;
	border:1px dotted #FF9900;
}
.left2 a{
	text-decoration:none;
}
.right2{
	float:right;
	width:145px;
	padding:3px 0px 3px 5px;
	border:1px dotted #FF9900;
	margin-top:0;
}
.right2 a{
	text-decoration:none;
}


/* グローバルメニュー6 */
#global{
	clear:both;
	border-bottom:3px solid #039;
	background:#F7F7F7 url(../../external.gif?link=http://www.sanmei-ele.co.jp/images/menu.jpg) repeat-x;
	margin:0;
	*margin-top:20px;/* IE7以下 */
	padding:0;
	width:100%;
}
#globalmenu{
	clear:both;
	margin:0px auto;
	padding:0px;
	height:48px;
	width:980px;
	list-style-type:none;
	border-top:1px solid #F6F6F6;
}

#globalmenu ul{
	margin:0;
	padding:0;
}

#globalmenu ul li{
	float:left;
	width:163px;
	list-style-type:none;
	margin:0;
	padding:0;
}

#globalmenu ul li a{
	display:block;
	overflow:hidden;
	width:100%;
	height:0 !important;
	height /**/:26px;
	margin:0;
	padding:0;
	padding-top:48px;
	background:#039 url(../../external.gif?link=http://www.sanmei-ele.co.jp/images/global.jpg) no-repeat;
	color:#FFFFFF;
	text-align:center;
	list-style-type:none;
}


/* オフマウス時6 */

#menu01 a:link { background-position:  0     0; }
#menu02 a:link { background-position: -163px 0; }
#menu03 a:link { background-position: -326px 0; }
#menu04 a:link { background-position: -489px 0; }
#menu05 a:link { background-position: -652px 0; }
#menu06 a:link { background-position: -815px 0; }

#menu01 a.link { background-position:  0     0; }
#menu02 a.link { background-position: -163px 0; }
#menu03 a.link { background-position: -326px 0; }
#menu04 a.link { background-position: -489px 0; }
#menu05 a.link { background-position: -652px 0; }
#menu06 a.link { background-position: -815px 0; }

/* オンマウス時6 */
#menu01 a:hover { background-position:  0     -48px; }
#menu02 a:hover { background-position: -163px -48px; }
#menu03 a:hover { background-position: -326px -48px; }
#menu04 a:hover { background-position: -489px -48px; }
#menu05 a:hover { background-position: -652px -48px; }
#menu06 a:hover { background-position: -815px -48px; }


/* 選択済み6*/ 
#menu01 a.active { background-position:  0     -48px; }
#menu02 a.active { background-position: -163px -48px; }
#menu03 a.active { background-position: -326px -48px; }
#menu04 a.active { background-position: -489px -48px; }
#menu05 a.active { background-position: -652px -48px; }
#menu06 a.active { background-position: -815px -48px; }



/*　フッタ　*/

#footer {
	clear:both;
	margin:0;
	padding: 0;
	background:none;
	height:100%;
	border-top:4px solid #444;
	background-color: #333;
}
.footer{
	width:980px;
	margin:0 auto;
	padding:15px 0;
	font-style:normal;
	text-align:center;
}

address{
	font-style:normal;
	text-align:left;
	line-height:240%;
	color: #EBEBEB;
}
address a{
	color: #ff7878;
}
.oomoji{
	font-size:110%;
	font-weight:bold;
}
.oomoji2{
	font-size:110%;
	font-weight:normal;
}
.black{
	color:#333333;
}

#footerSiteMapArea{
	margin:0 auto 10px auto;
	padding:20px 0 20px 0;
	border-top:3px solid #D7D7D7;
	border-bottom:1px solid #999;
	background-color:#EEE;
}

#footerSiteMap{
	border:none;
	margin:0px auto;
	padding:0;
	width:980px;
	font-size:0.88em;
	border:none;
}

#footerSiteMap a{
	color:#333;
	text-decoration:none;
}

#footerSiteMap th{
	border:none;
	margin:0;
	padding:0 8px;
	text-align:left;
	line-height:190%;
	border-left:4px solid #E25355;
}
#footerSiteMap th a{
	display:block;
}
#footerSiteMap th a:hover{
	color:#DE383D;
}

#footerSiteMap td{
	border:none;
	margin:0;
	padding:3px 5px;
	text-align:left;
}

#footerSiteMap ul{
	border:0;
	margin:0;
	padding:0;
}
#footerSiteMap ul li{
	border:0;
	margin:0;
	padding:0;
	color:#333;
	line-height:220%;
	list-style:url(../../external.gif?link=http://www.sanmei-ele.co.jp/images/li.gif) inside;
}

#footerSiteMap ul li a{
	text-decoration:none;
	color:#333;
}

#footerSiteMap ul li a:hover{
	text-decoration:underline;
	color:#DE383D;
}


#footerArea{
	clear:both;
	margin:10px auto;
	padding:0;
	text-align:center;
	width:350px;
	height:22px;
}

#footerMenu ul{
	margin:0 auto;
	padding:0;
	text-align:center;
}
#footerMenu li{
	float:left;
	margin:0 0 0 18px;
	padding:0;
}

#pageup{
	clear:both;
	width:980px;
	margin:0 auto;
	padding:20px 0 0;
	text-align:right;
}

/* page-top */
#page-top {
	position: fixed;
	bottom: 50px;
	right: 50px;
	font-size: 77%;
}
#page-top a {
	background:#333;
	text-decoration: none;
	color: #fff;
	width: 80px;
	padding: 15px 0;
	text-align: center;
	display: block;
	border:1px solid #CCC;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	line-height:300%;
}
#page-top a:hover {
	text-decoration: none;
	background:#505050;
/*	background:#E25355;*/
}

/*===============================================
●smart.css  画面の横幅が640pxまでのページトップボタン設定
===============================================*/
@media screen and (max-width:640px){
#page-top {
	position: fixed;
	bottom: 10px;
	right: 0px;
	font-size: 77%;
}
#page-top a {
	width: auto;
	padding: 0 5px 8px 5px;
	line-height:100%;
	opacity:0.90;
	filter: alpha(opacity=90);
	-ms-filter: "alpha(opacity=90)";
}
#page-top a i {
	display:none;
}
}

.align_left{
	text-align:left;
}
.align_right{
	text-align:right;
}

/*　フォーム　*/
#form{
	width:550px;
	border:1px solid #999999;
	text-align:center;
	margin:0 auto;
/*	margin-left:65px;*/
}
#form th{
	width:30%;
	padding:7px;
	background-color:#EEEEEE;
	text-align:left;
}
#form td{
	width:80%;
	padding:7px;
	text-align:left;
	background-color:#FFFFFF;
}

#form2{
	width:550px;
	text-align:center;
	margin:0 auto;
}
#form2 th{
	padding:7px;
	background-color:#EEEEEE;
	text-align:left;
	margin:0;
}
#form2 td{
	padding:7px;
	text-align:left;
	margin:0;
}

dl.data2 {
	margin:0 auto;
	padding: 0;
	border: 1px solid #A7A7A7;
	border-top: none;
	background-color: #f5f5f5;
	width:628px;
	margin-bottom:30px;
}

dl.data2 dt {
	margin: 0;
	padding: 0.8em 0 0.8em 0.8em;
	border-top: 1px solid #A7A7A7;
	width: 10em;
	float: left;
	color: #333;
	font-weight:bold;
	line-height:140%;
}

dl.data2 dd:after {height: 0; visibility: hidden; content: "."; display: block; clear: both;}

dl.data2 dd {
	margin: 0 0 0 10em;
	padding: 0.8em 0.4em 0.8em 1em;
	border-left: 1px solid #A7A7A7;
	border-top: 1px solid #A7A7A7;
	background-color: #fff;
	text-align:left;
	line-height:140%;
	min-height:76px;
	height: auto !important;
	height:76px;
}


dl.data {
	margin:0 auto;
	padding: 0;
	border-bottom: 1px solid #D9D9D9;
	background-color: #f5f5f5;
	width:730px;
	margin-bottom:30px;
}

dl.data dt {
	margin: 0;
	padding: 1em 0em 0.6em 1.2em;
	border-top: 1px solid #D9D9D9;
	width: 13em;
	float: left;
	color: #333;
	font-weight:bold;
	line-height:140%;
}

dl.data dd:after {height: 0; visibility: hidden; content: "."; display: block; clear: both;}

dl.data dd {
	margin: 0 0 0 13em;
	padding: 1em 0.4em 0.8em 1.2em;
	border-left: 1px solid #D9D9D9;
	border-top: 1px solid #D9D9D9;
	background-color: #fff;
	text-align:left;
	line-height:180%;
}

.table_box2{
	width:800px;
	margin:20px auto;
}

td{
    border:0;
	padding:0;
}

.merit{
	width:70px;
	border:none;
}

.merit_txt{
	font-size:14px;
	line-height:140%;
	width:440px;
	color:#2A3FAA;
	text-align: left;
	padding-left:10px;
}

.merit_left{
	float: left;
	width: 360px;
	clear: left;
}

.merit_right{
	float: right;
	width: 360px;
	clear: right;
}	

hr{
	border:1px #D6D6D6 dashed;
	height:1px;
	background-color::#D6D6D6;
}


.photo_left{
	float:left;		
}

.content_box:after{
	height:0;
	visibility:hidden;
	content:".";
	display:block;
	clear:both;
}
		
.content_box{
	clear:both;
	padding:0px 20px;
	text-align:left;
	margin:0;
	_height:1px; 　/*ここから追加*/
	min-height:1px;
	/*\*//*/
	height:auto;
	overflow:hidden;
	/**/
}

.content_right{
	float:right;
	width:540px;
	text-align:left;
}

.content_left{
	float:left;
	width:210px
}

.jisseki{
	font-size:14px;
	line-height:150%;
	color: #2A3FAA;
}
	
.futoji {
	width: 500px;
	padding-bottom: 3px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #808080;
	font-size: 14px;
	font-weight: bold;
	line-height:250%

}
.clear{
	clear:both
}
　	
.event-photo{
	margin:10px 15px 15px 10px;
	padding:2px;
	border-top:1px solid #CCCCCC;
	border-left:1px solid #CCCCCC;
	border-bottom:2px solid #CCCCCC;
	border-right:2px solid #CCCCCC;
	float:left;
}
div .event-photo{
	float:left;
	margin:10px 15px 15px 15px;
	padding:5px;
	border-top:1px solid #CCCCCC;
	border-right:2px solid #CCCCCC;
	border-bottom:3px solid #CCCCCC;
	border-left:1px solid #CCCCCC;

}
div .img_right{
	float:right;
	margin:10px 15px 15px 0;
	border-top:1px solid #CCCCCC;
	border-right:2px solid #CCCCCC;
	border-bottom:3px solid #CCCCCC;
	border-left:1px solid #CCCCCC;
	padding:5px;
	width:auto;
}

#gaiyou{
	border:1px solid #ABABAB;
	width:730px;
	vertical-align:top;
	border-collapse:collapse;
	text-align:center;
	margin:10px auto;
}
#gaiyou th{
	background-color:#F5F5F5;
	border:1px solid #CCCCCC;
	font-size:100%;
	font-weight:bold;
	vertical-align:top;
	color:#333333;
	border-collapse:collapse;
	padding:8px;
	width:320px;
	text-align:left;
}
#gaiyou td{
	background-color:#FFFFFF;
	border:1px solid #CCCCCC;
	padding:4px;
	text-align:left;
	vertical-align:top;
	border-collapse:collapse;
	padding:8px;
}

/* 問い合わせ */

#otoiawase{
	width:720px;
	border:1px solid #808080;
	background-color:#808080;
	margin:10px auto;
}

#otoiawase tr{
	border:1px solid #FFFFFF;
	background-color:#FFFFFF;
	padding:4px;
}

#otoiawase td{
	border:1px solid #FFFFFF;
	padding:4px;
}

.shitumon{
	background-color:#F5F5F5;
	width:120px;
	text-align:center;
}
.download{
	margin:20px 0 6px 0}


#setumei ul{
	list-style-type:square;
	list-style-position:inside;
	margin:0;
	padding:0;
}

#setumei li{
	padding:0 0 5px 5px;
}

.demo-toggle{
padding:4px 0;
margin:0;
text-align:left;
position:absolute;
}

.colorbox{
	clear:both;
	margin:15px 0;
	text-align:left;
	width:715px;
	padding:3px 0 3px 13px;
	color:#555;
	font-size:100%;
	font-weight:bold;
	border:1px solid #EAEAEA;
	border-bottom:2px solid #D8D8D8;
	border-radius: 3px;
	-webkit-border-radius: 3px;	/* Safari,Google Chrome */
	-moz-border-radius: 3px; /* Firefox */

}
.colorbox1{
	background-color:#CFF;
	background: -moz-linear-gradient(top center, #CFF 0%, #00B7DE 100%);  /* Firefox */ 
	background: -webkit-gradient(linear, center top, center bottom, from(#CFF), to(#00B7DE));  /* Chrom と Safari */ 
	background: linear-gradient(top center, #CFF 0%, #00B7DE 100%);  /* 共通 */
	/* IE5.5-7 */  
	filter: progid:  
	DXImageTransform.Microsoft.gradient(  
	startColorstr='#CFF', endColorstr='#00B7DE', GradientType=0);
 
	/* IE8-9 */  
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#CFF', endColorstr='#00B7DE', GradientType=0)";
 
	/* IE10 */  
	background: -ms-linear-gradient(to bottom,  #CFF,  #00B7DE);
}
.colorbox2{
	background-color:#FC3;
	background: -moz-linear-gradient(top center, #FFE3C8 0%, #FC3 100%);  /* Firefox */ 
	background: -webkit-gradient(linear, center top, center bottom, from(#FFE3C8), to(#FC3));  /* Chrom と Safari */ 
	background: linear-gradient(top center, #FFE3C8 0%, #FC3 100%);  /* 共通 */
	/* IE5.5-7 */  
	filter: progid:  
	DXImageTransform.Microsoft.gradient(  
	startColorstr='#FFE3C8', endColorstr='#FC3', GradientType=0);
 
	/* IE8-9 */  
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFE3C8', endColorstr='#FC3', GradientType=0)";
 
	/* IE10 */  
	background: -ms-linear-gradient(to bottom, #FFE3C8,  #FC3);

}
.colorbox3{
	background-color:#FF9;
	background: -moz-linear-gradient(top center, #FFC 0%, #FF6 100%);  /* Firefox */ 
	background: -webkit-gradient(linear, center top, center bottom, from(#FFC), to(#FF6));  /* Chrom と Safari */ 
	background: linear-gradient(top center, #FFC 0%, #FF6 100%);  /* 共通 */
	/* IE5.5-7 */  
	filter: progid:  
	DXImageTransform.Microsoft.gradient(  
	startColorstr='#FFC', endColorstr='#FF6', GradientType=0);
 
	/* IE8-9 */  
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFC', endColorstr='#FF6', GradientType=0)";
 
	/* IE10 */  
	background: -ms-linear-gradient(to bottom, #FFC,  #FF6);
}


figure {
	position: relative;
	overflow: hidden;
	width: 230px;
	margin:0;
	padding:0;
	color:#EBEBEB;
}

figcaption {
	position: absolute;
	bottom: -60px;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 30px;
	line-height:200%;
	background: rgba(0,0,0,.6);
	-webkit-transition: .3s;
	transition: .3s;
	color:#EBEBEB;
}
figure:hover figcaption a {
	color:#EBEBEB;
}
figure:hover figcaption {
	bottom: 0;
}

/* Button */
/* General button style (reset) */
.btn {
	border: none;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background: none;
	cursor: pointer;
	padding: 25px 80px;
	display: inline-block;
	margin: 15px 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn:after {
	content: '';
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

/* Pseudo elements for icons */
.btn:before,
.icon-heart:after,
.icon-star:after,
.icon-plus:after,
.icon-file:before {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	position: relative;
	-webkit-font-smoothing: antialiased;
}
/* Button 3 */
.btn-3 {
	background: #fcad26;
	background:#CCC;
	color: #fff;
}

.btn-3:hover {
	background: #f29e0d;
	background:#ff7878;
}

.btn-3:active {
	background: #f58500;
	background:#E25355;
	top: 2px;
}

.btn-3:before {
	position: absolute;
	height: 100%;
	left: 0;
	top: 0;
	line-height: 3;
	font-size: 140%;
	width: 60px;
}
/* Button 3d */
.btn-3d {
	padding: 25px 60px 25px 120px;
	border-radius: 10px;
}

.btn-3d:before {
	background: #EEE;
	color: #fcad26;
	z-index: 2;
	border-radius: 10px 0 0 10px;
}

.btn-3d:after {
	width: 20px;
	height: 20px;
	background: #EEE;
	z-index: 1;
	left: 55px;
	top: 50%;
	margin: -10px 0 0 -10px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn-3d:active:before {
	color: #f58500;
}

.btn-3d:active {
	top: 0;
}

.btn-3d:active:after {
	left: 60px;
}

.icon-cog:before {
	content: "\f046";
}

/*ドッグイヤーBOX*/
.note {
    position:relative;
    width:480px;
    padding:1em 1.5em;
    margin:2em auto;
    color:#fff;
    background:#97C02F;
    overflow:hidden;
	line-height:180%;
}
 
.note:before {
    content:"";
    position:absolute;
    top:0;
    right:0;
    border-width:0 20px 20px 0; /* This trick side-steps a webkit bug */
    border-style:solid;
    border-color:#fff #fff #658E15 #658E15; /* A bit more verbose to work with .rounded too */
    background:#658E15; /* For Opera when also applying a border-radius */
    display:block; width:0; /* Only for Firefox 3.0 damage limitation */
/* Optional: shadow */
    -webkit-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
    -moz-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
    box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
}

.note.red {
	background:#C93213;
	background:#E25355;
}
.note.red:before {
	border-color:#fff #fff #97010A #97010A;
	border-color:#fff #fff #E0474B #E0474B;
	background:#97010A;
	background:#E0474B;
}
.note.red.t_shadow{
	text-shadow: 1px 1px #bd3034, 2px 2px #bd3034, 3px 3px #bd3034, 4px 4px #c83237, 5px 5px #d3353a, 6px 6px #de383d;
}

.note.blue {background:#53A3B4;}
.note.blue:before {border-color:#fff #fff transparent transparent; background:transparent;}

.note.rounded {
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
}
.note.rounded:before {
    border-width:8px; /* Triggers a 1px 'step' along the diagonal in Safari 5 (and Chrome 10) */
    border-color:#fff #fff transparent transparent; /* Avoids the 1px 'step' in webkit. Background colour shows through */
    -webkit-border-bottom-left-radius:5px;
    -moz-border-radius:0 0 0 5px;
    border-radius:0 0 0 5px;
}
.dogear {
	position : relative;
	padding : 20px;
	margin : 20px auto;
	width : 90%;
	text-align : center;
	background : #F1F1F1;
}
.dogear div:after {
	content : "";
	display : block;
	position : absolute;
	bottom : 0px;
	right  : 0px;
	width  : 0px;
	height : 0px;
	border-width : 5px 5px 5px 5px;
	border-style : solid;
	border-color : #888 #ffffff #ffffff #888;
}

/*** 簡単な飾り罫線みたいな囲い ***/
 
.box05 {
  margin: 20px auto 0;
  width: 700px;
  padding: 20px 0;
  border: 1px solid #888;
  border-width: 1px 0;
  position:relative;
  background: #fff;
  box-sizing: border-box;
  display: block;
}
 
.box05 div{
  position: relative;
  padding: 20px 40px;
  margin: 0 -20px;
  background: #fff;
  border: 1px solid #888;
  border-width: 0 1px;
  box-sizing: border-box;
}
.box05:before, .box05:after,
.box05 div:before, .box05 div:after {
  content:'';
  position: absolute;
  width: 80px;
  height: 80px;
  border: 20px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 0 0 0 1px #888;
  box-sizing: border-box;
}
 
.box05:before{
  top: -40px;
  left: -60px;
  clip: rect(40px, auto, auto, 40px);
  -webkit-clip-path: rectangle(50%, 50%, 100%, 100%, 0, 0); 
}
 
.box05:after{
  top: -40px;
  right: -59px;
  clip: rect(40px, 40px, auto, auto);
  -webkit-clip-path: rectangle(0, 50%, 50%, 100%, 0, 0);
}
 
.box05 div:before {
  bottom: -60px;
  left: -40px;
  clip: rect(auto, auto, 40px, 40px);
  -webkit-clip-path: rectangle(50%, 0, 100%, 50%, 0, 0);
}
 
.box05 div:after {
  bottom: -60px;
  right: -40px;
  clip: rect(auto, 40px, 40px, auto);
  -webkit-clip-path: rectangle(0, 0, 50%, 50%, 0, 0);
}

.policybox{
	border:2px solid #FF7878;
	-webkit-box-shadow:3px 3px 0px rgba(222, 56, 61, 0.9);
               -moz-box-shadow:3px 3px 0px rgba(222, 56, 61, 0.9);
                    box-shadow:3px 3px 0px rgba(222, 56, 61, 0.9);
			behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/ie-css3.htc);
			behavior: url(../../external.html?link=http://www.sanmei-ele.co.jp/PIE.htc);
}

.box_shadow{
	box-shadow: 1px 1px #cecece, 2px 2px #cecece, 3px 3px #cecece, 4px 4px #cecece, 5px 5px #dadada, 6px 6px #e6e6e6;
}

/*** テキスト左右に線を引く ***/
 
.box h6.ho{
	overflow: hidden;
	text-align: center;
	position: relative;
	margin-top: 20px;
	color:#555;
}
.box h6.ho span {
	display: inline-block;
	position: relative;
	padding: 0 20px;
	font-size: 18px;
}
.box h6.ho span:before,
.box h6.ho span:after{
	position: absolute;
	content: "";
	border-bottom: 1px solid #999;
	top: 50%;
	width: 99em;
}
.box h6.ho span:before {
	left: 100%;
}
 
.box h6.ho span:after {
	right: 100%;
}

/*タイムライン*/
/*.timeline {
  list-style: none;
}
.timeline > li {
  margin-bottom: 60px;
}

/* for Desktop */
/*@media ( min-width : 640px ){
  .timeline > li {
    overflow: hidden;
    margin: 0;
    position: relative;
  }
  .timeline-date {
    width: 110px;
    float: left;
    margin-bottom: 35px;
  }
  .timeline-content {
    width: 75%;
    float: left;
    border-left: 3px #BBB solid;
    padding-left: 30px;
	padding-bottom: 35px;
  }
  .timeline-content:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #ff7878;
    position: absolute;
    left: 106px;
    top: 6px;
    border-radius: 100%;
  }
}*/
