@charset "utf-8";
/*
 * nav02
 */

/* c_nav03 コンテンツ内 */
.c_nav03 {
	position: relative;
	width: 100%;
	height: 50px;
	max-width: 1140px;
	margin: 0 auto;
}

.c_nav03 > li {
	float: left;
	width: 25%; /* グローバルナビ4つの場合 */
	height: auto;
	line-height: 44px;
}

.c_nav03 > li a {
	position: relative;
	display: block;
	color: #fff;
	text-align: center;
}
.c_nav03 > li a:after {
	content: '';
	position: absolute;
	top: 15px;
	right: 0px;
	display: block;
	background-color: white;
	width: 1px;
	height: 13px;
}
.c_nav03 > li:last-child a:after {
	content: '';
	display: none;
}

.c_nav03 > li a:hover {
	border-bottom: white solid 1px;
}

ul.c_nav03_second-level {
	visibility: hidden;
	opacity: 0;
	z-index: 1;
}

ul.c_nav03_third-level {
	visibility: hidden;
	opacity: 0;
}

ul.c_nav03_fourth-level {
	visibility: hidden;
	opacity: 0;
}

.c_nav03 > li:hover {
	-webkit-transition: all .5s;
	transition: all .5s;
}

.c_nav03_second-level li {
	border-top: 1px solid #111;
}

.c_nav03_third-level li {
	border-top: 1px solid #111;
}

.c_nav03_second-level li a:hover {
	background: #111;
}

.c_nav03_third-level li a:hover {
	background: #ff0b0b;
}

.c_nav03_fourth-level li a:hover {
	background: #ff0b0b;
}

/* 下矢印 */
.init-bottom:after {
	content: '';
	display: inline-block;
	width: 1px;
	height: 13px;
	margin: 0;
}

/* floatクリア */
.c_nav03:before,
.c_nav03:after {
	content: " ";
	display: table;
}

.c_nav03:after {
	clear: both;
}

.c_nav03 {
	*zoom: 1;
}


/* ドロップダウン */
li.c_nav03_full ul.c_nav03_second-level {
    position: absolute;
    top: 40px;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    padding: 20px 2%;
    background: #05ae9d;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

li.c_nav03_full:hover ul.c_nav03_second-level {
    top: 50px;
    visibility: visible;
    opacity: 1;
}

li.c_nav03_full ul.c_nav03_second-level > li {
    float: left;
    width: 49%;
    border: none;
}

li.c_nav03_full ul.c_nav03_second-level > li a:hover {
	background-color: #05ae9d;
	border-bottom: white solid 1px;
}

li.c_nav03_full ul.c_nav03_second-level > li:nth-child(3n+2) {
    margin: 0 1%;
}