@charset "UTF-8";

/*******************************
 
れすぽんCss
 
*******************************/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
@media only screen and (min-width: 750px) {
.pc { display: block !important; }
.sp { display: none !important; }
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

/* br_pc　pc時改行 */
/* br_sp　sp時改行 */
@media screen and (min-width: 750px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 750px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}

/*******************************
 
aboutCss
 
*******************************/

.con_wrap{
	width: 820px;
	margin: 0 auto;
	display: flex;
}

.servise_wrap{
	display:block;
	padding: 20px;
}

.servise_label p{
	font-size: 12pt;
	text-align: left;
}
.servise_name{
	font-size: 16pt;
	color: #fff;
	text-align: left;
	margin-bottom: 20px;
}

@media only screen and (max-width: 750px) {
.con_wrap{
	width: 100%;
	margin: 0 auto;
}
}


/*******************************
 
BtnCss
 
*******************************/


/*******************************
 
section
 
*******************************/


/*******************************
 
下層ヘッダー
 
*******************************/

.mainttl{
	background: url(../images/under_hbg.jpg) no-repeat center;
	background-size: cover;
	position: relative;
	height:200px;
	margin-bottom: 50px;
}
.mainttl::before{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';
}
.mainttl .txt{
    width: 100%;
    max-width: 988px;
    position: absolute;
    top:40%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    
}
.mainttl h1,p{
  color: #fff;
  font-size: 24pt;
}

@media only screen and (max-width: 750px) {
.mainttl{
	height:100px;
}
.mainttl h1,p{
  font-size: 18pt;
}
}
