@charset "utf-8";
/* CSS Document */
/*　ハンバーガーボタン　*/
@media screen and (min-width: 1081px) {
	.hamburger,.globalMenuSp,.ico_instagram {
		display : none;
	}
}
@media screen and (max-width: 1080px) {
.hamburger {
	display: block;
    position: fixed;
    z-index: 1000;
    right: 2vw;
    top: 4px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
}
.hamburger.active{
	background: none;
	z-index: 999999;
}
.hamburger span {
	display : block;
	position: absolute;
	width   : 30px;
	height  : 3px ;
	left    : 6px;
	background : #0061D0;
	-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: 10px;
}
.hamburger span:nth-child(2) {
	top: 20px;
}
.hamburger span:nth-child(3) {
  	top: 30px;
}

/* ナビ開いてる時のボタン */
.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),
.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;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	z-index: -99;
	top  : 0;
	left : 0;
	color: #fff;
	text-align: center;
	width: 100%;
	height: 100vh;
	opacity: 0;
	transition: opacity .6s ease, visibility .6s ease;
	background: rgba(255,255,255,0.90);
}
nav.globalMenuSp .menuLogoBox{
	height: 50px;
	display: flex;
	flex-direction:row-reverse;
	justify-content: flex-end;
	align-items: center;
	padding-left: 2vw;
	background: url(../img/common/BG_main_blue.jpg);
    background-size: 100%;
    background-position: left 0 bottom 20%;
}
nav.globalMenuSp .menuLogoBox .sub{
	font-size: 0.8em;
	font-weight: 600;
	text-align: left;
}
nav.globalMenuSp .menuLogoBox .menuLogo{
}
nav.globalMenuSp .menuLogoBox .menuLogo img{
	height: 100%;
}
nav.globalMenuSp ul {
	width: 100%;
	margin-bottom: 60px;
	padding: 0;
	background: #0061D0;
}
nav.globalMenuSp ul li {
	list-style-type: none;
	padding: 0;
	width: 50%;
	height: 100px;
	float: left;
	box-sizing: border-box;
	border-top: #FFFFFF 1px solid;
}
nav.globalMenuSp ul li:nth-child(even){
	border-left: #FFFFFF 1px solid;
}
nav.globalMenuSp ul li:last-child {
  	padding-bottom: 0;
}
nav.globalMenuSp ul li a {
	text-decoration :none;
	font-size: 1em;
	font-weight: bold;
	width: 100%;
    height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
}
nav.globalMenuSp ul li a .fas{
	margin-right: 0.5em;
}
nav.globalMenuSp ul li:last-child a {
	border-bottom: none;
}
nav.globalMenuSp .contactArea {
	max-width: 500px;
	margin: auto;
}
@media screen and (max-width: 767px) {
	nav.globalMenuSp .menuLogoBox{
		height: 50px;
	}
	nav.globalMenuSp ul {
		margin-bottom: 20px;
	}
	nav.globalMenuSp ul li {
		height: 60px;
	}
}

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