@media screen and ( max-width: 1850px) {
	
}
@media screen and (min-width: 1161px ) and ( max-width: 1850px) {
	header{
		height: 7.4rem;
		flex-direction:column;
		padding: 0;
	}
	main{
		margin-top: 7rem;
	}

}
@media screen and (min-width: 768px ) and ( max-width: 1160px) {
	header{
		height: 7rem;
		flex-direction:column;
		padding: 0;
	}
	header nav ul{
		padding: 0;
	}
	header nav ul li a{
		font-size: 95%;
		padding: 0.3rem 0.6rem
	}
	main{
		margin-top: 7.5rem;
	}
	main .auve_fea .slick-slide>div{
		flex-direction: column;
	}
	main .auve_fea .slick-slide>div>img{
		max-width: 350px;
	}
	main .auve_fea .slick-slide>div>p{
		font-size: 1.0rem;
	}

}

@media screen and (max-width: 767px) {
	nav.active{
		display: block;
		position: absolute;
		top: 3.5rem;
		left: 0;
		width: 100%;
		background-color: #ddd;
		opacity: 0.95;
	}
	header nav.active ul{
		flex-direction: column;
		padding: 0 1.0rem;
		margin-top: 0;
	}
	header nav.active ul li{
		margin-top: 0.5rem;
		padding: 0;
		width: 100%;
	}
	header nav.active ul li a{
		font-size: 100%;
		display: block;
		width: 100%;
		padding: 0.2rem 1.0rem;
		border-color: #333;
		color: #333;
		font-weight: bold;
	}
	
	header{
		padding: 0;
		height: 3.5rem;
	}
	
	main{
		margin: 0 auto;
		width: 100%;
	}
	main .auve_h2{
		margin-top: 1.5rem;
	}
	#auve_info{
		margin-top: 4rem;
	}

	.contact_input form>div.scrollable{
		margin: 1.5rem 0;
	}
	.contact_input form>div.form_submit{
		width: 10rem;
	}
	/*==================================================
	　5-2-4 MENUがCLOSEに
	===================================*/
	nav{
		display: none;
	}
	header h1 {
		width: calc(100% - 80px);
		font-size: 1.2rem;
	}
	main .auve_h2{
		font-size: 1.2rem;
	}
	main .auve_fea h3{
		font-size: 1.1rem;
	}
	main .auve_fea h3::before{
		font-size: 1.8rem;
		margin-right: 10px;
	}
	main .auve_fea .slick-slide>div{
		flex-direction: column;
	}
	main .auve_fea .slick-slide>div>img{
		max-width: 350px;
		width: auto;
	}
	main .auve_fea .slick-slide>div>p{
		font-size: 1.0rem;
	}
	h1 span{
		display: none;
	}
	.contact_input form>div{
		flex-direction: column;
		
	}
	.contact_input form>div input, .contact_input form>div textarea{
		width: 100%;
		margin-top: 0.5rem;
	}
	.contact_input form>div>div.c_radio{
		width: 100%;
		flex-direction: column;
	}

	/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
	.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
	追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	background:#333;
	cursor: pointer;
	width: 50px;
	height:50px;
	border-radius: 5px;
	display: block;
	}

	/*ボタン内側*/
	.openbtn span{
	display: inline-block;
	transition: all .4s;/*アニメーションの設定*/
	position: absolute;
	left: 14px;
	height: 2px;
	border-radius: 5px;
	background: #fff;
	width: 45%;
	}


	.openbtn span:nth-of-type(1) {
	top:13px;	
	}

	.openbtn span:nth-of-type(2) {
	top:19px;
	}

	.openbtn span:nth-of-type(3) {
	top:25px;
	}

	.openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:5px;
	left:-2px;
	color: #fff;
	font-size: 0.6rem;
	text-transform: uppercase;
	}

	/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

	.openbtn.active span:nth-of-type(1) {
	top: 14px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
	}

	.openbtn.active span:nth-of-type(2) {
	opacity: 0;
	}

	.openbtn.active span:nth-of-type(3){
	top: 26px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
	}

	.openbtn.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
	transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
	}

}