/*-------------------------------------------
Menu
-------------------------------------------*/
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.0);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 7;
}

.overlay::after {
  content: " ";
  visibility: hidden;
  position: fixed;
  top: 40%;
  left: 0;
  display: block;
  width: 100%;
  height: 50px;
  color: rgba(255,255,255,0);
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(255,255,255,.7);
}

.side-open .overlay::after {
  visibility: visible;
  color: rgba(255,255,255,.8);
}

.side-menu {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  padding-top: 50px;
  text-align: left;
  font-size: 13px;
  border-left: 1px solid #4D9CA3;
  box-sizing: border-box;
  background: #DDF2F3;
  z-index: 3;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.side-open .side-menu {
  opacity: inherit;
}

.side-menu-label {
  position: fixed;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  background-color: #fff;
  width: 100%;
  height: 50px;
  z-index: 4;
  box-shadow: -3px -2px 4px rgba(0,0,0,1);
}

.side-menu-label a {
  display: block;
  height: 100%;
}

.side-menu-btn {
  position: fixed;
  top: 8px;
  right: 8px;
  width: auto;
  height: auto;
  padding: 5px;
  cursor: pointer;
  z-index: 10;
}

.ellipsis-v {
  position: relative;
  display: block;
  cursor: pointer;
  width: 30px;
  height: 26px;
}

.ellipsis-v .point {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 4px;
  margin: auto;
  background: #4C9CA4;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.ellipsis-v .point.top {
  top: 0;
}

.ellipsis-v .point.mid {
  top: 0;
  bottom: 0;
}

.ellipsis-v .point.bot {
  bottom: 0;
}

.side-open .top {
  width: 34px;
  height: 3px;
  background: #4C9CA4;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.side-open .mid {
  opacity: 0;
}

.side-open .bot {
  width: 34px;
  height: 3px;
  background: #4C9CA4;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.side-menu-item {
  font-weight: bold;
  font-size: 16px;
  padding: 0.7em 1em;
  border-top: 1px solid #7AC1C8;
  display: block;
}

.side-menu-item.mf__another-01 {
  color: #4D9CA3;
}

/* サイドメニューオープン */
.side-open .wrapper, .side-open .overlay, .side-open .side-menu-label,
.side-open footer {
  -webkit-transform: translate3d(-300px, 0, 0);
  transform: translate3d(-300px, 0, 0);
}

/* ロゴ */
.header-logo {
  width: 70%;
  max-width: 290px;
  position: relative;
  top: 50%;
  left: 15px;
  -ms-transform: translate(0%,-50%);
  -webkit-transform: translate(0%,-50%);
  transform: translate(0%,-50%);
}

.menu-wrap {
  background-color: #DDF2F3;
  color: #4D9CA3;
  border-bottom: 1px solid #7AC1C8;
}

.menu-first {
  font-weight: bold;
  font-size: 16px;
  padding: 1em 1em;
  border-top: 1px solid #7AC1C8;
}

.menu-item {
  padding: 0.7em 0 0.7em 2em;
  border-top: 1px dotted #7AC1C8;
}

.menu-item a {
  width: 100%;
  display: block;
  color: #4D9CA3;
}

.menu-item:first-child {
  border-top: none;
}

.menu-item.mf__another-01 {
  color: #4D9CA3;
  background-color: #F8F6F3;
  border-left: 6px solid #62BEC6;
}

.menu-item.mf__listPage {
  padding-left: 1em;
}

.menu-list {
  font-weight: normal;
  background-color: #fff;
  border-top: 1px solid #7AC1C8;
}

/*-------------------------------------------
media query
-------------------------------------------*/
@media print,screen and (min-width: 750px) {

  .overlay {
    display: none;
  }

  .side-menu {
    opacity: inherit;
    top: inherit;
    right: inherit;
    width: auto;
    height: auto;
    padding-top: 50px;
    border-left: none;
    background-color: rgba(0,0,0,0);
  }

  .side-open .side-menu {
  }

  .side-menu-label {
    height: 50px;
  }

  .side-menu-label a {
    /*max-width: 50vw;*/
    max-width: 290px;
  }

  .side-open .top {
  }

  .side-open .mid {
  }

  .side-open .bot {
  }

  .side-menu-item {
  }

  .side-menu-item.mf__another-01.mf__onlySP {
    display: none;
  }

  /* ロゴ */
  .header-logo {
    width: 100%;
    max-width: 290px;
    top: 50%;
    left: 15px;
  }

  /* サイドメニューオープン解除 */
  .side-open .wrapper, .side-open .overlay, .side-open .side-menu-label,
  .side-open footer {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }

  .menu-wrap {
    width: 100vw;
  }

  .menu-wrap dl {
    width: 50%;
    float: left;
    background-color: #DDF2F3;
  }

  .menu-first {
    color: #fff;
    background-color: #4D9CA3;
    border-bottom: 1px solid #7AC1C8;
    border-right: 1px solid #7AC1C8;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 2px -2px 4px rgba(0,0,0,1);
  }

  .menu-first.is-open {
    color: #4D9CA3;
    background-color: #DDF2F3;
  }

  .menu-item {
  }


  .menu-item a {
  }

  .menu-item:first-child {
  }

  .menu-item.mf__another-01 {
  }

  .menu-item.mf__listPage {
  }

  .menu-list {
    border-top: none;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
  }
}
