@charset "UTF-8";
/* CSS Document */

/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 99;
  left : 13px;
  top   : 10px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
	z-index : 999!important; 
}
.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) {width   : 30px;
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {width   : 30px;
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/*-----------------------------------*/

nav.globalMenuSp {
  position: fixed;
  z-index : 9;
  top  : 0px;
  left : 0;
  color: #111;
  background: rgba(255,255,255,0.9);
  text-align: center;
  transform: translateX(-120%);
  transition: all 0.6s;
  width: 100%;
	box-shadow: 0 3px 10px #ccc;
}

nav.globalMenuSp ul {
  background: rgba(255,255,255,0.8);
  margin: 55px auto 0;
  padding: 0;
  width: 100%;
display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
	margin: 0;
  width: 48%; 
	line-height: 1.3;
	/*height: 60px;*/
  border-top: 1px solid #ccc;

}

nav.globalMenuSp ul li a {
	width: 100%;
  padding: 0;
  text-decoration :none;
	z-index: 8;
color: #555;
	
	display: flex;
align-items: center;
	align-content:center;
	height: 65px;
}

nav.globalMenuSp ul li a p { display: block; margin: 0 auto; padding: 0;vertical-align: middle; }

/*nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}*/

nav.globalMenuSp ul li a:hover{
border-bottom: solid 1px #000;transition:none; margin: 0 0 -1px;
opacity: 1.0;
/*background :#ddd;*/
}


/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}








/*<!--ハンバーガーメーニュー部のPC用-->*/

@media screen and (min-width:1150px) {

.hamburger {
  display : block;
  position: relative;
  z-index : 99;
  left : 0;
  top   : 0;
  width : 100%;
  height: auto;
  cursor: pointer;
  text-align: center;
}
.hamburger span { display : none;}


nav.globalMenuSp {
 position: relative;
 z-index : 3;
 background: none;
 text-align: center;
 transform: translateX(0%);
 transition: none;
 width: 100%;
	box-shadow: none;
}

nav.globalMenuSp ul {
 background: none;
 margin: 5px auto 0;
 padding: 0;
 width: 100%;
	display: flex;
	justify-content: space-around;
}

nav.globalMenuSp ul li {
 list-style-type: none;
 padding: 0;
	margin: 0;
 width: auto;
 border-top: none;
	width:auto;
	text-align: center; 
}

nav.globalMenuSp ul li.home { display: none;}

nav.globalMenuSp ul li:last-child {
 padding-bottom: 0;
 border-bottom: none;
}
nav.globalMenuSp ul li a:hover{
 /*background :rgba(0,0,0,0.5);*/
	
}

nav.globalMenuSp ul li a {
 /*display:block;*/
 color: #333;
	font-size: 95%;
 padding:6px 1px 2px; height: auto;
	margin: 0;
 text-decoration :none;
	width: 100%;
	text-align: center;
	display: block;
	/*font-family: 'M PLUS 1p', sans-serif;*/
}
nav.globalMenuSp ul li a:hover {
color: #aaa; /*font-size: 102%;text-shadow: 0px 0px 4px #222;*/ display: inline-block; text-align: center; transition:all 0.4s ease;
padding:6px 1px 2px;
margin: -6px 0 0;
/*border-bottom: solid 3px #003c88;*/ border-bottom: none;
}


/*--------------------------- menu途中固定 ------------------------------*/
.sidefixed {
	position:fixed;
	transition:all 0.3s ease;
	top:0; 
	left:0;
	height:80px;
	width: 100%;	
	}

.header2.sidefixed { 
	top:0;
	margin:0; 
	padding:0;
	z-index:99;
	background: rgba(255,255,255,1.0);
	box-shadow:0px 0px 8px #ccc;
	width: 100%;	
	text-align: center;
	
	}

.header2.sidefixed .headerLogoSmall {display: block; margin-top: 12px;}
.header2.sidefixed .menu { margin-top: 8px; font-size: 90%;}
.header2.sidefixed .snsicons { top:3px; }



/***************************************/
}




