@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(60,120,200,1);
}



ol, ul {
	list-style: none;
}



/**
 * base
 */

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

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


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


#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: 95px;
    margin: 0px 0px 10px 0px;
    padding: 5px 0 0px 0;
    }

.header_logo {
    width:340px;
    float: left;
    margin: 5px 200px 0px 0px;
    }

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

.header_txt01 a{
	color: #222;
    text-decoration: underline;
}
.header_txt01 a:hover{
    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;
} 
*/

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

.active_menu{
	background: rgba(68,68,68,1) !important;
    text-decoration: none;
}

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



.menu {
    background: rgba(60,120,200,1);
	position: relative;
	min-height: 90px;
	height: 100%;
    width: 1120px;
    margin: auto;
}


.menu > li {
	float: left;
	/*width: 16.66%;*/
    /*width: 194px;*/
	width: 18.26%;
	height: 90px;
    background: rgba(60,120,200,1);
    border-right:solid 1px #fff;
    text-align: center;
}

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

.menu > li a:hover {
	color: #fff;
    -webkit-animation: flash 1.2s;
    animation: flash 1.2s;
}

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

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

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

.menu_icon{
    padding: 10px 0px 5px 0px;
}

.menu__none:hover,
.menu__multi:hover,
.menu__mega:hover,
.menu__single:hover {
    background: rgba(60,120,200,1);
  -webkit-transition: .2s ease;
  transition: .2s ease;
  text-decoration: none;
}

.menu__second-level li {
  border-top: 1px solid #ccc;
}

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

.menu__second-level li a:hover {
    color: #fff;
    background: #444;
    opacity: 1;
    -webkit-animation: flash 1.5s;
    animation: flash 1.5s;
}

.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 10px 10px;
  border-right: 3px solid #444;
  border-bottom: 3px solid #444;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

a:hover:after{  
 border-right: 3px solid #fff;
 border-bottom: 3px solid #fff;
}


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

.menu:after {
  clear: both;
}

.menu {
  *zoom: 1;
}

/* LINE001 */
.menu__none a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    transition: 0.2s ease-in-out;
}
.menu__none a:before {
    position: absolute;
    bottom: 10px;
    left: 50%;
    content: '';
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.0);
    transform: translateX(-50%);
}
.menu__none a:after {
  position: absolute;
  bottom: -7px;
  left: 20%;
  content: '';
  width: 60%;
  height: 2px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .2s;
}
.menu__none a:hover {
    opacity: 0.8;
}
.menu__none a:hover:after {
    transform: scale(1, 1);
}  



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

.menu__single .menu__second-level {
  position: absolute;
  top: 75px;
  width: 100%;
  line-height: 90px;
  background: rgba(255,255,255,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: 90px;
  visibility: visible;
  opacity: 1;
}
