@charset "UTF-8";
/*----------このエリアは削除すると正しく動作しない可能性があります----------

Theme Name:   LION MEDIA Child
Theme URI:    http://fit-jp.com/theme/
Description:  FIT(フィット) が制作するメディア用WordPressTHEME「LION MEDIA」の子テーマ
Author:       Kota Naito　@FIT(フィット)
Author URI:   http://fit-jp.com/about/
Template:     lionmedia
Version:      1.2
License:      GNU GENERAL PUBLIC LICENSE
License URI:  http://www.gnu.org/licenses/gpl.html

----------このエリアは削除すると正しく動作しない可能性があります----------*/


/*/////////////////////////////////////////////////
//下記ユーザーカスタマイズエリア
/////////////////////////////////////////////////*/

/*グローバルナビ(エキストラで使用)*/
/*
.globalNavi{
	padding-top: 23px;
	overflow:hidden;
}
.globalNavi__list{
	display: table;
	list-style:none;
}
.globalNavi__list .page_item,
.globalNavi__list .menu-item{
	color: #bfbfbf;
	float:left;
	height:14px;
	line-height:1;
	margin-bottom:23px;
	padding:0 15px;
	border-left:1px solid #3f3f3f;
	transition: .2s;
}
.globalNavi__list .page_item:first-child,
.globalNavi__list .menu-item:first-child{
	border-left:0;
	padding-left:0;
}
.globalNavi__list .current_page_item,
.globalNavi__list .current-menu-item,
.globalNavi__list .page_item:hover,
.globalNavi__list .menu-item:hover{
	color:#ffffff;
	font-weight:bold;
}*/

/*グローバルナビ(ヘッダーで使用)*/
/*globalNavi内はWPの標準マークアップに従う*/
.globalNavi_custom{
	position:relative;
	float:left;
	width:100%;
}
.globalNavi_custom ul{list-style:none;}

.globalNavi_custom__list {
	/*background:#63acb7;
	border-radius:5px 5px 0 0;*/
}
.globalNavi_custom__list::after {
	content: "";
	display: block;
	clear: both;
}
.globalNavi_custom__list a{
	display:block;
	padding:0 20px;
	height:54px;
	line-height:54px;
}
.globalNavi_custom__list a:hover{
	background:rgba(255,255,255,0.15);
	transition: .2s;
}
.globalNavi_custom__list li{
	color: #fff;
}

.globalNavi_custom__list > li{
	position:relative;
	float:left;
	color: #333;
	border-left: 1px solid rgba(255,255,255,0.15);
	border-right: 1px solid rgba(0,0,0,0.15);
}
.globalNavi_custom__list > li:first-child{border-left: none;}
.globalNavi_custom__list > li:first-child a{border-radius:5px 0 0 0;}
.globalNavi_custom__list > li:last-child::after {
	content: "";
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border-left: 1px solid rgba(255,255,255,0.15);
}
.globalNavi_custom__list > li.page_item_has_children::before,
.globalNavi_custom__list > li.menu-item-has-children::before{
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 5px;
	height: 5px;
	margin-top: -5px;
	border-bottom: solid 1px #ffffff;
	border-right: solid 1px #ffffff;
	transform: rotate(45deg);
}
.globalNavi_custom__list > li.page_item_has_children > a,
.globalNavi_custom__list > li.menu-item-has-children > a{padding:0 30px 0 20px;}
.globalNavi_custom__list > li .children,
.globalNavi_custom__list > li .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index:9999;
	text-shadow: none;
}
.globalNavi_custom__list > li .children > li,
.globalNavi_custom__list > li .sub-menu > li{
	overflow: hidden;
	width: auto;
    min-width: 300px;
    white-space: nowrap;
	height: 0;
	background-color:#323232;	
	transition: 0.2s;
}
.globalNavi_custom__list > li:hover .children li,
.globalNavi_custom__list > li:hover .sub-menu li{
	overflow: visible;
	border-top: 1px solid rgba(0,0,0,0.15);
	box-shadow:0px 1px 0px 0px rgba(255,255,255,0.15) inset;
	height:54px;
	line-height:54px;
	transition: 0.2s;
}
.globalNavi_custom__toggle{display: none;}
.globalNavi_custom__switch{display: none;}

/****************************************************/
/*今成：メニューがモバイルとPCで切り替わるようにした*/
/****************************************************/
.mobile_menu{
	display:none;
}
.pc_menu{
	display:block;
}

@media only screen and (max-width: 767px){
	.mobile_menu{
		display:block;
	}
	.pc_menu{
		display:none;
	}
}