.menu-pc {
	display: block;
	position: fixed;
	z-index : 3;
	right : 15px;
	top   : 12px;
}

.menu-item-btn {
  text-decoration: none;
}

.menu-item {
    text-decoration: none;
    color: #0C1439;
    font-weight: 500;
    padding-right: 15px;
    font-size: 15px;
    display: inline-block;
    border-bottom: 1px solid transparent;

    line-height: 52px;
    transition: border-color 0.3s ease;
}

.menu-item:hover {
    color: rgba(12, 20, 57, 0.8);
}

.menu-item:hover,
.menu-item.active
{
    border-bottom-color: #0C1439;
}

.btn-language {
    height: 40px;
    padding: 0 12px;
    border-radius: 20px;
    text-align: center;
    margin-left: 15px;
	margin-right: 25px;
    background-color: #FFFFFF;
    border: 1px solid #D4D8E9;
}

.btn-auth {
  text-decoration: none;
    color: #0C1439;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    background-color: #FFFFFF;
    border: 1px solid #D4D8E9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-auth:hover {
    color: rgba(12, 20, 57, 0.8);
}

.btn-register {
  text-decoration: none;
    color: #0C1439;
    height: 40px;
    padding: 0 16px;
    border-radius: 8px;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}

.btn-register:hover {
    color: rgba(255, 255, 255, 0.8);
}

.btn-auth img {
    margin-right: 4px;
}

.menu-separate {
    height: 40px;
    width: 1px;
    background-color: #D4D8E9;
    margin-left: 15px;
}

.menu-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-sp {
  display: flex !important;;
  position: fixed;
  flex-direction: row;
  align-items: center;
  z-index: 3;
  right: 0px;
  top: 0px;
  padding: 10px;
  width: auto;
  height: auto;
}
.dropdown {
  display: flex;
  align-items: center;
}
/*　ハンバーガーボタン　*/
.hamburger {
  display: flex;
  flex-direction: column; /* Sắp xếp thanh menu theo cột */
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  position: relative;
	/*
	right : 13px;
	top   : 12px;
	width : 42px;
	height: 42px;
	*/
	cursor: pointer;
	text-align: center;
  }
  .hamburger span {
	display : block;
	position: absolute;
	width   : 30px;
	height  : 2px ;
	left    : 6px;
	background : black;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition   : 0.5s ease-in-out;
	transition        : 0.5s ease-in-out;
  }
  .hamburger span:nth-child(1) {
	top: 8px;
  }
  .hamburger span:nth-child(2) {
	top: 18px;
  }
  .hamburger span:nth-child(3) {
	top: 28px;
  }

  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
	top : 20px;
	left: 6px;
	/* background : #fff; */
	-webkit-transform: rotate(315deg);
	-moz-transform   : rotate(315deg);
	transform        : rotate(315deg);
  }

  .hamburger.active span:nth-child(2){
    opacity: 0;
    visibility: hidden;
  }
  .hamburger.active span:nth-child(3) {
	top: 20px;
	/* background : #fff; */
	-webkit-transform: rotate(-315deg);
	-moz-transform   : rotate(-315deg);
	transform        : rotate(-315deg);
  }

  nav.globalMenuSp {
	position: fixed;
	z-index : 2;
	top  : 64px;
	right : 0;
	color: #fff;
	background: #FFFFFF;
	text-align: left;
	width: 100%;
	opacity: 0;
	transition: opacity .6s ease, visibility .6s ease;
    padding: 24px 24px;
    border-bottom: 1px solid #F4F5FC;
  }

  nav.globalMenuSp ul {
	margin: 0 auto;
	padding: 0;
	width: 100%;
  }

  nav.globalMenuSp ul li {
	list-style-type: none;
	padding: 0;
	width: 100%;
	transition: .4s all;
  }
  nav.globalMenuSp ul li:last-child {
	padding-bottom: 0;
  }
  /* nav.globalMenuSp ul li:hover{
	background :#ddd;
  } */

  nav.globalMenuSp ul li a {
	display: block;
	color: #0C1439;
	padding: 16px 0px;
    font-size: 15px;
    font-weight: 500;
	text-decoration :none;
  }

  nav.globalMenuSp ul li .btn-register {
    color: #FFFFFF !important;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
  }

  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
	opacity: 100;

  }

  nav.globalMenuSp ul li .btn-auth {
    display: flex;
    height: 48px;
    position: relative;
  }

  nav.globalMenuSp ul li .btn-auth img {
    position: absolute;
    left: 20px;
  }

  nav.globalMenuSp ul li .btn-language {
    margin: 0;
  }

.bottom-border {
    border-bottom: 1px solid #D4D8E9;
}


@media only screen and (max-width: 1000px) {
    .menu-pc.hide-sp {
        display: none !important;
    }

    .hamburger.hide-pc {
        display: block !important;
    }

    .language-sp.hide-pc {
        display: block !important;
    }
}
