/*============
nav ハンバーガーメニュー
=============*/
.menu_nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 6;
  opacity: 0;
  font-size: 0.785rem;
}


.menu-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #ddd;
}


.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list a {
  color: #000000!important;
  text-decoration: none !important;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.menu-item i:first-child {
  color: #F6B42C;
}

.menu-item i {
  color: #999;
}

.menu-item span {
  flex: 1;
  margin-left: 10px;
}

.menu-item .badge {
  background-color: #ff5722;
  color: #fff;
  padding: 5px 10px;
  border-radius: 12px;
  /* font-size: 12px; */
}

.menu-section {
  padding: 10px 15px;
  background-color: #f5f5f5;
  color: #999;
  /* font-size: 14px; */
}

.menu-item .status {
  /* font-size: 12px; */
  padding: 5px 8px;
  border-radius: 12px;
}

.menu-item img {
  width: 20px;
}



.open .menu_nav {
  left: 0;
  opacity: 1;
}


@media screen and (max-width: 767px) {
  .menu_nav {
    left: -220px;
    width: 220px;
  }
  .menu_nav .inner ul li a {
    font-size: 0.785rem;

  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 10px;
  left: 15px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 6;
  color: #ffffff;
}
.open .toggle_btn {
  left: 330px;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: #000000;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.open .toggle_btn span:nth-child(1), .open .toggle_btn span:nth-child(3) {
  width: 16px;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translate(-1px,4px) rotate(-45deg);
  transform: translate(-1px,4px) rotate(-45deg);
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translate(-1px,-4px) rotate(45deg);
  transform: translate(-1px,-4px) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .open .toggle_btn {
    left: 270px;
  }
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 5;
  cursor: pointer;
}
/*============
main
=============*/

.open main {
  margin-left: 300px;
}

/* ========== meHug 共通ボタンスタイル（Bootstrap .btn を上書き） ========== */
.btn-primary {
  background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%) !important;
  border: none !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.35);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: #f1f5f9 !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
  padding: 0.5rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #e2e8f0 !important;
  border-color: #cbd5e1 !important;
  color: #334155 !important;
  transform: translateY(-1px);
}
.btn-secondary:active {
  transform: translateY(0);
}
