@charset "utf-8";
#leftNav {
  opacity: 0;
}
#leftNav.navFade {
  animation: navFadeAni 0.5s forwards;
}
@keyframes navFadeAni {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
#leftNav.navFadeOn {
  animation: navFadeOnAni 0.5s forwards;
}
@keyframes navFadeOnAni {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
nav {
  background: #85a2ab;
  box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.25);
  position: fixed;
  width: 320px;
  height: 100%;
  z-index: 10;
  top: 0;
  transform: translateX(-320px);
  transition: all 200ms ease-in-out;
  z-index: 1000;
}

.menu-push,
.menu-push-right {
  transition: 200ms ease-in-out;
}
.menu-left {
  opacity: 0;
}

.menu-left-open {
  transform: translateX(0px);
  opacity: 1;
}

#toggle {
  position: fixed;
  z-index: 15;
  bottom: 0;
  z-index: 1000;
}
#toggle2 {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
}
.menu-push {
  position: relative;
  left: 0;
}
.menu-push-right {
  left: 160px;
  /* width: calc(100% - 220px); */
}

/* nav_style */
.navBox {
  width: calc(100% - 15px);
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.navPosition {
  width: calc(100% - 15px);
  position: fixed;
  bottom: 20px;
  z-index: 9999;
}
.navLink {
  margin: 10px 0;
  padding: 0 0 0 3em;
  position: relative;
  font-size: 13px;
}

.navLink::after {
  content: "";
  position: absolute;
  top: 1em;
  left: 24px;
  width: 1px;
  height: 125%;
  background: #ddd;
  transform: translateX(-50%);
}

.navLink2 {
  margin: 10px 0;
  padding: 0 0 0 3em;
  position: relative;
  font-size: 13px;
}

.navLink2::after {
  content: "";
  position: absolute;
  top: 1em;
  left: 24px;
  width: 1px;
  height: 150%;
  background: #ddd;
  transform: translateX(-50%);
}

.lineNo::after {
  width: 0px;
}
.navLinkIn {
  opacity: 0.5;
  color: #fff;
}
.navLink2 .circle {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
}
.navLinkIn.is-active {
  opacity: 1;
  font-size: 1.15em;
}
.navLink2 .navLinkIn.is-active > .circle {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 50%;
  z-index: 1;
  background-color: #85a2ab;
  border: solid 2px #fff;
}
.navLink .circle {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
}
.navLink .navLinkIn.is-active > .circle {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 50%;
  z-index: 1;
  background-color: #85a2ab;
  border: solid 2px #fff;
}

/* hamburger */
.nomalOpenBtn {
  position: relative;
  background: #ccc;
  cursor: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
  margin: 12px 24px;
}

/*ボタン内側*/
.nomalOpenBtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}
.nomalOpenBtn span:nth-of-type(1),
.nomalOpenBtn span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.openbtn3 {
  position: relative;
  background: #ccc;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
  margin: 12px 24px;
}

/*ボタン内側*/
.openbtn3 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}

.openbtn3.active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%);
}

.openbtn3.active span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}
.openbtn3 span:nth-of-type(1),
.openbtn3 span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

/* mv nav */
.navPosition2 {
  width: 320px;
  position: fixed;
  bottom: 20px;
  margin: 0 0 0 8px;
  z-index: 9999;
}

#mvNav.onFade {
  animation: onFadeAni 0.3s forwards;
}
@keyframes onFadeAni {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#mvNav.opFade {
  animation: opFadeAni 0.5s forwards;
  z-index: -100;
}
@keyframes opFadeAni {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media screen and (max-width: 1700px) {
  .menu-push-right {
    left: 160px;
  }
}
/* contact */
.navContactPc a {
  width: calc(100% - 67px);
  display: block;
  background: #00c2ff;
  padding: 0.5em;
  text-align: center;
  margin: 15px auto 0 18px;
  color: #fff;
  font-size: 14px;
}
.navContactPc2 a {
  width: calc(100% - 50px);
  display: block;
  background: #00c2ff;
  padding: 0.5em;
  text-align: center;
  margin: 15px auto 0;
  color: #fff;
  font-size: 14px;
}
.navContactPc a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  /*  sp 
  *********************************************************/
  .menu-push-right {
    left: 0;
  }
  /* mv nav */
  .navPosition2 {
    width: 90%;
    position: static;
    bottom: 0;
    margin: -102px 0 0 auto;
    background: rgba(89, 145, 162, 0.96);
    padding: 1em 0 1em 0.5em;
    box-sizing: border-box;
  }
  .navLinkIn.is-active > .circle {
    border: solid 1.5px #fff;
  }
  #mvNav.opFade {
    animation: opFadeAni 0s forwards;
    z-index: 100;
  }
  @keyframes opFadeAni {
    from {
      opacity: 1;
    }
    to {
      opacity: 1;
    }
  }
  #mvNav.onFade {
    animation: onFadeAni 0.3s forwards;
  }

  nav {
    background: #5991a2;
    box-shadow: none;
    position: fixed;
    width: 100%;
    height: 60px;
    z-index: 10000;
    top: 0;
    transform: translateX(0);
    border-bottom: solid 1px #fff;
  }
  .navBox {
    width: 100%;
    height: 100%;
    background: #5991a2;
    z-index: 100;
  }
  .navPosition {
    width: 100%;
    position: relative;
    top: 60px;
    bottom: 0;
    width: 100%;
    padding: 0.5em 1.5em;
    box-sizing: border-box;
    background: #5991a2;
    border-top: solid 1px #fff;
  }
  .navLink .circle {
    width: 8px;
    height: 8px;
  }
  .navLink .navLinkIn.is-active > .circle {
    width: 8px;
    height: 8px;
  }
  .navLink2 {
    position: static;
    font-size: 14px;
    border-bottom: solid 1px #fff;
    padding: 0;
  }
  .navLink2:last-child {
    border-bottom: solid 0px #fff;
  }

  .navLink2::after {
    width: 0px;
  }
  .navLink2 .navLinkIn {
    margin: 0;
    position: relative;
    padding: 1em 0 1em 2em;
    display: block;
  }
  .navLink2 .circle {
    left: 10px;
  }
  .navLink2 .navLinkIn.is-active > .circle {
    left: 10px;
  }

  .navContact {
    width: 100%;
    background: #00c2ff;
    position: absolute;
    bottom: -2.4em;
    left: 0;
    text-align: center;
  }
  .navContact a {
    display: block;
    padding: 1em;
    color: #fff;
  }

  .openbtn3 {
    position: fixed;
    background: transparent;
    width: 60px;
    height: 60px;
    box-shadow: none;
    margin: 0;
    top: 0;
    right: 0;
    z-index: 10000;
  }

  /*ボタン内側*/
  .openbtn3 span {
    transition: all 0.4s;
    left: 18px;
    height: 1px;
    width: 40%;
  }

  .openbtn3.active span:nth-of-type(1),
  .openbtn3.active span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .openbtn3 span:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%);
  }
  .openbtn3 span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
  }

  /* ******************** */
  .navigation {
    display: none;
  }
  /* contact */
  .navContactPc a {
    width: calc(100% - 3.5em);
    margin: 12px auto 0;
  }
}
