/* indexページのレイアウト用CSS */
/* 印刷用 */
@media print{
#company_contents{
width:auto;
line-height:12pt;
margin-left: 80px;
}
.page_title{
width:auto;
padding-top:2px;
padding-bottom:10px;
}
#title{
width:auto;
height:2pc;
margin-top: 10px;
margin-bottom:-2pc;
color:#666666;
text_align: right;
clear:left;
}
#form{
width:auto;
margin-left:170px;
font-size: 8pt;
color: #999999;
clear:left;
}
#attention{
width:auto;
margin-top: 10px;
color:#666666;
clear:left;
}
}
/* 画面表示用 */
@media screen{
#company_contents{
max-width:720px;
line-height:15pt;
margin:0 auto;
}
.page_title{
padding-top:2px;
padding-bottom:10px;
}
#title{
width:160px;
height:2pc;
margin-top: 10px;
margin-bottom:-2pc;
color:#666666;
text_align: right;
clear:left;
}
#form{
margin-left:170px;
font-size: 8pt;
color: #999999;
clear:left;
}
#attention{
max-width:610px;
margin-top: 10px;
color:#666666;
clear:left;
}
}

@media screen and (max-width:600px){
	#title {
    width: 100%;
    height: auto;
    margin-bottom: 0;
}
#form {
    margin-left: 0;
}
}