@charset "utf-8";
/* =============================================
 ヘッダー
============================================= */
.header {
	background: #fff;
	position: relative;
	z-index: 5;
}
.header-nav .header {
	border-bottom: 1px solid #ccc;
}
.header_inner {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	display: flex;
	box-sizing: border-box;
	align-items: center;
}
.logo-box {
	width: calc(100% - 60px);
	height: 60px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.logo-box a{
    display: inline-flex;
}
.logo-box img{
    max-height: 55px;
    padding: 5px;
	box-sizing: border-box;
}
.logo-box a:first-child img{
    padding-right: 0;
}
@media print, screen and (min-width:641px) and (max-width:1000px) {
.logo-box a:first-of-type {
    width: 15%;
	box-sizing: border-box;
}
.logo-box a:nth-of-type(2){
	width: 75%;
	box-sizing: border-box;
	text-align: center;	
	display: flex;
	justify-content: center;
}
}
@media print, screen and (max-width:1000px) {
	.header.fixed {
		width: 100%;
		position: fixed;
		padding-bottom: 0;
		margin-top: 0;
		top: 0;
		left: 0;
		z-index: 6;
	}
	.header_inner {
		min-height: 60px;
		padding: 10px;
	}

}
@media print, screen and (min-width:1001px) {
.header-nav .header {
    border-bottom: none;
}
	.header_inner {
		padding: 0;
	}
.logo-box{
    width:inherit;
    height: auto;
	display: flex;
	justify-content:center;
}
.logo-box img{
    max-height:65px;
	box-sizing: inherit;
}
}
@media print, screen and (min-width:1001px) {
.logo-box img{
    padding: 10px;
}
}
@media print, screen and (min-width:641px) and (max-width:1000px) {
	.onlyTAB {
		display: block;
	}
	.noTAB {
		display: none !important;
	}
}
/* =============================================
 sp-menu
============================================= */
.sp-menu_title {
	padding: 10px;
	margin-top: 1px;
	background: #424242;
	position: relative;
	cursor: pointer;
	color: #fff;
	font-size: 0.85rem;
	text-align: center;
}
.sp-menu_title:before {
	content: "";
	border-top: 0.55em solid #fff;
	border-right: 0.325em solid transparent;
	border-bottom: 0 solid transparent;
	border-left: 0.325em solid transparent;
	position: absolute;
	top: 50%;
	left: calc(50% - 2.25em);
	transform: translate(-50%, -50%);
	transition: all 0.2s;
}
.sp-menu .sp-menu_title.open:before {
	transform: translate(-50%, -50%) rotate(180deg);
}
.sp-menu ul {
	background-color: #fff;
	overflow:inherit !important;
}
.sp-menu li {
	width: 50%;
	background: #fff;
	display: inline-block;
	box-sizing: border-box;
	position: relative;
	font-size: 0.875rem;
	vertical-align: top;
}
.sp-menu li a {
	width: 100%;
	padding: 10px 7px;
	display: block;
	box-sizing: border-box;
	overflow: hidden;
	color: #7d7d7d;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.sp-menu li span {
	display: none;
}
.sp-menu li::before, .sp-menu li::after {
	content: "";
	background: #e4e4e4;
	position: absolute;
	z-index: 1;
}
.sp-menu li::before {
	width: 1px;
	height: 100%;
	top: 50%;
	right: -1px;
	transform: translateY(-50%);
}

@media print, screen and (min-width:1001px) {
	.sp-menu {
		display: none;
	}
	.sp-menu li::before {
		height: 60%;
	}
	.sp-menu li:last-child::before {
		content: none;
	}
}
/* header-nav menu
------------------------------------ */
.header-nav .sp-menu {
	display: none !important;
}
.header-nav .sp-menu .sp-menu_title {
	display: none !important;

}
.header-nav .sp-menu ul {
	max-width: 1000px;
	margin: 0 auto;
	background-color: inherit;
	display: flex;
	flex-wrap: wrap;
}
.header-nav .sp-menu li {
	width: 33.33%;
	background: #000;
    display: flex;
    align-items: center;
    line-height: 1.2;
}
.header-nav .sp-menu li a {
	min-height: 4em;
	padding: 1em 0.5em;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	color: #fff;
	font-size: 2.4vw;
	font-weight: bold;
	white-space: inherit;
	box-sizing: border-box;
}
.header-nav .sp-menu li a::after {
	content: "";
	width: 100%;
	height: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all 0.2s;
	z-index: -1;
}
.sp-menu li::before{
	content: "";
	background: rgba(255,255,255,0.30);
}
@media print, screen and (min-width:1001px) {
.header-nav .sp-menu {
	display: block !important;
	background: #000;
}
	.header-nav .sp-menu ul {
		flex-wrap: inherit;
	}
	.header-nav .sp-menu li {
		width: 100%;
	}
	.header-nav .sp-menu li a {
		font-size: 2vw;
	}
}
@media print, screen and (min-width:1001px) {
	.header-nav .sp-menu li a {
		font-size: 1em;
        white-space: nowrap;
	}
	.header-nav .sp-menu li a:hover::after {
		height: 100%;
		background: #fff;
		opacity: 0.3;
	}
}

/* =============================================
 pageMenu
============================================= */
.pageMenu-toggle {
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.9);
	border-radius: 5px;
	position: absolute;
	right: 0;
	cursor: pointer;
	transition: all 0.2s;
	z-index: 10;
	color: #fff;
}
.open .pageMenu-toggle {
	background: none;
}
.pageMenu-toggle span:nth-child(1),
.pageMenu-toggle span:nth-child(2),
.pageMenu-toggle span:nth-child(3) {
	content: "";
	height: 2px;
	margin-left: -13px;
	background: #fff;
	position: absolute;
	transition: all 0.2s;
}
.pageMenu {
	z-index: 10;
}
.pageMenu-toggle span:nth-child(1) {
	width: 26px;
	top: 16px;
	left: 50%;
}
.pageMenu-toggle span:nth-child(2) {
	width: 26px;
	top: 24px;
	left: 50%;
}
.pageMenu-toggle span:nth-child(3) {
	width: 26px;
	top: 32px;
	left: 50%;
}
.open .pageMenu-toggle span:nth-child(1) {
	transform: translateY(8px) rotate(-45deg);
}
.open .pageMenu-toggle span:nth-child(2) {
	transform: translateY(0px) rotate(45deg);
}
.open .pageMenu-toggle span:nth-child(3) {
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";
}
@media print, screen and (max-width:1000px) {
	.pageMenu {
		width: calc(100% - 12px);
		margin: 0 auto;
		display: block !important;
		position: absolute;
		top: 5px;
		right: 0;
		left: 0;
	}
	.pageMenu-toggle span:nth-child(1) {
		width: 26px;
		top: 16px;
		left: 50%;
	}
	.pageMenu-toggle span:nth-child(2) {
		width: 26px;
		top: 24px;
		left: 50%;
	}
	.pageMenu-toggle span:nth-child(3) {
		width: 26px;
		top: 32px;
		left: 50%;
	}
}
@media print, screen and (min-width:1001px) {
	.pageMenu-toggle {
		opacity: 0;
	}
	.on .pageMenu-toggle {
		opacity: 1;
	}
	.pageMenu {
		width: 350px;
		position: fixed;
		top: 10px;
		right: 30px;
	}
}
/* side-menu
------------------------------------ */
.side-menu a {
	padding: 0.5em 1em 0.5em 2em;
	border-top: 1px solid #676767;
	display: block;
	position: relative;
	overflow: hidden;
	transition: all 0.2s;
	color: #fff;
	text-decoration: none;
	text-align: left;
	line-height: 1.3;
}
.side-menu a::before {
	content: "";
	border-top: 0.325em solid transparent;
	border-right: 0.6em solid #eb5e01;
	border-bottom: 0.325em solid transparent;
	border-left: 0 solid transparent;
	position: absolute;
	top: 50%;
	left: 1em;
	transform: translateY(-50%);
	transition: all 0.2s;
}
.side-menu a span,
.side-menu a br{
	display: none;
}
.side-menu li:first-child a {
	border-top: none;
}
.pageMenu .side-menu {
	width: 100%;
	padding: 15px 50px 10px 20px;
	background: rgba(0, 0, 0, 0.9);
	border-radius: 5px;
	box-sizing: border-box;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 8;
}
.pageMenu .side-menu span:first-child {
	margin-bottom: 10px;
	display: block;
	display: none;
	color: #fff;
	font-size: 1.25em;
	font-weight: bold;
	text-align: center;
}

@media print, screen and (min-width:641px) and (max-width:1000px) {
.pageMenu .side-menu > ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

	.pageMenu .side-menu > ul > li:first-child{
		flex-basis: 100%;
		width: 100%;
		margin-bottom: 1em !important;
		    border-bottom: 1px solid #676767;
	}
	.pageMenu .side-menu > ul > li:nth-child(2) a,.pageMenu .side-menu > ul > li:nth-child(3) a{
		border: none;
	}

.pageMenu .side-menu > ul > li:not(:first-child) {
	flex-basis: 48%;
	width: 48%;
	margin: 0 1%;
}
.pageMenu .side-menu > ul > li > ul{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.pageMenu .side-menu > ul > li > ul li{
	flex-basis: 31%;
	width: 31%;
	margin: 0 1%;
}
.pageMenu .side-menu > ul > li > ul li a{
	border: none;
}
}
@media print, screen and (max-width:1000px) {
	.side-menu a {
		padding: 0.5em 2em 0.5;
		text-overflow: ellipsis;
		white-space: nowrap;
		text-align: center;
		font-size:max(0.9em,0.9rem) !important;
	}
}
@media print, screen and (min-width:1001px) {
	.side-menu {
		background: #424242;
		margin-bottom: 15px;
		border-radius: 0 0 5px 5px;
		display: block;
		overflow: hidden;
	}
	.header-nav .wrap_side-menu {
		display: none;
	}
	.side-menu a:hover::before {
		left: 0.75em;
	}
	.side-menu a span {
		font-size: 0.8rem;
	}
}
@media print, screen and (min-width:1001px) {
	.side-menu a:after {
		content: "";
		width: 100%;
		height: 0;
		position: absolute;
		left: 0;
		bottom: 0;
		transition: all 0.2s;
	}
	.side-menu a:hover:after {
		height: 100%;
		background: #fff;
		opacity: 0.15;
	}
}
/* =============================================
 navigation
============================================= */
#js-nav {
	display: none !important;
}




.sp-menu ul{
	display: block;
	position: relative;
}

.sp-menu li ul.dropdown_lists {
    display: none !important;
    width: 100% !important;
	background-color: none;
	z-index: 10;
	position: absolute;
	top:56px;
	left:0;
	overflow: visible !important;
	font-size: 0.6em;
}

.sp-menu ul li:hover ul.dropdown_lists {
    display: block !important;
	overflow: visible !important;
}
.sp-menu ul li ul li.dropdown_list {
    background-color: #000;
    height: 3em;
    transition: all .3s;
    position: relative;
	display: block;
}
.sp-menu ul li ul li.dropdown_list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #676767;
    position: absolute;
    top: 0;
    left: 0;
}
.sp-menu ul li ul li.dropdown_list:hover {
    background-color: #eb5e01;
}
.sp-menu ul li ul li.dropdown_list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
	min-height: 3em;
}
.sp-menu ul li ul li.dropdown_list a:hover::after {
		background: none;
	}
.side-menu ul li.dropdown_list{
	border-top: 1px solid #676767;
	color: #ccc;
}
.side-menu ul li.dropdown_list a{
	padding: 0.5em 3em 0.5em 3em;
	box-sizing: border-box;
}
.side-menu ul li.dropdown_list a::before {
    content: "";
  border-style: solid;
  border-right: 0.25em solid transparent;
  border-left: 0.25em solid transparent;
  border-top: 0.5em solid #ccc;
  border-bottom: 0;
    position: absolute;
    top: 50%;
    left: 1em;
    transform: translateY(-50%);
    transition: all 0.2s;
}

a.anchor {
    display: block !important;
    padding-top: 80px !important;
    margin-top: -180px !important;
}

.side-menu a .nav_br {
    display: none !important;
  }
/* =============================================
カレント
============================================= */
#nav-news .header-nav .sp-menu li.m-news > a,#nav-news .pageMenu .side-menu li.m-news > a,
#nav-song .header-nav .sp-menu li.m-song,#nav-song .pageMenu .side-menu li.m-song,
#nav-netto .header-nav .sp-menu li.m-netto,#nav-netto .pageMenu .side-menu li.m-netto,
#nav-michi .header-nav .sp-menu li.m-michi,#nav-michi .pageMenu .side-menu li.m-michi,
#nav-drama .header-nav .sp-menu li.m-drama,#nav-drama .pageMenu .side-menu li.m-drama,
#nav-girls .header-nav .sp-menu li.m-girls,#nav-girls .pageMenu .side-menu li.m-girls,
#nav-janken .header-nav .sp-menu li.m-janken,#nav-janken .pageMenu .side-menu li.m-janken,
#nav-natsuhenoyell .header-nav .sp-menu li.m-natsuhenoyell,#nav-natsuhenoyell .pageMenu .side-menu li.m-natsuhenoyell,
#nav-kidoairaku .header-nav .sp-menu li.m-kidoairaku,#nav-kidoairaku .pageMenu .side-menu li.m-kidoairaku
{
    background:#eb5e01 !important;
}
