@media screen and ( max-width:899px ){
	
	#login_format{
		vertical-align:top;
	}
	
	#system_log_out_btn{
		display: none;
	}
	
	.menu_btn{
		/*ボタン内側の基点となるためrelativeを指定。
	追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
		position: relative;
		right: 0;
		background:#1b45ff;
		cursor: pointer;
		width: 50px;
		height:50px;
		border-radius: 5px;
	}
	/*ボタン内側*/
	.menu_btn span{
		display: inline-block;
		transition: all .4s;/*アニメーションの設定*/
		position: absolute;
		left: 14px;
		height: 2px;
		border-radius: 5px;
		background: #fff;
		width: 45%;
	  }


	.menu_btn span:nth-of-type(1) {
		top:13px;	
	}

	.menu_btn span:nth-of-type(2) {
		top:19px;
	}

	.menu_btn span:nth-of-type(3) {
		top:25px;
	}

	.menu_btn 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に変更*/

	.menu_btn.active span:nth-of-type(1) {
		top: 14px;
		left: 18px;
		transform: translateY(6px) rotate(-45deg);
		width: 30%;
	}

	.menu_btn.active span:nth-of-type(2) {
		opacity: 0;
	}

	.menu_btn.active span:nth-of-type(3){
		top: 26px;
		left: 18px;
		transform: translateY(-6px) rotate(45deg);
		width: 30%;
	}

	.menu_btn.active span:nth-of-type(3)::after {
		content:"Close";/*3つ目の要素のafterにClose表示を指定*/
		transform: translateY(0) rotate(-45deg);
		top:5px;
		left:4px;
	}
	
	#header_menu{
		/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
		position:fixed;
		z-index: 999;
		/*ナビのスタート位置と形状*/
		top:0;
		left: -120%;
		width:calc(100% - 70px);
		background:#97b3ee;
		/*動き*/
		transition: all 0.6s;
	}
	#header_menu.panelactive{
		left: 0;
	}
	.header_menu_content {
		height: auto;
		width: 100%;
		position: relative;
		z-index: 1;
		overflow: hidden;
	}

	.menu_link {
		text-decoration:none;
		display: inline-block;
		padding: 20px 0px;
		border: 0px ;
		border-radius: 0px;
		background-color: #97b3ee;
		color: white;
		height: 20px;
		width: 100%;
		transition: .4s;
		vertical-align:middle;
	}

	#mobile_log_out_btn{
		display: inline-block;
	}
	
	#main_contents {
		width: 100%;
	}
	.staff_set_table{
		width: 95%;
	}
	
	.normal_tbl td{
		display: inline-block;
		width: 100%;
	}

	.main_content_02 {
		display: inline-block;
		padding: 0px;
		height: auto;
		width: 90%;
		margin-top: 30px;
		text-decoration:none;
	}

	.ci_image{
		width: 100%;
		margin: 0 auto;
	}

	.dr_introduction{
		display:block;
		width: 100%;
	}

	.doctor_img{
		width: 100%;
		height: auto;
	}

	.doctor_prof{
		width: 100%;
		font-size: 18px;
		line-height: 2;
		padding: 10px;
	}
}