#logo {
	display: block;
}
#logo img {
  max-width:60%;
}
.subheader {    
  position: -webkit-sticky;
  position:         sticky;
  top: 79px;
	z-index: 2;
	font-family: 'Noto Serif JP', serif;
}
@media screen and (max-width:468px) {
.subheader {     
  top: 63px;
}
}
.subnav {
    width: 100%;
    height: 70px;
    /*position: fixed;*/
    background: #F6F6F6;    
}
/*.subnav .m_fixed {
	left: 0;
	position: fixed;
	top: 80;
}*/
.drawer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 70px;
  padding: 0 1em;
}
/*ナビゲーション部分*/
.submenu ul li a {
  display: block;
  /*font-weight: bold;*/
  padding: 1em;
  border-bottom: 1px dotted #CCC;
  color: #333;
  text-decoration: none;
}
.submenu ul li a:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: orange;
}
.submenu {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    transition: .5s ease; /*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%); /*左に隠しておく*/
}
/*OPEN時の動き*/
.submenu.open {
  -webkit-transform: translateX(0%);
  transform: translateX(0%); /*中身を表示（右へスライド）*/
}
/*トグルボタンのスタイルを指定*/
.Toggle {
    display: block;
    /*position: fixed;*/ 
	position: -webkit-sticky;
  position:         sticky;/* bodyに対しての絶対位置指定 */
    width: 122px;
    height: 22px;
    cursor: pointer;
    z-index: 3;
    right: 15px;
    font-size: 14px;
}
@media screen and (max-width:576px) {
.Toggle { 
	right: 50px;
}
}
.Toggle i {    
    font-size: 18px;
}
/*.Toggle span {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: solid 2px #333;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}*/
.Toggle span {
  display: block;
  position: absolute;
  width: 122px;  
}
@media screen and (max-width:576px) {
.Toggle span {    
}
}
.Toggle span:after{
    content:"分譲地メニュー ▼";
}

.Toggle.open span:after{
    content:"分譲地メニュー ▲";
}
/*.Toggle span:nth-child(1) {
  top: 5px;
}
.Toggle span:nth-child(2) {
  top: 18px;
}
.Toggle span:nth-child(3) {
  top: 32px;
}
.Toggle.active span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}*/
/* 2番目と3番目のspanを45度に */
/*.Toggle.active span:nth-child(2), .Toggle.active span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}*/
@media screen and (min-width: 767px) {
  .subheader::after {
    display: none;
  }
#logo{display: none;}	
  .subnav {
    display: flex;
  }
  .Toggle {
    display: none;
  }
  .submenu {
    width: 100%;
    background-color: transparent;
    margin-top: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-right: 20px;
  }
  .submenu ul {
    height: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
  }
  .submenu ul li a {
    padding: 0 1em;
    border-bottom: none;
	  font-size: 16px;
  }
  .submenu ul li a:hover {
    background-color: transparent;
  }
}