@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; }
}



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

.mainttl{
	background: url(../images/under_hbg.jpg) no-repeat center;
	background-size: cover;
	position: relative;
	height:200px;
	margin-bottom: 50px;
}
/*.mainttl::before{
	background-color: rgba(0,0,0,0.5);
	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;
	}
}


/*******************************
 
ContactCss
 
*******************************/
.contact{
	margin-bottom: 180px;
}
.contact .item{
	border-bottom: solid 1px;
	margin-bottom: 60px;
	padding-bottom: 30px;
}
.contact .ttl{
	font-size: 18px;
	font-weight: bold;
}
.contact p, .contact .list{
	color: #000;
	font-size: 14px;
	padding-top: 20px;
}



@media only screen and (max-width: 750px) {
	.contact{
		margin-bottom: 50px;
	}
	.contact li{
		padding-left:1em;
		text-indent:-1em;
	}
}

