@charset "utf-8";
/* CSS Document */


/**
 * reset
 */
ul, li, menu, nav {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	vertical-align: baseline;
	background: transparent;
}

menu, nav {
	display: block;
	margin: 0;
    background: rgba(0,30,10,1);
}


ol, ul {
	list-style: none;
}



/**
 * base
 */

.contents {
	width: 100%;
	height: 100%;
}

.contents__inner {
	box-sizing: border-box;
	width: 100%;
	margin: 0px auto;
}


.active{
	background:#222 !important;
    text-decoration: none;
}

.fa{
    margin: 0px 4px 0px 0px;
    font-size: 100%;
}

/* ロゴメニューバー */


#header {
    margin: 0px;
    padding: 0px;
    background: rgba(255, 255, 255, 1);
    border-bottom: solid 3px #d5d5d5;
}

.header_box{
        width: 1120px;
        margin: 0 auto;
    }

.header_top {
    width: 100%;
    height: 85px;
    margin: 0px 0px 10px 0px;
    padding: 0 0 0px 0;
    }

.header_logo {
    width:300px;
    float: left;
    margin: 5px 320px 0px 0px;
    }

.header_txt01 {
    width: 120px;
    float: left;
    margin: 50px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

.header_icon01 {
    width: 20px;
    float: left;
    margin: 30px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
   
}

.header_icon02 {
    width: 40px;
    float: left;
    margin: 30px 10px 0px 0px;
    padding: 0px 0px 0px 0px;
   
}

.header_tell{
    width: 350px;
    float: left;
    margin: 20px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}



/**
 * menu
 */
/* 元状態

.menu {
	position: relative;
	width: 100%;
	height: 50px;
	max-width: 1120px;
	margin: 0 auto;
} 
*/

/**
 * メガメニュー追加設定
 */





.menu {
    background: rgba(0,30,10,1);
	position: relative;
	min-height: 55px;
	height: 100%;
    width: 1120px;
    margin: auto;
}


.menu > li {
	float: left;
	/*width: 16.66%;*/
    /*width: 202px;*/
    width: 202px;
	height: 55px;
	line-height: 55px;
    background: rgba(0,30,10,1);
    border-right:solid 1px #fff;
    text-align: center;
}

.menu > li a {
	display: block;
	color: #fff;
	font-size: 100%;
	text-decoration: none;
	font-weight: bold;
}

.menu > li a:hover {
	color: #fff;
}

.menu > li.home {
	float: left;
	width: 100px;
	height: 55px;
	line-height: 55px;
    background: rgba(0,30,10,1);
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    text-align: center;
}

.menu > li.home a {
        font-size: 34px;
        padding-left: 4px;
        color: #fff;

}

.menu > li.home a:hover {
	color: rgba(0,30,10,1);
    background: rgba(255,255,255,1);
    opacity: 1;
    -webkit-animation: flash 0.6s;
    animation: flash 0.6s;
}

.menu > li.search {
	float: left;
	width: 70px;
	height: 55px;
	line-height: 55px;
    background: rgba(0,30,10,1);
    border-left: 0px solid #fff;
    border-right: 1px solid #fff;
    text-align: center;
}

.menu > li.search a {
        font-size: 26px;
}

.menu > li.search a:hover {
	color: #fff;
}

.menu__none:hover,
.menu__multi:hover,
.menu__mega:hover,
.menu__single:hover {
  background: #003311;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  text-decoration: underline;
}

.menu__second-level li {
  border-top: 1px solid #fff;
 padding-left: 5px;
}

.menu__third-level li {
  border-top: 1px solid #fff;
}

.menu__second-level li a:hover {
  background: #003311;
}

.menu__third-level li a:hover {
  background: #2a1f1f;
}

.menu__fourth-level li a:hover {
  background: #1d0f0f;
}

.init-bottom:after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 0 2px 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu:before,
.menu:after {
  content: "";
  display: table;
}

.menu:after {
  clear: both;
}

.menu {
  *zoom: 1;
}


/**
 * single menu
 */
.menu > .menu__single {
  position: relative;
}

.menu__single .menu__second-level {
  position: absolute;
  top: 40px;
  width: 100%;
  background: rgba(0,30,10,1);
  -webkit-transition: .2s ease;
  transition: .2s ease;
  text-indent: 5px;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
    
}

.menu__single:hover > .menu__second-level {
  top: 55px;
  visibility: visible;
  opacity: 1;
}


