/*NAVIGATION*/
nav {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	/*background: rgba(255,255,255,1.0);*/
	opacity: 1;
	text-align: center;
	transition: 0.15s linear;
	padding: 15px 0 0;
}
nav.__2nd {
	background: rgba(255,255,255,1.0);
	position: static;
	top: inherit;
	left: inherit;
}
nav .__menu {
	display: flex;
	align-items: stretch;
	justify-content: center;
	font-size: 1rem;
	font-weight: 700;
	/*height: 70px;*/
}

nav .__menu > div {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.2s linear;
	padding: 0 5px;
	/*width: calc(100% / 9);*/
	width: 150px;
}
nav .__menu > div a {
	display: block;
	/*width: 200px;*/
	width: 100%;
	padding: 10px 10px;
	color: rgba(255,255,255,1.0);
	background: rgba(234,104,152,1.0);
	transition: 0.2s linear;
	position: relative;
	border-radius: 3px;
}
nav .__menu > div a span {
	font-size: 0.65rem;
	display: block;
}
/*nav .__menu > div a::after {
	content: '';
	width: 0;
	height: 1px;
	background: rgba(234,104,152,1.0);
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.2s linear;
}
nav .__menu > div a:hover::after {
	content: '';
	width: 100%;
	height: 1px;
	background: rgba(234,104,152,1.0);
	position: absolute;
	left: 0;
	bottom: 0;
}*/
nav .__menu > div a:hover {
	color: rgba(255,255,255,1.0);
	background: rgba(234,104,152,0.75);
}

nav .__menu > .nav-btn-b {
    width: 200px;
}

nav .__menu ._blank_news.is-pc {
    display: none;
}

nav .__menu > .is-pc {
    display: block;
}

nav .__menu > .is-sp {
    display: none;
}

nav .__menu > .nav-btn-b.is-sp-order {
    display: none;
}

nav .__menu > .nav-btn-b.is-pc-order {
    display: block;
}

nav .__menu > div.sp-sub-nav-list .is-pc {
    display: block;
}

nav .__menu .sp-sns.is-sp {
    display: none;
}


/*humbuger menu*/
nav-sp {
	display: none;
}

@media screen and (max-width:768px) {
	/*HUMBUGER MENU*/
	/*nav-sp {
		display: block;
		width: 100%;
		height: 48px;
		background: rgba(160,193,210,1.0);
		position: fixed;
		top: 0;
		left: 0;
		z-index: 899;
	}*/
	.menu-trigger {
		display: block;
		cursor: pointer;
		position: fixed;
		width: 30px;
		height: 27px;
		top: 10px;
		right: 10px;
		z-index: 900;
	}
	.menu-trigger,
	.menu-trigger span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}
	.menu-trigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 4px;
		background-color: rgba(234,104,152,1.0);
		border-radius: 4px;
		border-bottom: 1px solid white;
	}
	.menu-trigger span:nth-of-type(1) {
		top: 0;
	}
	.menu-trigger span:nth-of-type(2) {
		top: 12px;
	}
	.menu-trigger span:nth-of-type(3) {
		bottom: 0;
	}
	.menu-trigger.active {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
	.menu-trigger.active span {
		background-color: rgba(234,104,152,1.0);
		height: 3px;
		border-bottom: none;
	}
	.menu-trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(12px) rotate(-45deg);
		transform: translateY(12px) rotate(-45deg);
	}
	.menu-trigger.active span:nth-of-type(2) {
		-webkit-transform: translateY(0) rotate(45deg);
		transform: translateY(0) rotate(45deg);
	}
	.menu-trigger.active span:nth-of-type(3) {
		opacity: 0;
	}
	
	
	/*NAVIGATION*/
	nav, nav.__2nd {
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 0;
		left: -100%;
		z-index: 10;
		background: rgba(255,255,255,0.95);
		opacity: 1;
		text-align: center;
		transition: 0.2s linear;
		padding: 30px 0 0;
		overflow-y: auto;
		overflow-x: hidden;
	}
	nav .__menu {
		display: block;
	/*	align-items: stretch;
		justify-content: center;*/
		font-size: 1.25rem;
		font-weight: 700;
		height: auto;
	}

	nav .__menu > div {
		/*width: calc(100% / 8);*/
		display: block;
		align-items: center;
		justify-content: center;
		transition: 0.2s linear;
		width: 70%;
		margin: 0 auto 15px;
	}
	nav .__menu > div a {
		display: block;
		width: 100%;
		padding: 10px 1em;
		color: rgba(255,255,255,1.0);
		background: rgba(234,104,152,1.0);
		transition: 0.2s linear;
		position: relative;
		border-radius: 3px;
	}
    
    nav .__menu > .nav-btn-b {
        width: 70%;
    }
	
	
	nav.__open {
		top: 0;
		left: 0;
        overflow: auto;
	}
	
	/*nav .__menu > div a::after {
		content: '';
		width: 0;
		height: 100%;
		background: rgba(158,248,221,1.0);
		position: absolute;
		left: 0;
		bottom: 0;
		transition: 0.2s linear;
		border-radius: 40px;
		z-index: -1;
	}
	nav .__menu > div a:hover::after {
		content: '';
		width: 100%;
		height: 100%;
		background: rgba(158,248,221,1.0);
		position: absolute;
		left: 0;
		bottom: 0;
	}*/
    
    nav .__menu ._blank_news.is-pc {
        display: block;
    }
    
    nav .__menu > div.sp-sub-nav-list .is-pc {
        display: none;
    }
    
    nav .__menu > div.sp-sub-nav-list.is-sp {
        display: block;
    }

    nav .sp-sub-nav-list .sp-sub-nav-btn {
        display: inline-block;
        margin-bottom: 3px;
        font-size: 14px;
        background-color: #61C0BD !important;
    }
    
    nav .__menu > .nav-btn-b.is-sp-order {
        display: block;
    }
    
    nav .__menu > .nav-btn-b.is-pc-order {
        display: none;
    }
    
    nav .__menu .sp-sns.is-sp {
        display: block;
    }
    

}

/* sub-navi */

.sub-menu-list-btn {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
    width: 100%;
}

.sub-menu {
    background-color: #ffffff;
}

.sub-menu-list {
    display: flex;
    justify-content: center;
    margin: 0;
    padding-top: 30px;
    list-style: none;
}

.sub-menu-list-item {
    margin: 0 40px;
}

.sub-menu-list-ja {
    display: block;
    font-size: 15px;
    font-weight: bold;
}

.sub-menu-list-btn {
    display: inline-block;
    color: #61C0BD !important;
}

.sub-menu-list-en {
    display: inline-block;
    padding: 0 10px 11px 10px;
    font-size: 12px;
    border-bottom: 4px solid #FFFFFF;
    transition: .3s;
}

.sub-menu-list-btn.current .sub-menu-list-en {
    display: inline-block;
    border-color: #FFF078;
}
