@charset "utf-8";
/* CSS Document */
/*　ハンバーガーボタン　*/
@media screen and (min-width: 1080px) {
	.hamburger,.globalMenuSp,.ico_instagram {
		display : none;
	}
}
@media screen and (max-width: 1080px) {
.hamburger {
	display: block;
    position: fixed;
    z-index: 1000;
    right: 2vw;
    top: 9px;
    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 : #2f2f2f;
	-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;
}
	
/* instagramボタン */
.ico_instagram{
	display: block;
	position: fixed;
    color: #2f2f2f;
    z-index: 999;
    font-size: 30px;
    right: 8.5vw;
	top: 15px;
}

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

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
	top: 16px;
	background : #2f2f2f;
	-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: #f3f3f3;
}
nav.globalMenuSp .menuLogoBox{
	height: 70px;
	display: flex;
	align-items: center;
	padding-left: 2vw;
	background: #ffea00;
}
nav.globalMenuSp .menuLogoBox .menuLogo{
	display: block;
	height: 40px;
}
nav.globalMenuSp .menuLogoBox .menuLogo img{
	height: 100%;
}
nav.globalMenuSp ul {
	width: 100%;
	margin-bottom: 60px;
	padding: 0;
	background: #ffea00;
}
nav.globalMenuSp ul li {
	list-style-type: none;
	padding: 0;
	width: 50%;
	height: 100px;
	float: left;
	box-sizing: border-box;
	border-top: #f3f3f3 1px solid;
}
nav.globalMenuSp ul li:nth-child(even){
	border-left: #f3f3f3 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: #2f2f2f;
	transform: rotate(0.03deg);
	/*
	box-sizing: border-box;
	border-bottom: solid 1px #CCCCCC;
	*/
}
nav.globalMenuSp ul li:last-child a {
	border-bottom: none;
}
nav.globalMenuSp .prSection {
	margin-bottom: 50px;
}
nav.globalMenuSp .prSection .prArea .infoBox .tel .telCap{
	color: #2f2f2f;
}

@media screen and (max-width: 767px) {
	nav.globalMenuSp .menuLogoBox{
		height: 60px;
	}
	nav.globalMenuSp ul {
		margin-bottom: 20px;
	}
	nav.globalMenuSp ul li {
		height: 60px;
	}
	/* instagramボタン */
	.ico_instagram{
		right: 58px;
		top: 16px;
	}
}

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