/* Common */
/*------------------------------------*/
.hide {
  display: none !important;
}
.hideSp {
  display: none !important;
}
@media (min-width: 768px) {
  .hideSp {
    display: inherit !important;
  }
  .hidePc {
    display: none !important;
  }
}


/*    Hamburger Menu
=====================================================*/
/* @media (max-width: 768px){ */
	.m_hamb{
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		align-items: center!important;
		justify-content: center!important;
    cursor: pointer;
	}
	.m_hamb_inr{
    width: 4.9vw;
    height: calc(4.9vw * 0.864);
    position: relative;
  }
	.m_hamb_inr div{
		width: inherit;
    height: calc(4.9vw * 0.108);
    border-radius: calc(4.9vw * 0.162);
		display: block;
		background-color: #000;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		transition: transform .2s, top .2s, bottom .2s;
		transform: rotate(0deg);
	}
	.m_hamb .m_hamb_inr_top{
		bottom: auto;
	}
	.m_hamb .m_hamb_inr_btm{
		top: auto;
	}

	/*-- Opened --*/
	.m_hamb.js_open .m_hamb_inr_mdl{
		opacity: 0;
	}
	.m_hamb.js_open .m_hamb_inr_top{
		transform: rotate(-45deg);
		bottom: 0;
	}
	.m_hamb.js_open .m_hamb_inr_btm{
		transform: rotate(45deg);
		top: 0;
	}
/* } */
@media (min-width: 768px){
  .m_hamb_inr{
    width: 37px;
    height: 32px;
    position: relative;
  }
  .m_hamb_inr div{
		height: 4px;
    border-radius: 6px;
	}
}
/*-- Scroll prevent --*/
.m_scrollPrevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}


/* Modal */
/*------------------------------------*/
.modal-area{
  position: fixed;
  top: 0;
  left :0;
  width :100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .68);
  z-index: 20;
}
.modal-area .modal-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
  height: auto;
  max-width: 80%;
  max-height: 80%;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 5px;
}
.modal-area .text{
  margin: 0;
}
.modal-area .buttons{
  text-align: center;
  margin-top: 30px;
}
.modal-area .buttons .button{
  display: inline-block;
  background-color: $brand_color;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  line-height: 1;
  color: #ffffff;
  margin: 10px 0 0 0;
}
.modal-area .buttons .button:hover{
  opacity: 0.7;
}
.modal-area .buttons .button.close{
  background-color: #666666;
  border-color: #666666;
}

@media (min-width: 768px) {
  .modal-area .buttons .button{
    margin: 0 10px 0 10px;
    width: 160px;
  }
  .modal-area .modal-frame {  
    width: auto;
  }
}