@charset "UTF-8";
/*===============================================
●mian.css 画面の横幅が770px以上
===============================================*/
@media screen and (min-width: 770px){
.main {
	background-image: url(../img/company/main_bg.jpg);
}
.contents {
	width: 1020px;
	background-color: #FFFFFF;
	margin-right: auto;
	margin-left: auto;
    margin-bottom: 86px;
    padding: 66px 60px 90px;
	z-index: 9999;
	position: relative;
	top: -70px;
	-webkit-box-sizing: border-box;
	moz-box-sizing: border-box;
	box-sizing: border-box;
}
.caution {
	font-size: 15px;
    text-align: right;
    margin-top: 20px;
}
}
/*===============================================
●sp.css  画面の横幅が769pxまで（iPhone6 横向きまで）
===============================================*/
@media screen and (max-width:769px){
.main {
	background-image: url(../img/company/main_bg.jpg);
}
.contents {
	width: 90%;
    margin: 0 5%;
	background-color: #FFFFFF;
    margin-bottom: 86px;
    padding: 38px 5% 58px;
	z-index: 9999;
	position: relative;
	top: -10vw;
	-webkit-box-sizing: border-box;
	moz-box-sizing: border-box;
	box-sizing: border-box;
}
.caution {
	font-size: 1.4rem;
	line-height: 1.4;
    text-align: right;
    margin-top: 20px;
}
}