@charset "UTF-8";
/*
***
***
***
***
***
*/
/*
@keyframes slideOut {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate($negative, 0);
    }
}

@keyframes slideIn {
    0% {
        transform: translate($negative, 0);
    }
    100% {
        transform: translate(0, 0);
    }
}
*/
/* nav 制御 */
@keyframes slideOut {
  0% {
    margin-left: 0;
    opacity: 1;
  }
  100% {
    margin-left: -330px;
    opacity: 0;
  }
}
@keyframes slideIn {
  0% {
    margin-left: -330px;
    opacity: 0;
  }
  100% {
    margin-left: 0;
    opacity: 1;
  }
}
/* main 制御 */
@keyframes slideOut2 {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: 330px;
  }
}
@keyframes slideIn2 {
  0% {
    margin-left: 330px;
  }
  100% {
    margin-left: 0;
  }
}
#navBtn {
  display: none;
}
@media screen and (max-width: 800px) {
  #navBtn {
    /*display: flex;*/
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10001;
    width: 4em;
    height: 4em;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    border-radius: 0 0 0 10px;
    color: #fff;
    font-size: 12px;
  }
  #navBtn::before {
    content: "Close";
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  #navBtn::before {
    content: "Menu";
  }
}
@media screen and (max-width: 800px) {
  #navBtn:hover {
    background: #6dace2;
  }
  #navBtn.navBtnActive {
    background: #6dace2;
  }
  #navBtn.navBtnActive::before {
    content: "Menu";
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  #navBtn.navBtnActive::before {
    content: "Close";
  }
}

.container {
  position: relative;
  width: 100%;
  /*
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  */
}

.contents {
  max-width: 1200px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
}
main {
  /*
  position: relative;
  font-size: 16px;
  &.slideMain {
      width: 100%;
      animation-name: slideIn2;
  }
  @media screen and (max-width: var.$breakPoint1) {
      margin-left: $positive;
      width: calc(100% - $positive);
      animation-duration: 0.3s;
      animation-fill-mode: forwards;
      animation-name: slideOut2;
      width: 100%;
      animation-name: slideIn2;
      &.slideMain {
          animation-name: slideOut2;
          filter: blur(3px);
      }
  }
  */
}

nav {
  width: 100%;
  margin-bottom: 2em;
  background-color: #f5f5f5;
}
nav a {
  border-radius: 7px;
  display: block;
  width: 100%;
  color: #333;
}
nav a:hover {
  background: #6dace2;
  color: #fff;
  /*border-radius: 0 50px 50px 0;*/
}
nav > ul {
  padding: 1em;
  width: 100%;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 800px) {
  nav > ul {
    padding: 0;
  }
}
nav > ul > li {
  position: relative;
  padding: 0 1em;
}
nav > ul > li > a {
  width: 100%;
  display: block;
  padding: 0.7em 2em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 800px) {
  nav > ul > li > a {
    text-align: left;
  }
}
nav > ul > li:before {
  content: "";
  width: 1px;
  height: 17px;
  background: #ccc;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 800px) {
  nav > ul > li:before {
    content: none;
  }
}
nav > ul > li:last-of-type:before {
  content: none;
}
nav > ul > li > ul {
  padding: 1em;
  background-color: #f5f5f5;
  display: none;
  position: absolute;
  z-index: 2;
  width: 30em;
  top: 42px;
  left: 0;
  border-radius: 0 0 7px 7px;
}
@media screen and (max-width: 800px) {
  nav > ul > li > ul {
    padding: 0.7em 1em;
    display: block;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
  }
}
nav > ul > li > ul > li {
  margin-bottom: 0.7em;
}
nav > ul > li > ul > li a {
  background-color: #fff;
  width: 100%;
  display: block;
  padding: 0.5em 1em;
  text-align: left;
}
nav > ul > li > ul > li:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 800px) {
  nav > ul > li > ul > li {
    margin-bottom: 0.3em;
  }
}
nav > ul > li:hover > ul {
  display: block;
}
@media screen and (max-width: 800px) {
  nav > ul {
    position: sticky;
    top: 0;
    padding: 1em 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
  nav > ul > li {
    margin-bottom: 0.7em;
  }
  nav > ul > li > a {
    padding: 0 0.7em;
  }
  nav > ul > li > ul > li > a {
    padding: 0em 0.7em 0em 1.7em;
    position: relative;
  }
  nav > ul > li > ul > li > a:before {
    content: "-";
    position: absolute;
    left: 1.1em;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 800px) {
  nav {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    animation-name: slideIn;
    margin-left: 0;
    opacity: 1;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    z-index: 10000;
    padding-right: 15px;
    border-right: 1px solid #dddddd;
    /*
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.25), 0 0 7px 0 #ffffff, -4px 0 5px 0 #ffffff, -4px -6px 15px #ffffff;

    border-radius: 0 15px 0 0;
    &.slideNav {
        animation-name: slideOut;
    }
    */
    animation-name: slideOut;
  }
  nav.slideNav {
    animation-name: slideIn;
  }
}
@media screen and (max-width: 800px) {
  nav {
    display: block;
    display: none;
    /*************/
  }
}
nav li.current-menu-item > a {
  background: #6dace2;
  color: #fff;
}

.siteNavBtn {
  display: none;
}
@media screen and (max-width: 800px) {
  .siteNavBtn {
    display: block;
    position: absolute;
    z-index: 65536;
    top: -50px;
    right: -50px;
    border: none;
  }
  .siteNavBtn::before {
    transition: 0.3s;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 0 7px;
    color: #333;
    background: rgba(0, 0, 0, 0.07);
    content: "Menu";
  }
  .siteNavBtn:checked::before {
    content: "Close";
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
  }
  .siteNavBtn:checked + .siteNavWrap {
    left: 0;
  }
}

@media screen and (max-width: 800px) {
  .siteNavWrap {
    position: fixed;
    z-index: 65535;
    top: 0;
    left: -200%;
    width: 100%;
    height: 100%;
    transition: left 0.5s, right 0.5s;
    background-color: rgba(255, 255, 255, 0.95);
  }
}/*# sourceMappingURL=navi.css.map */