@charset "UTF-8";
.nav_mb {
  background: #fff;
  height: 50px;
  padding: 0 10px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.nav_mb .key_icon:hover {
  opacity: 0.5;
}
.nav_mb .key_icon i {
  font-size: 30px;
  color: #26A69A;
}
.nav_mb .nav_frame {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
.nav_mb .nav_frame .fixed_icon {
  margin-right: 10px;
}
.nav_mb .nav_frame .fixed_icon img {
  width: 40px;
  border-radius: 100%;
  background-color: #fff;
  border: solid 3px yellow;
}
.nav_mb .nav_frame .nav_txt {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.nav_mb .nav_frame .nav_txt .hd_name1 {
  font-size: 16px;
  color: #fff;
  text-shadow: 1px 2px 3px #555;
}
.nav_mb .nav_frame .nav_txt .hd_name2 {
  font-size: 14px;
  color: #777;
}

/* drawer menu */
.drawer-menu {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  padding: 50px 0 0;
  background: #fff;
  z-index: 1;
  opacity: 0;
  right: -300px;
  overflow-y: auto;
  transition-duration: 0.1s;
  transition-delay: 0s;
}
.drawer-menu h3 {
  padding: 5px 0;
  text-align: center;
  color: #fff;
}

/* checkbox */
.check {
  display: none;
}

/* menu button - label tag */
.menu-btn {
  box-sizing: content-box !important;
  position: fixed;
  display: block;
  top: 0;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
  font-size: 10px;
  text-align: center;
  cursor: pointer;
  z-index: 4;
  padding: 5px;
}

.bar {
  position: absolute;
  top: 15px;
  left: 10px;
  display: block;
  width: 30px;
  height: 2px;
  background: #3299FF;
  transition: all 0.1s;
  transform-origin: left top;
}

.bar.middle {
  top: 24px;
  opacity: 1;
}

.bar.bottom {
  top: 33px;
  transform-origin: left bottom;
}

.menu-btn__text {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  color: #ccc;
  transition: all 0.1s;
  display: block;
  visibility: visible;
  opacity: 1;
}

.menu-btn:hover .bar {
  background: #26A69A;
}

.menu-btn:hover .menu-btn__text {
  color: #ccc;
}

.close-menu {
  position: fixed;
  top: 0;
  right: 300px;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  transition-property: all;
  transition-duration: 0.1s;
  transition-delay: 0s;
  visibility: hidden;
  opacity: 0;
}

/* checked */
.check:checked ~ .drawer-menu {
  transition-delay: 0.1s;
  transform: none;
  opacity: 1;
  z-index: 3;
  right: 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.check:checked ~ .contents {
  transition-delay: 0s;
  transform: translateX(-300px);
}

.check:checked ~ .menu-btn .menu-btn__text {
  visibility: hidden;
  opacity: 0;
}

.check:checked ~ .menu-btn .bar.top {
  width: 46px;
  transform: rotate(45deg);
  top: 8px;
}

.check:checked ~ .menu-btn .bar.middle {
  opacity: 0;
}

.check:checked ~ .menu-btn .bar.bottom {
  width: 46px;
  top: 40px;
  transform: rotate(-45deg);
}

.check:checked ~ .close-menu {
  transition-duration: 0.5s;
  transition-delay: 0.1s;
  background: rgba(255, 255, 255, 0.5);
  visibility: visible;
  opacity: 1;
  z-index: 3;
}

.accshow a:hover + .test {
  background: #f00;
}

/*インナー*/
/*ボックス全体*/
.accbox {
  padding: 0;
  background: #26A69A;
}
.accbox label, .accbox a {
  border-bottom: solid 1px #fff;
  box-sizing: border-box;
}

/*ラベル*/
.accbox label, .accbox a {
  /*display: block;*/
  margin: 0;
  padding: 15px 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.1s;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  font-family: "Noto Sans Japanese", serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/*アイコンを表示*/
/* .accbox label:after {
     font-weight: bold;
     margin-left:.5rem;
     content: "\f107";
     font-family: "Font Awesome 5 Free";
     padding-right: 8px;
 }
 .accbox .no_icon{
     &:after{
         content:' ';
     }
 }*/
/*ラベルホバー時*/
.accbox label:hover,
.accbox a:hover {
  opacity: 0.5;
}

/*チェックは隠す*/
.accbox input {
  display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
  height: auto;
  padding: 5px;
  background: #444;
  opacity: 1;
}

.accbox .accshow p {
  margin: 15px 10px;
}

.accshow a {
  margin-left: 2rem;
  color: #ccc;
  padding: 5px 0;
}

/*アイコンを入れ替える*/
/*.cssacc:checked + label:after {
    content: '\f106';
}
.cssacc:checked + .no_icon:after {
    content: ' ';
}*/
label i:nth-child(2) {
  display: none;
}

/*アイコンを入れ替える*/
.accbox label i, .accbox a i {
  margin-left: 5px;
  font-size: 20px;
  width: 50px;
  flex: none;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.cssacc:checked + label i:nth-child(1) {
  display: none;
}

.cssacc:checked + label i:nth-child(2) {
  display: inline-block;
}

#square-button {
  width: 80px;
  height: 80px;
  background: #232323;
}

#square-button.blue {
  background: #21759b;
}

.accbox a i {
  margin-right: 5px;
}

.hd_nav_txt span {
  font-weight: bold;
}

/*タブレット**************************************************************************************************************/
/*デスクトップ***********************************************************************************************************/
@media all and (min-width: 768px) {
  .nav_mb .nav_frame .nav_txt .hd_name1 {
    font-size: 24px;
  }
}
/*デスクトップ***********************************************************************************************************/
@media all and (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
  .nav_mb {
    justify-content: center;
  }
  .hd_nav_txt span {
    font-size: 16px;
  }
}
/*# sourceMappingURL=maps/nav.css.map */
