@charset "utf-8";
/*　ハンバーガーボタン　*/
#navArea{
	display: none;
}

@media screen and (max-width: 767px) {
	#navArea{
		display: block;
	}
	
	/*============
	.toggle_logo
	=============*/
	.toggle_logo{
		position: fixed;
		top: 0px;
		left: 0px;
		display: table;
		background: #05254d;/* 背景色 */
		border-bottom: white solid 1px;
		width: 100%;
		height: 50px;
		z-index: 115;
	}
	
	.toggle_home{
		display: table-cell;
		padding: 0 3% 0 2%;
		width: 46%;
		vertical-align: middle;
	}
	.toggle_home a{
		display: block;
		padding: 4px 0;
	}
	.toggle_home a img{
		width: 180px;
	}
	
	.toggle_phone{
		display: table-cell;
		padding-right: 50px;
		color: white;
		text-align: right;
		vertical-align: middle;
	}
	.toggle_phone .phone_dial{
		display: block;
		margin: 8px 0 0 0;
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 0.01em;
		line-height: 1;
		color: white;
	}
	.toggle_phone .phone_txt{
		position: relative;
		top: -4px;
		font-size: 9px;
		line-height: 1;
	}
	
	.toggle_dial{
		overflow: hidden;
		display: -webkit-flex;
		display: flex;
		justify-content: center;
		padding: 10px 0;
	}
	.toggle_dial .dial_txt01{
		position: relative;
		top: 10px;
		font-size: 13px;
		color: white;
	}
	.toggle_dial .dial_txt02{
		font-size: 20px;
		color: white;
	}
	/*============
	.toggle_nav
	=============*/
	.toggle_nav {
		display: block;
	  position: fixed;
	  top: 50px;
	  left: -80%;
	  bottom: 0;
	  width: 80%;
	  background-color: rgba(0, 0, 0, 0.7);/* メニュー背景色 */
	  padding-bottom: 50px;
	  overflow-x: hidden;
	  overflow-y: auto;
	  -webkit-overflow-scrolling: touch;
	  transition: all .5s;
	  z-index: 120;
	  opacity: 0;
	}
	.open .toggle_nav {
	  left: 0;
	  opacity: 1;
	}
	.toggle_nav .inner {
	  padding: 2px;
	}
	.toggle_nav .inner ul {
	  list-style: none;
	  margin: 0;
	  padding: 0;
	}
	.toggle_nav .inner ul li {
	  position: relative;
	  margin: 0;
	  border-bottom: 1px solid #fff;
	}
	.toggle_nav .inner ul li a {
	  display: block;
	  color: white;
	  font-size: 14px;
	  padding: 1em;
	  text-decoration: none;
	  transition-duration: 0.2s;
	}
	.toggle_nav .inner ul li a:hover {/* ホバー時の背景色 */
	  background: #05254d;
	}
	.toggle_nav .inner ul li .active {/* active時の背景色 */
	  background: #05254d;
	}
	.toggle_nav .inner ul li .active:hover {/* activeホバー時の背景色 */
	  background: #05254d;
	}
	@media screen and (max-width: 767px) {
	  .toggle_nav {
	    left: -80%;
	    width: 80%;
	  }
	}
	/*============
	.toggle_btn
	=============*/
	.toggle_btn {
	  display: block;
	  position: fixed;
	  top: 10px;
	  right: 10px;
	  width: 30px;
	  height: 30px;
	  transition: all .5s;
	  cursor: pointer;
	  z-index: 120;
	}
	.open .toggle_btn {
	  right: 10px;
	}
	.toggle_btn span {
	  display: block;
	  position: absolute;
	  left: 0;
	  width: 30px;
	  height: 2px;
	  background-color: #fff;
	  border-radius: 4px;
	  transition: all .5s;
	}
	.toggle_btn span:nth-child(1) {
	  top: 4px;
	}
	.toggle_btn span:nth-child(2) {
	  top: 14px;
	}
	.toggle_btn span:nth-child(3) {
	  bottom: 4px;
	}
	.open .toggle_btn span {
	  background-color: #fff;
	}
	.open .toggle_btn {
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
	.open .toggle_btn span:nth-child(1), .open .toggle_btn span:nth-child(3) {
	  width: 16px;
	}
	.open .toggle_btn span:nth-child(1) {
	  -webkit-transform: translate(-1px,4px) rotate(-45deg);
	  transform: translate(-1px,4px) rotate(-45deg);
	}
	.open .toggle_btn span:nth-child(3) {
	  -webkit-transform: translate(-1px,-4px) rotate(45deg);
	  transform: translate(-1px,-4px) rotate(45deg);
	}
	@media screen and (max-width: 767px) {
	  .open .toggle_btn {
	    right: 10px;
	  }
	}
	/*============
	#mask
	=============*/
	#mask {
	  display: none;
	  transition: all .5s;
	}
	.open #mask {
	  display: block;
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background: #000;
	  opacity: .8;
	  z-index: 110;
	  cursor: pointer;
	}

	/*============
	#toggle panel01-JS利用
	=============*/
	.toggle_nav-tit{
	  display: block;
	  background-color: rgba(126, 101, 101, 0.7);/* メニュー背景色 */
	  color: white;
	  font-size: 14px;
	  padding: 1em;
	  margin: 0;
	  text-decoration: none;
	  transition-duration: 0.2s;
	}
	.toggle_nav02{
		display: none;
	}

	/*============
	アイコン類
	=============*/
	.toggle_nav .inner .inner_ic{
		display: -webkit-flex;
		display: flex;
		justify-content: center;
	}
	.toggle_nav .inner .inner_ic span{
		display: inline-block;
		padding: 10px 3px !important;
		margin: 0 !important;
	}
	.toggle_nav .inner .inner_ic span a{
		padding: 0 !important;
		margin: 0 !important;
	}
}