@charset "utf-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
/*----------------------------------------------------------- 限定メニュー */
.noAction {
  pointer-events: none
}
.gNaviBox {
  display: flex;
  justify-content: center;
}
/* グローバルメニュー*/
ul.menu {
  display: flex;
  justify-content: flex-end;
  max-width: 1280px;
  width: 100%;
  margin: 0 0 11px;
  /* background: #e9e9e9; */
}
.menu > li {
  /* border-right: 1px solid #bbc0c7; */
  display: flex;
  align-items: center;
  justify-content: center;
}
/*.menu > li:last-child {
  display: none;
}*/
.menu > li a {
    line-height: 1.6em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    padding: 10px 10px;
    box-sizing: border-box;
    font-size: 90%;
    letter-spacing: 0.05em;
}
.menu > li:hover {
  background: #f0f4f987;
}
.menu > li:hover a {
  opacity: 1;
}
.spNaviBtn > div {
  display: none;
}
header nav li.current {
  /* background: #f0f4f987; */
  border-bottom: 1px solid #333;
}
/* フッターメニュー*/
ul.menuFooter {
  display: flex;
  justify-content: center;
  padding: 10px 0 10px;
  background: #bdac93;
}
.menuFooter > li {
    padding: 0 15px;
    cursor: pointer;
    border-right: 1px solid #bbc0c7;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.menuFooter > li:last-child {
  border-right: none;
}
.menuFooter > li a {
    font-size: 80%;
    line-height: 1.2em;
    display: flex;
    padding: 3px 0;
    color: #fff;
}
.menuFooter > li.current a {
  border-bottom: 1px solid #fff;
}
.menuFooter > li:hover {
  background: #adb5b9;
}
.menuFooter > li:hover a {
  opacity: 1;
}
li.hidden {
  display: none;
}
li.none, li.none a {
  pointer-events: none;
  cursor: default;
}
li.none:hover {
  background: transparent;
}
li.none:hover, li.none a:hover {
  pointer-events: none;
  color: inherit;
  cursor: default;
}
li.none a {
  opacity: 0.5;
}
.spNaviBtn > div {
  display: none;
}
.menu .gNaviWrap, .menu .open {
  display: flex;
  justify-content: center;
  box-shadow: 0px 7px 6px -3px rgba(138, 138, 138, 0.65);
  padding: 0;
}
.menu .close {
  display: block;
}
.gNaviWrap .spTitle {
  display: none;
}

/*----------------------------------------------------------- 1400px */
@media screen and (max-width: 1400px) {
  ul.menuFooter {
    padding: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  ul.menuFooter > li {
    width: calc(100% / 3 - 0px);
    margin: 0 0 10px;
    display: flex;
    justify-content: center;
  }
  .menuFooter > li:last-child {
    border-right: 1px solid #bbc0c7;
  }
  .menuFooter > li:nth-child(3n) {
    border-right: none;
  }
  ul.menuFooter > li a {
    justify-content: center;
  }
}
/*----------------------------------------------------------- 1280px */
@media screen and (max-width: 1280px) {
  .gNaviWrap {
    display: block;
    position: absolute;
    right: 0px;
    top: 0;
    z-index: 1000;
    cursor: pointer;
    padding: 32px 5px 0;
  }
  ul.menu {
    display: none;
  }
  ul.close {
    display: none;
  }
  .menu .gNaviWrap, .menu .open {
    display: block;
    justify-content: flex-start;
  }
  .gNaviBox.open .menu {
    display: block;
    position: fixed;
    left: 0;
    background-color: #f0f0f0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .menu > li {
    position: relative;
  }
  .menu > li.title::after {
    font-family: 'Material Icons';
    content: "\e5cf";
    position: absolute;
    right: 10px;
    top: 16px;
    font-size: 20px;
  }
  .menu > li a {
    color: #333333;
    padding: 30px 0;
  }
  .menu > li > p::after {
    content: "";
  }
  .menu > li:hover > p::after {
    content: "";
  }
  .gNaviBox.open .menu li {
    display: block;
    padding: 0;
    text-align: left;
    border-bottom: 1px solid #9aafc1;
  }
  .gNaviBox.open .menu li {
    border-right: none;
    width: 100%;
  }
  .menu .gNaviWrap, .menu .open {
    box-shadow: none;
  }
  .spNaviBtn, .spNaviBtn span {
    display: inline-block;
    transition: all 0.3s;
  }
  .spNaviBtn {
    z-index: 20;
    width: 25px;
    height: 16px;
    position: relative;
    top: -1vmin;
  }
  .spNaviBtn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #9fa0a1;
    border-radius: 4px;
  }
  .spNaviBtn span:nth-of-type(1) {
    top: 0;
  }
  .spNaviBtn span:nth-of-type(2) {
    top: 7px;
  }
  .spNaviBtn span:nth-of-type(3) {
    bottom: 0;
  }
  .gNaviWrap .spTitle {
    display: block;
    font-size: 10px;
    bottom: -16px;
    right: -7px;
    color: #7d7d7d;
    ;
  }
  .active .spNaviBtn span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .active .spNaviBtn span:nth-of-type(2) {
    opacity: 0;
  }
  .active .spNaviBtn span:nth-of-type(3) {
    transform: translateY(-6px) rotate(45deg);
  }
  #header02 .menu > li a br {
    display: none;
  }
}
/*----------------------------------------------------------- 850px  */
@media screen and (max-width: 850px) {
  .menu > li:last-child {
    display: block;
  }
}
/*----------------------------------------------------------- 768px  */
@media screen and (max-width: 768px) {
  .gNaviBox.open .menu {
    top: 72px;
  }
  ul.menuFooter > li {
    width: calc(100% / 2 - 0px);
  }
  .menuFooter > li:nth-child(3n) {
    border-right: 1px solid #bbc0c7;
  }
  .menuFooter > li:nth-child(even) {
    border-right: none;
  }
}
/*----------------------------------------------------------- 630px  */
@media screen and (max-width: 630px) {
  .gNaviWrap {
    padding: 16px 5px 0px;
  }
  .gNaviBox.open .menu {
    top: 58px;
  }
}