/*====================================================================================*/
/* Common
/*====================================================================================*/
.MenuPc{
	/* Layout */
	position:fixed;
	z-index:1000;
    width: 100vw;
    height:65px;
	top: 0;
    left: 0;
    padding-bottom: 15px;

	font-family: "kozuka-gothic-pro", sans-serif;
	font-weight:bold;
	background-color:lightgray;
	
	/* animation */	
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
	
}

.MenuPc > a{
	color:white;
}
.MenuPc > a > .logo{
    position: absolute;
	margin-left: 50px;
    margin-top: 8px;
    height: 50px;		
    display:inline-block;
}
.MenuPc > a > .text {
	padding-top:10px;
}

.MenuPc > a > .logo > img{
	height:100%;
}
/* LIST */
.MenuPc > .Menu{
	position:absolute;
    padding-right: 50px;
	top: 24px;
    left: 30px;
	width:100%;
    text-align: left;
}
.MenuPc > .Menu li{
	margin-right:30px;
	display:inline-block;
	cursor:pointer;
    color: black;

	/* Font */
    font-weight: bold;
	
	/* animation */	
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;

}

.MenuPc > .Menu li{
  color:black;
  position: relative;
  display: inline-block;
  text-decoration: none;
  outline: none;
}
.MenuPc > .Menu li a:visit {
  color:black;
}

/* SNS */
.MenuPc > .Sns{
	/* Layout */
	position:absolute;
	top: 100vh;
    left: 26px;
    transform: translateY(calc(-100% - 30px ));
}

.MenuPc > .Sns > .Parts{
	width:17px;
}

.MenuMobile{
	display:none;
}
.hbutton{
}
.hbutton:hover{
	
	color:darkgray !important;
	
	/* animation */	
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
}

/*====================================================================================*/
/* スマフォ縦表示
/*====================================================================================*/
/* ipad pro? */
@media only screen and (max-width: 1024px) and (orientation:portrait){
.MenuPc{
	display:none;
}

.MenuMobile{
	display:block;
	position:fixed;
	z-index:1000;
    width: 100vw;
    height: 1px;
}
/* Logo(top) */
.MenuMobile > a > .logo{
    position: absolute;
    top: 10px;
	left: 15px;
	height:40px;
}
/* Logo(top) */
.MenuMobile > a > .logo img{
	height:100%;
}
.MenuMobile > a > .text{
    position: absolute;
    top: 15px;
    left: 15px;
	height:40px;
}


.BasicHeaderMenu{
    overflow: hidden;
	background-color:white;
	width:100vw;
    height:  0px;
	position:absolute;
	top:0;
	left:0;
	padding-left:0px;
	
	/* animation */
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;	
}
/* サンドイッチマーク ____________ */
.HeaderMenuIcon{
position: absolute;
    top: 7px;
    left: 100%;
    transform: translate(calc(-100% - 7px));
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding-top: 5px;
    padding-left: 5px;
}
.MenuIconBar{
	width: 20px;
    height: 1px;
    background-color: black;
    margin-bottom: 6px;
    
	/* animation For Rotate */	
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.rotate45 {
    -moz-transform: translate(0px,10px) rotate(45deg);
    -webkit-transform: translate(0px,10px) rotate(45deg);
    -o-transform: translate(0px,10px) rotate(45deg);
    -ms-transform: translate(0px,10px) rotate(45deg);
    transform: translate(0px,7px) rotate(45deg);
}
.rotate_45{
	-moz-transform: translate(0px,-2px) rotate(-45deg);
	-webkit-transform: translate(0px,-2px) rotate(-45deg);
	-o-transform: translate(0px,-2px) rotate(-45deg);
	-ms-transform: translate(0px,-2px) rotate(-45deg);
	transform: translate(0px,0px) rotate(-45deg);
}
/* メニューリスト ____________ */
.HeaderMenuListWrapper{
	padding-top:100px;
    text-align: center;
}
.MenuImageWrapper{

}
.MenuLogoWrapper{
    display: inline-block;
	padding-left:0px;
	width:100px;
	margin-bottom: calc(100vh / 15);
}
.MenuLogoWrapper img{
}
.HeaderMenuListWrapper li{
	list-style: none;
	letter-spacing:0.1em;
    margin-bottom: calc(100vh / 20);
    color:black !important;
}


.BasicMenuLogoImg{
    width: 150px;
    margin-bottom: 50px;
}
.BasicMenuSnsImg{
	width:50px;
}
.PageContentsImageCutScrollWrapper{
	top:100vh;
}
}
/*====================================================================================*/
/* スマフォ　横表示
/*====================================================================================*/
@media only screen and (max-width: 1024px) and (orientation:landscape){

}