@charset "UTF-8";

/********************************
	header
********************************/
#header {
	z-index: 999;
	width: 100%;
	position: absolute;
	top: 0;
}
#header-inner {
	background-color: #fff0;
}
#header-inner_up{
	width: 100%;
	max-width: 1200px;
	height: 60px;
	margin: 0 auto;
}

/********************************
	header_left
********************************/
#header_left{
	width: 580px;
	float:left;
}
#header.fixed {
	position: fixed;
	top: 0;
	animation: fixNav 0.5s forwards;
	-webkit-animation: fixNav 1s forwards;
	-moz-animation: fixNav 1s forwards;
	-ms-animation: fixNav 1s forwards;
}
@keyframes fixNav {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-webkit-keyframes fixNav {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes fixNavHide {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-webkit-keyframes fixNavHide {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
#header.fixed .gnav {
	background: transparent;
}
#top_logo {
	float: left;
    width: 82px;
    text-align: left;
    margin: 10px 0 0 20px;
}
#top_logo img {
	width: 100%;
}

/********************************
	header_right
********************************/
#header_right {
    width: 110px;
    float: right;
}
/********************************
		SNS
********************************/
#sns_header{
	width: 90px;
	float: left;
	overflow: hidden;
	display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.sns_botton{
	width: 20px;
	float:left;
	margin-top:22px;
}
.sns_botton img{
	width:100%;
}

/********************************
		TEL
********************************/
#tel{
    width: 170px;
    padding: 12px 12px 7px 12px;
    margin-top: 0px;
    text-align: right;
    background-color: #000;
	border-radius: 0 0 5px 5px;
	float: right;
}
#tel a{
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}
#tel img{
	width:90%;
}

/********************************
		nav
********************************/
#gnavi_box{
	width:100%;
	background-color:rgb(85 177 211 / 90%);
	justify-content: space-between;
    height: 64px;
}

#gnavi_box.fixed{
  position: fixed;/*fixedを設定して固定*/
    z-index: 999;/*最前面へ*/
    top:0;/*位置指定*/
    left:0;/*位置指定*/
}
#menu_box{
	height: 60px;
	width: 1030px;
	overflow:hidden;
	float: right;

}
.menu {
    height: 60px;
    width: 920px;
    float: left;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;

    align-items: center;
    /* max-width: 1300px; */
    flex-direction: row;
    position: relative;
    margin: 0 auto;
}
.menu > li {
    float: left;
    height: 50px;
    line-height: 50px;
    width: 205px;
	color: #fff;
}
.menu > li a {
	display: block;
	color: #fff;
	font-size:16px;
	padding: 17px 5px;
	letter-spacing: 1px;
	font-family: "A1 Mincho", "游明朝体", "Yu Mincho", YuMincho, serif;
}
.menu > li a:hover {
	opacity: 0.8;
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}
.menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}
.menu__second-level li {
    border-top: 1px solid #89bfe5;
}
.menu__second-level li a:hover {
    background: #004575;
}
/* 下矢印 
.init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 13px;
    margin: 0 0 0 15px;
    border-right: 1px solid #5e5e5e;
    border-bottom: 1px solid #5e5e5e;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}*/
/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}
.menu:after {
    clear: both;
}
.menu {
    *zoom: 1;
}
.menu > li.menu__single {
    position: relative;
}
.menu > li.menu__single p{
	font-size:14px;
	letter-spacing: 2px;
	padding: 17px 5px;
	font-family: "A1 Mincho", "游明朝体", "Yu Mincho", YuMincho, serif;
}

li.menu__single ul.menu__second-level {
	position: absolute;
	top: 40px;
	width: 100%;
	background: #069;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	visibility: hidden;
	opacity: 0;
}
li.menu__single:hover ul.menu__second-level {
    top: 50px;
    visibility: visible;
    opacity: 1;
}

.gnavi_img{
	width:30px;
}
.gnavi_img img{
	width:100%;
}
/********************************
		navi_new
********************************/

#mobileNav{
	display:none;
}

