@charset "utf-8";
/*
  CSS のみのドロップダウンメニュー
  Copyright Rectus Inc, 2019
  https://www.rectus.co.jp/
  Released under the MIT license
 */


/* 本文をメニューの高さ分下げる */
#main {
  margin-top: 100px;
}

#navi {
    position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  z-index: 20;
  background-color: rgba(255, 255, 255, 1);
}


/* チェックボックスを非表示 */
#navi input {
  display: none;
}
/* 左上ロゴ */
img.header-logo{
  margin: 24px 0 0 30px;
  z-index: 100;
  width: 200px;
}
.menu-left img {
  vertical-align: middle;
  margin-left: 30px;
}
/* 上部メニュー */
.menu {
  display: inline-flex;
}
.nav-menu{
  width: 1120px;
}
.menu-parent {
  line-height: 1.4;
  font-weight: 500;
  white-space: nowrap;
   border-left: 1px solid #999;
   width: 20%;
}

.menu-parent:hover{
  background-color: #02154A;
}
.menu-parent:last-child{
   border-right: 1px solid #999;
}
.menu-wrap{
  text-align: center;
    width: 100%;
   display: inline-block;
    background-color: #003F89;
  position: absolute;
  left: 50%;
  height: 60px;
  transform: translateX(-50%);
z-index: 10;

}

.menu-wrap{
  top:80px;
}


.menu-parent .pd {
  display: none;
}
.menu-parent:last-child {
  margin-right: 0px;
}
#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand;
}

/* パソコンでは V を非表示 */
.menu-parent .pd {
  display: none;
}
/* 上部メニューの最後の項目 */
.menu-parent:last-child {
  margin-right: 0px;
}

#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand;
}
.en{
  font-size: 12px;
  color: #B4D6F2;
}


.menu-contact a{
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  width: 200px;
  height: 80px;
  justify-content: center;
  align-items: center;
  background-color: #4B86CB;
    color: #fff;
}


.contact-button::before{
  content: url(/wp-content/uploads/2024/10/email.svg);
  margin: 4px 4px 0 0 ;

  display: inline-block;
}
.menu-english a{
  position: absolute;
  top: 0;
  right: 230px;
    display: inline-flex;
    height: 80px;
    align-items: center;
        color: #1d1d1d;
}
@media screen and (max-width: 1120px) {
.nav-menu{
  width: 100%;
}
}
@media screen and (max-width: 767px) {
.menu {
  width: 100%;
}
.menu-parent:hover{
  background-color: #fff;
}
.menu-parent {
    border-left: 0;
}

#navi {
  height: 70px;
}
img.header-logo {
   margin-top: 0;

}
.menu-wrap{
  background-color:initial;
}
#top .menu-wrap{
  top:110px;
}
#lower .menu-wrap {
  top: 110px;
}
.menu-left {
  line-height: 70px;
}
.menu-parent {
  line-height: 50px;
}
.menu-left img {
    width: 100px;
  margin-left: 20px;
}
.menu-parent:last-child {
    border-right: 0;
}
/* パソ
  /* スマホの際に V を表示 */
  .menu-parent .pd {
    display: inline-block;
    width: 100%;
  }
  .menu {
    display: none;
  }
  .menu-parent {
    height: auto;
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  .menu-parent:first-child {
    border-top: 1px solid #ccc;
  }
  .menu-parent i {
    padding: 0px 6px;
  }
  .fas{
    color: #333;
  }
  /* メニューを移動させないため */
  #menu-navibtn:checked ~ #navi {
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
    background-color: #fff;
  }
.menu {
  margin-right: 0;
}

}

/* ドロップダウンメニュー */
.menu-parent {
  position: relative;
}
.menu-parent .menu-child {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  min-width: 180px;
  box-sizing: border-box;
  background-color: #002076;
  border: 0;
}
/* パソコン用 */
@media screen and (min-width: 767px) {
  .menu-parent:hover .menu-child {
    visibility: visible;
    opacity: 1;
  }
}
/* スマホ用 */
@media screen and (max-width: 767px) {
  /* ハンバーガーメニューがクリックされた時 */
  #menu-navibtn:checked ~ * .menu {
    display: block;
    opacity: 1;
  }
  #menu-navibtn:checked ~ * .menu-parent {
    max-height: inherit;
    overflow-y: visible;
    border-bottom: 1px solid #ccc;
    text-align: left;
  }
  #menu-navibtn:checked ~ * .menu-child {
    max-height: 0;
    overflow-y: hidden;
    visibility: hidden;
  }
  /* 子メニュー */
  .menu-parent .menu-child {
    position: relative;
    opacity: 1;
    top: 0;
    margin-left: auto;
    left: auto;
    width: auto;
    background-color: #eee;
  }
  .menu-parent > label:hover {
    cursor: pointer;
    cursor: hand;
  }
  /* 子メニューがクリックされた時 */
  #navi input[type="checkbox"]:checked ~ .menu-child {
    max-height: inherit;
    overflow-y: visible;
    visibility: visible;
  }
  .angletoggle:before {
    content: "\f107";
  }
  #navi input[type="checkbox"]:checked ~ * .angletoggle:before {
    content: "\f106";
  }
}

/* 子メニュー */
.menu-child li {
  font-size: 15px;
  line-height: 50px;
  border-bottom: 1px solid #ccc;
}
/* 余分な最後の線を消去 */
.menu-child li:last-child {
  border: none;
}
.menu-child li i {
  margin-right: 3px;
}

#nav-menu-lower a{
    color: #fff;
    display: grid;
   align-items: center;
  margin: 10px 20px;
      line-height: 1.4;
}
@media screen and (max-width: 767px) {

}
/* ハンバーガー */
#navi #navibtn {
  display: none;
}
@media screen and (max-width: 767px) {


.menu-child a{
    width: 100%;
  }
.menu-child li {
  width: 100%;
}
  #navi #navibtn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 20;
        background-color: #002076;
  }
  #navibtn span {
    display: block;
    width: 60px;
    height: 60px;
   z-index: 20;
  }
  #navibtn span span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  #navibtn span span::before,
  #navibtn span span::after,
  #navibtn span::after {
    position: absolute;
    left:17px;
    content:"";
    width: 28px;
    height: 2px;
    background-color: #FFF;
  }
  /* 上の棒 */
  #navibtn span span::before {
    top:18px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::before {
    top:29px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  /* 下の棒 */
  #navibtn span::after {
    bottom:18px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn > span::after {
    bottom:29px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  /* 中の棒 */
  #navibtn span span::after {
    top:29px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::after {
    display: none;
  }
  #navi #navibtn {
    top: 0;
    right: 10;
    z-index: 12;
  }

}
@media screen and (max-width: 767px) {

#navi {
  background-color: #fff;
  position: fixed;
  height: 60px;
    }
#navi a {
    place-content: initial;
    margin: initial;
    display: initial;
            display: inline-block;
        height: 60px;
        line-height: 60px;
} 
.menu-contact span{
  display: none;
}
.menu-contact a{
  width: 60px;
  right: 60px;
}
.menu-contact div{
  display: none;
}
.menu-contact{
  text-align: center;
}
.contact-button::before{
  margin: 6px 0 0 0 ;

}
#nav-menu-lower a{
    color: #1d1d1d;
    padding: 0 30px;
}
.js-button span {
    margin: 0 0 0 10px;
}
img.header-logo {
    width: 140px;
    margin: 0 0 0 20px;
}
.menu-english a {
    position: absolute;
    top: 0;
    right: 120px;
    display: inline-flex;
    height: 80px;
    align-items: center;
    color: #1d1d1d;
}
.sp-hide{
    display: none;
}
.english{
    width: 60px;
    display: inline-block;
    text-align: center;
    background-color: #EDF7FF;
}
}
@media screen and (max-width: 600px) {

.features-table-wrap{
  display: none;
}
 
}