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

/* ヘッダー内容調整 */
#header {
  position: fixed; /*← fixedで固定 */
  width: 100%; 
  height: 100px; 
  background: white; 
  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: 150px; 
    padding: 20px 0; 
   /* ロゴとメニューを横並びにする */
    display:block; 
    justify-content:space-between;
    z-index: 29;
  }
}

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

.title_area {
  width: 230px;
}

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

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

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

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


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

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

.gnavi__lists {
  display: flex;
  padding: 0;
}

.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; */
}

@media (max-width: 924px) {
  .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: black !important;
  font-size: 14px;
  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;
}