
/*===============================================
　SP iPhone6以上（画面の横幅が761pxまで）
===============================================*/

@media (max-width:761px){
	
	/* ============================================================
 	common
	==============================================================*/
    
    .cover{
		width:100%;
		height:100vh;
		left:0;
		top:0;
		background:#fff;
		position:absolute;
		z-index: 999;
		transition: all 5s cubic-bezier(0, 0, 0.07, 0.96) 0.25s;
	}
	.cover_act{
		opacity: 0;
	}


	/* ============================================================
 	section 00
	==============================================================*/
	
	#sec00{
		width: 100%;
		margin: 100px 0;
		padding: 0 8%;
		box-sizing: border-box;
		position:relative;
	}

	#sec00:before{
		content: "";
		display: block;
		width: 105vw;
		height: 195px;
		background:#f0f1f1;
		position: absolute;
		top: 112px;
		left: -10vw;
	}
	
	#sec00 .wrapper_c{
		position: relative;
	}

	#sec00 h1{
		font-family: 'Roboto', sans-serif;
		font-weight: 600;
		font-size: 5rem;
		
		letter-spacing:0.1rem;
		color:#000;
		position:relative;
		padding: 0 0 20px;
		margin: 0 0 42px;
	}

	#sec00 h1:after{
		content: "";
		display: block;
		width: 50px;
		height: 1px;
		background:#000;
		position: absolute;
		bottom: 24px;
		left:2px;
	}

	#sec00 h2{
		font-family: 'Noto Sans JP', sans-serif;
		font-weight: 600;
		font-size: 1.8rem;
		color:#000;
		letter-spacing: 0rem;
		line-height: 200%;
		padding: 0 0 114px 35%;
	} 

	#sec00 .img_box{
		width: 40vw;
		height: 231px;
		position:absolute;
		left: -10%;
		top: 122px;
		overflow: hidden;
	}

	#sec00 .body_txt{
		font-family: 'Noto Sans JP', sans-serif;
		font-weight:400;
		font-size: 1.5rem;
		color:#000;
		letter-spacing:0.1rem;
		line-height: 200%;
		padding:0 0 30px;
	} 

	#sec00 .name_txt{
		width: 100%;
		margin: 30px 0 0;
	} 
	

	
}



/*===============================================
　SP iPhone5サイズ対応　画面の横幅が350pxまで▼▼▼▼▼
===============================================*/

@media (max-width:349px) {
	
}

/*===============================================
　SP iPhone Plus サイズ対応　画面の横幅が415pxまで▼▼▼▼▼
===============================================*/

@media (min-width: 413px) and (max-width: 761px) {
	
}

