/* ハンバーガーメニュー削除 */
#vk-mobile-nav-menu-btn {
  display: none !important;
}

/* ヘッダー内容調整 */
#header {
  position: fixed; /*← fixedで固定 */
  width: 100%; 
  height: 160px; 
  background: #506a00; 
  /* padding: 0 40px;  */
  box-sizing: border-box;
  top: 0; 
  left: 0; 
  align-items: center; 

 /* ロゴとメニューを横並びにする */
  /* display: flex;  */
  justify-content:space-between;
  z-index: 29;
}

@media (max-width: 924px) {
  #header {
    height: 180px; 
    padding: 20px 0; 
   /* ロゴとメニューを横並びにする */
    display:block; 
    justify-content:space-between;
    z-index: 29;
  }
}

@media (max-width: 430px) {
  #header {
    height: 115px; 
  }
}

.header_contents > .upper {
  display: flex; 
  max-width: 800px;
  height: 70px;
  margin: 10px auto;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
}

.contact_area {
  text-align: center;
  padding-left: 0;
}

.contact_area > ul {
  display: flex;
 margin: 0;
 align-items: center;
 padding: 0;
}

.contact_area > ul > li{
  padding-left: 8px;
}

/* 上段　サイズ調整 */
@media (max-width: 680px) {
  .title_area {
    width: 180px !important;
  }
  .title_area h1 {
    width: 180px;
  }
  .title_area img {
    width: 180px;
  }
  .contact_area > ul > li:first-child {
    width: 180px;
  }
  .contact_area > ul > li:Last-child {
    width: 140px;
  }
}

@media (max-width: 520px) {
  .title_area {
    width: 160px !important;
  }
  .title_area h1 {
    width: 160px;
  }
  .title_area img {
    width: 160px;
  }
  .contact_area > ul > li:first-child {
    width: 160px;
  }
  .contact_area > ul > li:Last-child {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .title_area {
    width: 140px !important;
  }
  .title_area h1 {
    width: 140px;
  }
  .title_area img {
    width: 140px;
  }
  .contact_area > ul > li:first-child {
    width: 140px;
  }
  .contact_area > ul > li:Last-child {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .title_area {
    width: 210px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .title_area h1 {
    width: 210px;
  }
  .title_area img {
    width: 210px;
  }
  .contact_area{
    display: none;
  }
}
/* 上段　サイズ調整終わり */

.header_contents > .under {
  width: 100vw;
  margin-top: 16px;
}

@media (max-width: 430px) {
  .header_contents > .under {
    display: none;
  }
}

.title_area {
  width: 230px;
}

@media (max-width: 924px) {
  .title_area {
    margin-left: 15px;
  }
}

/* コンテンツに対するヘッダー部分のマージン */
.page-header {
  margin-top: 160px !important;
}

@media (max-width: 924px) {
  .page-header {
    margin-top: 180px !important;
  }
}

@media (max-width: 430px) {
  .page-header {
    margin-top: 115px !important;
  }
}


/* DroppDownメニュー */
.gnavi__wrap {
  width: 800px;
  margin: 0 auto;
}

@media (max-width: 924px) {
  .gnavi__wrap {
    width: 100%;
    margin: 0 auto;
  }
}

.gnavi__lists {
  display: flex;
  padding: 0;
  margin-top: 5px;
}

.gnavi__list:first-child {
  /* border-left: 1px solid black; */
}

.gnavi__list {
  width: 25%;
  height: 45px;
  position: relative;
  transition: all .3s;
  /* border-right: 1px solid black; */
  border-left: #fff solid 1px;
padding-left: 4px;
}



  .gnavi__list:first-child {
    border-left: none;
  }

  .gnavi__list:last-child {
    border-right: none;
  }


.gnavi__list:hover {
  /* background-color: #1e721c; */
  color: black !important;
}


.gnavi__list:hover::before {
  /* background-color: #1e721c; */
  color: black !important;
}

.gnavi__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: white !important;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2em;
}

@media (max-width: 430px) {
  .gnavi__list a{
    font-size: 12px;
  }
}

.gnavi__list a:hover {
  color: black !important;
}

/* ドロップダウンメニューの記述 */
.dropdown__lists {
  display: none;
  /*デフォルトでは非表示の状態にしておく*/
  width: 200px;
  position: absolute;
  top: 45px;
  left: -40px;
  margin: 0;
  padding: 0;
  z-index: 30;
}

@media (max-width: 924px) {
  .dropdown__lists {
    position: fixed;
    width: 100vw;
    left: 0;
    top: 140px;
  }
}

.gnavi__list:hover .dropdown__lists {
  display: block;
  /*Gナビメニューにホバーしたら表示*/
}

.dropdown__list {
  background-color: #1e721c;
  height: 60px;
  transition: all .3s;
  position: relative;
  margin: 0;
  text-align: center;
}

.dropdown__list:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.dropdown__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  text-decoration: none;
  position: relative;
}

.dropdown__list a::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
}

.dropdown__list a:hover {
  color: white !important;
}

@media (max-width: 480px) {
  .sp_none {
    display: none !important;
  }
}