@charset "Shift_JIS";


/* ナビゲーション */
#hrc-nav{
	width: 100%;
    height: 32px;
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
	background-image : url(../img/menuback.png);
    background-position: top left;
    background-repeat: repeat-x;
	z-index: 999;
	position: sticky;
}

#hrc-nav ul{
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 1px;
    padding-top: 0;
    padding-right: 2px;
    padding-left: 0;
    padding-bottom: 0;
    list-style-type: none;
    overflow: hidden;
    background-image : url(../img/mainmenuItem.png);
    background-position: top right;
    background-repeat: no-repeat;
}

#hrc-nav ul::after{
    content: ".";
    clear: both;
    height: 0;
    display: block;
    visibility: hidden;
}

#hrc-nav li{
    float: left;
    display: inline;
    padding-left: 2px;
    display: inline;
    font-size: 13px;
    height: 32px;
    background-image : url(../img/mainmenuItem.png);
    background-position: top left;
    background-repeat: no-repeat;
}

#hrc-nav li a{
    overflow: hidden;
    display: block;
    height: 32px;
    text-align: center;
    line-height: 32px;
    padding-top: 1px;
    padding-left: 20px;
    padding-right: 20px;
}

#hrc-nav li span.en{
    display: none;
}

* html #hrc-nav li a{
    /* ie6用ハック */
    display: inline-block;
}

#hrc-nav a:link{
    background-image : url(../img/mainmenu.png);
    background-position: top left;
    background-repeat: repeat-x;
}
#hrc-nav a:visited{
    background-image : url(../img/mainmenu.png);
    background-position: top left;
    background-repeat: repeat-x;
}
#hrc-nav a:hover{
    background-image : url(../img/mainmenu_on.png);
    background-position: top left;
    background-repeat: repeat-x;
}
#hrc-nav a:active{
    background-image : url(../img/mainmenu_on.png);
    background-position: top left;
    background-repeat: repeat-x;
}

#hrc-nav h3.hrc-c-index{
    height: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-indent: -9999px;
    background: none;
}


#content1{
    margin-top : 15px;
	background-color : #ceffe8;
	border-bottom-width : 1px;
	border-bottom-color : blue;
}

#content1 span{
    color : white;
	background-color : red;
	text-align : center;"
}

#content2 li{
    margin-top : 10px;
	margin-left : 40px;
	background-color : #fff;
}

@media screen and (max-width: 568px) {

	#hrc-nav{
		width: 100%;
		height: auto;
		position: relative;
		top: 0;
		left: 0;
		border-top-width: 1px;
		border-top-color: #d8d8d8;
		border-top-style: solid;
		border-bottom-width: 1px;
		border-bottom-color: #d8d8d8;
		border-bottom-style: solid;
		background-color: #f5f5f5;
		z-index: 999;
	}

.navi__lists {
    display: flex;
}
.navi__list {
    width: 20%;
    height: 60px;
    background-color: #E5F0F8;
    position: relative;
    transition: all .3s;
}
.navi__list:hover {
    background-color: #0071BB;
}
.navi__list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}
.navi__list:hover::before {
    background-color: #0071BB;
}
.navi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #1b4059;
    font-size: 15px;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;
}
.navi__list:hover a {
    color: #fff;
}

.dropdown__lists {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width : 130px;
    position: absolute;
    top: 60px;
    left: 0;
}
.gnavi__list:hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.dropdown__list {
    background-color: #004d80;
    height: 60px;
    transition: all .3s;
    position: relative;
}
.dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #3492d1;
    position: absolute;
    top: 0;
    left: 0;
}
.dropdown__list:hover {
    background-color: #003558;
}
.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
}
.dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
}

	#hrc-nav ul{
		display: none;
		margin-left: 0;
		padding-right: 0;
		background-image : none;
	}
	#hrc-nav ul.toggled-on{
		display: block;
	}
	#hrc-nav li{
		float: none;
		display: block;
		padding-left: 0;
		height: auto;
		background-image : none;
		border-top-width: 1px;
		border-top-color: #d8d8d8;
		border-top-style: solid;
	}
	#hrc-nav li a{
		height: auto;
		text-align: left;
		line-height: 1.4;
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
	}
	#hrc-nav a:link,
	#hrc-nav a:visited,
	#hrc-nav a:hover,
	#hrc-nav a:active{
		background-image : none;
	}
	#hrc-nav li a:hover{
		background-color: #FFFFFF;
	}

}