/*header*/
header{
  height: 80px;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: fixed;
  width: 100%;
  filter: drop-shadow(0px 5px 10px rgba(158, 157, 157, 0.6));
  z-index: 999;
  top: 0;
}
header nav{
  display: flex;
  align-items: center;
  margin: 0 0 0 auto;
}
.header-logo{
display: flex;
align-items: center;
}
.header-logo a{
display: contents;	
}
.header-logo img{
  height: 38px;
  width: auto;
}
.list_nav_header{
  display: flex;
  align-items: center;
  gap: 40px;
font-weight: bold;
}
.burger{
  width: 50px;
  height: 50px;
  background-image: url(./img/burger.svg);
  background-size: 40px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  margin: 0 0 0 80px;
  position: relative;
  z-index: 2;
}
.burger.is-active{
  background-image: url(./img/close.svg);
}
.menu{
  color: #fff;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: #e8f5ff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
}
.menu.is-active{
  display: flex;
}
/*.menu_item_wrap{
    font-size: 20px;
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 10% 10%;
    text-align: center;
}*/
.dw_menu_img{
    position: absolute;
    top: 4%;
    width: 14%;
}
.menu_item_wrap {
    font-size: 18px;
    font-weight: bold;
    display: -webkit-box; /* 古いSafari対応 */
    display: -webkit-flex; /* 新しいSafariプレフィックス */
    display: flex; /* 標準 */
    -webkit-flex-wrap: wrap; /* Safariプレフィックス */
    flex-wrap: wrap; /* 標準 */
    -webkit-justify-content: space-between; /* Safariプレフィックス */
    justify-content: space-between; /* 標準 */
    padding: 0 10% 10%;
    text-align: center;
}
.menu_item_wrap li{
  margin: 0 1em 1em 0;
  text-decoration: underline dotted black;
  width: 42%;
}
.menu_wrap{
  margin-top: 10%;
}
.menu_wrap h2{
    margin: 0 0 10px;
    text-align: center;
    font-size: 24px;
}
.menu_wrap img{
    width: 160px;
    margin: 10px auto;
    text-align: center;
    display: block;
}
.burger_menu_contact{
    margin: 0 auto 30px;
    text-align: center;
    padding: 1em 3em;
    background-color: #ed1c23;
    width: 60%;
    box-shadow: 0px 0px 18px #a3a1a1;
}
.burger_menu_contact a{
    color: #fff;
    font-weight: bold;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger span {
    display: block;
    height: 2px;
    width: 25px;
    margin: 4px 0;
    background: #333;
    transition: 0.4s;
  }
  
  /* ハンバーガーメニューが開いた状態 */
  .active .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .active .hamburger span:nth-child(2) {
    opacity: 0;
  }
  
  .active .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* スマホ画面での表示調整 */
  @media (max-width: 768px) {
    .dw_menu_img{
    width: 42%;
}
    .nav-menu {
      display: none;
    }
  
    .hamburger {
      display: flex;
    }
  
    .active .nav-menu {
      display: flex;
      flex-direction: column;
      background-color: #f9f9f9;
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      text-align: center;
      padding: 16px;
    }
  }


.dw_gnavi_spMemu_wrap {
    display: flex;
    align-items: center;
    font-weight: bold;
    position: absolute;
    width: 100%;
    bottom: 0;
}
.dw_gnavi_spMemu_r {
    width: 50%;
    padding: 4%;
    background-color: #ed1c23;
    color: #FFF;
    height: 140px;
    text-align: center;
}
.dw_gnavi_spMemu_r img {
    width: 20% !important;
    border-radius: 30px;
}
.dw_gnavi_spMemu_r a {
    color: #FFF;
    font-size: 20px;
}
.dw_gnavi_spMemu_l {
    width: 50%;
    padding: 4%;
    background-color: #0266b3;
    height: 140px;
    text-align: center;
}
.dw_gnavi_spMemu_l img {
    width: 20% !important;
    border-radius: 30px;
}
.dw_gnavi_spMemu_l a {
    color: #FFF;
    display: block;
}
.dw_gnavi_spMemu_section p {
    text-align: center;
    font-size: 16px;
    padding: 0.5em 0 0;
    font-weight: bold;
    color: #000;
    text-decoration: underline black;
}