@media screen and (min-width: 769px){
	
	header .facility-name{
		display: none;
	}
	
}



@media screen and (min-width: 1200px) {
    
	header{
		width: 100%;
		height: 80px;
		background: #FFFFFF;
		border-bottom: 1px solid #E5E5E5;
		box-sizing: border-box;
		position: fixed;
		top:0;
		left: 0;
	}
	header .inner{
		
	}
	header .menu-btn{
		display: none;
	}
	header .logo{
		width: 82px;
		position: absolute;
		top:50%;
		left: 50px;
		transform: translateY(-50%);
	}
	header .facility-name{
		display: none;
		
	}
	
	/* MainMenu */
	header .menu-content .main-menu{
		width: 100%;
		padding: 0 30.556vw 0 13.194vw;
		display: flex;	
	}
	header .menu-content .main-menu li{
		padding: 32px 1.5vw;
		/*padding: 32px 40px 32px 0;*/
	
	}
	header .menu-content .main-menu li.on{
		border-bottom: 1px solid #FF0000;
	}
	
	
	/* InquiryMenu */
	header .menu-content .inquiry-menu{
		position: absolute;
		top:0;
		right:0;	
	}
	header .menu-content .inquiry-menu{
		display: flex;
		justify-content: space-between;
	}
	header .menu-content .inquiry-menu li{
		width:15.278vw;
	}
	header .menu-content .inquiry-menu li a{
		display: block;
		width: 100%;
		height: 80px;
		line-height: 80px;
		text-align: center;
		color: #FFFFFF;
	}
	header .menu-content .inquiry-menu li a.contact{
		background: #823232;
	}
	header .menu-content .inquiry-menu li a.support{
		background: #40618E;
	}
	
	
	/* アコーディオン中身 */
	.acc-menu{
		position: relative;
	}
	.acc-menu .box{
		display: none;
		width: 220px;
		position: absolute;
		top:80px;
		left:50%;
		margin-left: -110px;
		background: rgba(215,239,250,0.9);
		padding: 30px 20px 20px;
		box-sizing: border-box;
		font-size: 1.1rem;
		line-height: 2;
	}

	.acc-menu .box .block{
		margin: 0 0 10px;
	}
	.acc-menu .box .name{
		font-size: 1.2rem;
		margin: 0 0 10px;
	}
	.acc-menu .no-link{
		color: #999999 !important; 
	}
	.acc-menu .box .project{
		margin-left: 1em;
	}
	.acc-menu .box .project a{
		display: block;
	}
	.inquiry-menu .acc-menu .box{
		padding: 20px 30px;
		width:15.278vw;
		left: inherit;
		right: 0;
	}
	.inquiry-menu .acc-menu .box a{
		height: 40px !important;
		line-height: 3 !important;
		display: block;
		color: #000000 !important;
		text-align: left !important;
	}	
	
	
}


@media screen and (min-width: 1440px) {
	
	header .menu-content .main-menu{
		padding: 0 220px 0 180px;	
	}
	header .menu-content .main-menu li{
		padding: 32px 25px;
	}
	header .menu-content .inquiry-menu li{
		width:220px;
	}
	.inquiry-menu .acc-menu .box{
		width: 220px;
	}
	
	
}

@media screen and (max-width: 1200px) {
	
	/*---------------------------------------
	 * Header
	---------------------------------------*/ 
	
	header{
		width: 100%;
		height: 80px;
		background: #FFFFFF;
		border-bottom: 1px solid #E5E5E5;
		box-sizing: border-box;
		position: fixed;
		top:0;
		left: 0;
	}
	
	header .logo{
		width: 82px;
		position: absolute;
		top:50%;
		left: 50px;
		transform: translateY(-50%);
	}
	
	
	/* MenuBtn
	---------------------------------------*/ 
	
	.menu-btn{
		width: 80px;
		height: 80px;
		position: absolute;
		top:0;
		right:0;
		cursor: pointer;
		z-index: 1100;
		padding: 30px 25px;
		box-sizing: border-box;	
		transition: all .2s;
	}
	.menu-btn.on{
		position: fixed;
		top:0;
		right:0;
	}
	.menu-trigger,
	.menu-trigger span {
	  display: block;
	  transition: all .4s;
	  box-sizing: border-box;
	  margin: 0 auto;
	}
	.menu-trigger {
	  position: relative;
	  width: 30px;
	  height: 20px;
	}
	.menu-trigger span {
	  position: absolute;
	  left: 0;
	  width: 100%;
	  height: 2px;
	  background-color: #393939;
	}
	.on .menu-trigger span{
	  background-color: #393939;	
	}
	.menu-trigger span:nth-of-type(1) {
	  top: 0;
	}
	.menu-trigger span:nth-of-type(2) {
	  top: 9px;
	}
	.menu-trigger span:nth-of-type(3) {
	  bottom: 0;
	}
	
	
	/* Animation*/
	
	.menu-trigger.active span:nth-of-type(1) {
	  -webkit-transform: translateY(9px) rotate(-45deg);
	  transform: translateY(9px) rotate(-45deg);
	}
	.menu-trigger.active span:nth-of-type(2) {
	  opacity: 0;
	}
	.menu-trigger.active span:nth-of-type(3) {
	  -webkit-transform: translateY(-9px) rotate(45deg);
	  transform: translateY(-9px) rotate(45deg);
	}
	
	
	
	/* MenuContent
	---------------------------------------*/
	 
	header .menu-content{
		width: 100vw;
		height: 100%;
		z-index: 1000;
		position: fixed;
		background: rgba(255,255,255,0.9);
		padding: 90px 0 0;
		overflow:scroll; 
		-webkit-overflow-scrolling: touch;
		top:0;
		left: 100%;
		box-sizing: border-box;
		
	}
	header .menu-content ul{
		width: 60%;
		margin: 0 auto 40px;
	}
	header .menu-content .box{
		display: none;
	}
		
	
	/* MainMenu */
	header .menu-content .main-menu{
		line-height: 1.6;
	}
	header .menu-content .main-menu li{
		margin: 0 0 20px;
	}
	
	
	
	/* アコーディオン中身 */
	.acc-menu .menu-name{
		vertical-align: middle;
	}
	.acc-menu .menu-name::after{
		content:"";
		width: 12px;
		height: 7.5px;
		background: url(/assets/img/acc-cursor.svg) 50% no-repeat;
		background-size:100%;
		display: inline-block;
		transform: rotate(-180deg);
		margin-left: 10px;
		position: relative;
		top:-2px;
		transition: transform .2s;
	}
	.acc-menu .menu-name.on::after{
		transform: rotate(0deg);
	}
	.acc-menu .box{
		padding: 15px 0 5px;
		box-sizing: border-box;
		font-size: 1.3rem;
		line-height: 2;
	}
	.acc-menu .box .block{
		margin: 0 0 10px;
	}
	.acc-menu .box .name{
		margin: 0 0 10px;
	}
	.acc-menu .no-link{
		color: #999999 !important; 
	}
	.acc-menu .box .project{
		margin-left: 1.4rem;
	}
	.acc-menu .box a{
		display: block;
		color: #393939;
	}
	.inquiry-menu .acc-menu .box{
		padding: 20px 30px;
	}
	.inquiry-menu .acc-menu .box a{
		height: 40px !important;
		line-height: 3 !important;
		display: block;
		color: #393939 !important;
		text-align: left !important;
	}
	
	/* InquiryMenu */
	header .menu-content .inquiry-menu{
			
	}

	header .menu-content .inquiry-menu li{
		width:100%;
		margin: 0 0 10px;
	}
	header .menu-content .inquiry-menu li a{
		display: block;
		width: 100%;
		height: 60px;
		line-height: 60px;
		text-align: center;
		color: #FFFFFF;
	}
	header .menu-content .inquiry-menu li a.contact{
		background: #823232;
	}
	header .menu-content .inquiry-menu li a.support{
		background: #40618E;
	}
	header .menu-content .inquiry-menu li a.support span::after{
		content:"";
		width: 12px;
		height: 7.5px;
		background: url(/assets/img/acc-cursor_wh.svg) 50% no-repeat;
		background-size:100%;
		display: inline-block;
		transform: rotate(-180deg);
		margin-left: 10px;
		position: relative;
		top:-2px;
		transition: transform .2s;
	}
	header .menu-content .inquiry-menu li a.support span.on::after{
		transform: rotate(0deg);
	}

		
}


@media screen and (max-width: 768px) {
	
	/*---------------------------------------
	 * Header
	---------------------------------------*/ 
	
	header{
		width: 100%;
		height: 65px;
		border-bottom: 1px solid #E5E5E5;
	}
	
	header .logo{
		width: 72px;
		position: absolute;
		top:50%;
		left: 20px;
		transform: translateY(-50%);
	}
	header .facility-name{
		font-size: 1rem;
		position: absolute;
		top:28px;
		left: 110px;
	}
	
	
	/* MenuBtn
	---------------------------------------*/ 
	
	.menu-btn{
		width: 65px;
		height: 65px;
		padding: 22.5px 18px;
		
	}


	
	
	

	
}
