/*# PC用メニュー */

body.is-fixed .nav--typeA {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

.fullscreenmenu{
    display: block;
	width: 1140px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 30px;
	margin-bottom: 20px;
}

.nav-waku2{
    display: block;
	font-size: 0;
	display:flex;
	display:-moz-flex;
	display:-o-flex;
	display:-webkit-flex;
	display:-ms-flex;
	justify-content:space-between;
	-moz-justify-content:space-between;
	-o-justify-content:space-between;
	-webkit-justify-content:space-between;
	-ms-justify-content:space-between;
}

.nav-waku2 div{
	width: 14.285%;
	font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    z-index: 1; /* 必要であればリンク要素の重なりのベース順序指定 */
	color: #000000;
	text-align: left;
	font-size: 1.5rem;
	letter-spacing: 1px;
	display: inline-block;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #3e6eb3;
	padding: 5px;
}

.nav-waku2 div a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 2; /* 必要であればリンク要素の重なりのベース順序指定 */
}

.nav-waku2 div:hover {
	color: #f65d5d;
}

.navimenu {
	display: none;
}

.nav-waku2 .pc-non {
	display: none;
}

.nav-waku2 div.sp-logo{
	display: none;
}

@media screen and (max-width:1200px) {

.fullscreenmenu{
	width: 95%;
}
	
.nav-waku2 div{
	font-size: 1.3rem;
}
	
}

@media screen and (max-width:992px) {
	
.fullscreenmenu{
    display: block;
	margin-top: 0px;
	margin-bottom: 0px;
}

.nav-waku2{
	position:relative;
    width: 100%;
	text-align: center;
	display: block;
	display:-moz-block;
	display:-o-block;
	display:-webkit-block;
	display:-ms-block;
	justify-content:normal;
	-moz-justify-content:normal;
	-o-justify-content:normal;
	-webkit-justify-content:normal;
	-ms-justify-content:normal;
}

.nav-waku2 div{
    width: 200px;
	height: 40px;
	line-height: 40px;
    position: relative;
    z-index: 1001; /* 必要であればリンク要素の重なりのベース順序指定 */
	color: #ffffff;
	margin-top: 10px;
	text-align: center;
	font-size: 1.5rem;
	background-color: #4D9BE8;
    display: block;
	margin-right: auto;
	margin-left: auto;
	border-left-width: 0;
	border-left-style: none;
	border-left-color: #3e6eb3;
	padding: 0;
}
	
.nav-waku2 div.sp-logo{
    width: 200px;
	height: auto;
	line-height: 1;
    position: relative;
    z-index: 1001; /* 必要であればリンク要素の重なりのベース順序指定 */
	margin-top: 30px;
	margin-bottom: 20px;
	text-align: center;
	font-size: 1.5rem;
	background-color: transparent; /* 背景なし */
    display: block;
	margin-right: auto;
	margin-left: auto;
}
	
.nav-waku2 div::before{
    position: relative;
	content: '';
    left: 0;
}

.nav-waku2 div a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 2; /* 必要であればリンク要素の重なりのベース順序指定 */
}

.nav-waku2 div:hover {
	color: #f65d5d;
}
	
.nav-waku2 .pc-non {
    display: block;
}

.navimenu,
    .navimenu span {
    display: inline-block;
    -webkit-transition:all .4s;
    transition: all .4s;
    }

    .navimenu {
      position: fixed;
      top: 0px;
      right:  0px;
      width: 50px;
      height: 50px;
      z-index: 15000;
	background-color: #000000;
	cursor: pointer;
    }

    .navimenu span {
    position: absolute;
    left: 10px;
    right: 10px;
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    z-index: 1500;
    }

    .navimenu span:nth-of-type(1) {
    top: 12px;
    }

    .navimenu span:nth-of-type(2) {
    top: 24px;
    }

    .navimenu span:nth-of-type(3) {
    top: 36px;
    }

    .navimenu.active span:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #fff;
    top: 24px;
    }

    .navimenu.active span:nth-of-type(2) {
    opacity: 0;
    background-color: #fff;
    }

    .navimenu.active span:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    background-color: #fff;
    top: 24px;
    }
	
    #nav {
    position: fixed;
    top: 0;
    right: 0;
      z-index: 14000;
    width: 100%;
    height: 100vh;
    opacity: 0;
    background: rgba(241,241,241,1);
    transition: all 0.3s ease-in-out;
    visibility:hidden;
    }

    #nav.active{
    right: 0;
    opacity: 1;
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    }
	
}

