@charset "Shift_JIS";
/* ----- NRFホームページMenu --- */

.accordion .inner {display: none;}
.accordion .inner li ul{display: none;}
.accordion p{cursor: pointer; padding: 0px;margin:0px;background-color:transparent;}
.accordion .inner li ul li{padding: 0px 0;font-size:0.5em;}
.accordion .inner li > p{cursor: pointer;font-size:0.8em;}

.cp_fullscreenmenu * {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
a,
a:visited,
a:hover,
a:active {
	text-decoration: none;
	color: inherit;
}
.cp_fullscreenmenu input {
  display: none;
}
.cp_fullscreenmenu {
	position: fixed;
	z-index: 10;
	top: 0;
	right: 0;
}

/*menuコンテンツ*/
.cp_fullscreenmenu .menu {
	position: fixed;
	top: 0;
	left: 0;/* **vwで横位置 */
	width: 100vw;/* 表示幅 */
	height: 100vh;
	background-image: linear-gradient(rgba(255,0,0,0.9) 0%, rgba(0,0,0,0.6) 100%);/*Menu パネル色 */
	overflow-y: scroll;
}
.cp_fullscreenmenu .menu label {
	position: absolute;
	top: 0px;
	right: 20px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	background-size: 100%;
}
.cp_fullscreenmenu .menu .menucont {
	font-size: 4.4rem;
	position: relative;
	top: 80px;
/*	padding-bottom: 20px;*/
	text-align: center;
}
.cp_fullscreenmenu .menu ul {
	margin: 0 auto;
	padding: 0;
	list-style: none;
}
.cp_fullscreenmenu .menu ul li,
.cp_fullscreenmenu .menu ul li a {
	transition: all 0.3s ease;
}
.cp_fullscreenmenu .menu ul li a {
	display: block;
	padding: 12px 0;
	color: #ffffff; /*Menu文字色*/
	text-decoration:none;
	margin-top:2vh;/*4vh;*/
	line-height:0.6;
}

.cp_fullscreenmenu .menu p {
	display: block;
	padding: 12px 0;
	color: #ffffff; /*Menu文字色*/
	text-decoration:none;
	margin-top:2vh;/*4vh;*/
	line-height:0.6;
}

.subtitle	{
	font-size:1.8rem;
}


.cp_fullscreenmenu .menu ul li a:hover {
	color: #c30;
	background-image: linear-gradient(135deg ,#f30,#fc9,#f30); /*Menu ホバー色 */
}
.cp_fullscreenmenu .menu ul li:hover {
	color: #fc9;
	background: #fc0;
}
.cp_fullscreenmenu .menu ul p:hover {
	color: #c30;
	background-image: linear-gradient(135deg ,#f30,#fc9,#f30); /*Menu ホバー色 */
}



/*クリックしたらメニューが開閉の動作*/
.cp_fullscreenmenu .menuEffects {
	visibility: hidden;
	transition: opacity 0.5s, visibility 0.5s;
	opacity: 0;
}
.cp_fullscreenmenu .menuEffects ul {
	transition: all 0.5s;
	transform: translateY(0%);
}
.cp_fullscreenmenu #menuToggle:checked ~ .menuEffects {
	visibility: visible;
	transition: opacity 0.5s;
	opacity: 1;
}
.cp_fullscreenmenu #menuToggle:checked ~ .menuEffects ul {
	opacity: 1;
}
.cp_fullscreenmenu #menuToggle:checked ~ .hamburger .open {
	background-color: transparent;
}
.cp_fullscreenmenu #menuToggle:checked ~ .hamburger .open:before {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	content: '';
	transform: rotate(45deg);
	background-color: #ffffff; /*Menu × 1 */
}
.cp_fullscreenmenu #menuToggle:checked ~ .hamburger .open:after {
	position: relative;
	z-index: 1;
	top: 0;
	right: 0;
	content: '';
	transform: rotate(-45deg);
	background-color: #ffffff; /*Menu × 2 */
}
.cp_fullscreenmenu #menuToggle:not(:checked) ~ .menuEffects ul {
	transform: translateY(-30%);
}
/*ハンバーガー*/
.cp_fullscreenmenu .hamburger {
	position: relative;
	top: 0;
	right: 0;
	display: block;
	width: 80px;
	height: 80px;
	padding: 10px 0px 0px 6px;
	cursor: pointer;
	background-color:rgba(100,60,60,0.8);/*Box Color*/
}
.cp_fullscreenmenu .hamburger:hover .open:before {
	top: -16px;
}
.cp_fullscreenmenu .hamburger:hover .open:after {
	top: 7px;
}
.cp_fullscreenmenu .open,
.cp_fullscreenmenu .open:before,
.cp_fullscreenmenu .open:after {
	position: relative;
	display: block;
	width: 64px;
	height: 9px;
	border-radius: 16px;
	background-color: #ff9900; /*ff0844　Menu 3本線色*/
	transition: all 0.3s ease;
}
.cp_fullscreenmenu .open {
	top: 28px;
	cursor: pointer;
}
.cp_fullscreenmenu .open:before {
	top: -18px;
	content: '';
	transform: rotate(0deg);
}
.cp_fullscreenmenu .open:after {
	top: 9px;
	content: '';
}


