nav {
	position: relative;
	z-index: 10;
	background: #0a3a87;
	/* [disabled]box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.1); */
}

.nav_in {
	margin: 0px auto;
	position: relative;
	width: 1100px;
	height: 70px;
}
.nav_in ul {
	display: flex;
	justify-content: center;
	list-style: none;
}

.nav_in li:first-child {
}
.nav_in li {
	width: calc(100% / 5);
	position: relative;
	margin: 0;
	padding: 0;
	font-family: Roboto, 'Noto Sans Japanese', serif;
	overflow: hidden;
}

.nav_in li span {
    top: 5px;
    display: block;
    position: absolute;
    right: -34px;
    width: 120px;
		height: 28px;
		font-family: Lato;
		font-style: italic;
		font-weight: 700;
    line-height: 28px;
    text-align: center;
    background: #D43A49;
    color: #fff;
    transform: rotate(35deg);
    z-index: 1;
}

.nav_in li a {
	font-size: 15px;
	font-weight: bold;
	color: #fff;
	display: block;
	text-align: center;
	height: 70px;
	line-height: 70px;
}
.nav_in li a:hover {
	opacity: 1.0 !important;
	background: #072d6b;
	color: #fff;
}
.nav_in li:last-child {
}

.drop {
	position: relative;
}
.drop li ul {
    left: 0;
    list-style: none outside none;
    margin: 0;
    padding: 0;
    top: 100%;
}
.drop li .drop_in {
	top: 100%;
	position: absolute;
	/* [disabled]padding: 15px 10px 10px 15px; */
	height: auto !important;
	overflow: hidden;
	visibility: hidden;
	/* [disabled]width: 355px; */
	opacity:0 !important;
	transition: all 0.2s ease 0s;
	clear: both;
	z-index:100 !important;
}
.drop li:hover div.drop_in {
	visibility: visible !important;
	display:block;
	height: auto !important;
	transition: all 0.2s ease 0s;
	box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
	zoom: 1;  /* ie 8 */
	opacity:1 !important;
	z-index:100 !important;
}
.drop li .drop_in li {
	display: block;
	float: none;
	border-left: none;
	border-right: none;
	border-top: none;
	width: 100%;
	border-bottom:1px solid #ccc;
}
.drop li .drop_in li:first-child {
	width: 100%;
}
.drop li .drop_in li:last-child {
	border-bottom: none;
}

.drop li .drop_in li a {
	display: block;
	font-size: 13px;
	text-align: center;
	color: #333;
	background: #eee;
	font-weight: normal;
	height: auto;
	padding: 5px 0px 5px 0px;
	line-height:18px;
	width: 115px;
	opacity:1 !important;
	filter: alpha(opacity=100) !important;        /* ie lt 8 */
	text-indent: 0;
}
.drop li .drop_in li a:hover {
	text-decoration: none;
	color: #fff;
}

nav.sub {
	background: none;
}
nav.sub .nav_in {
	height: 50px;
}
nav.sub .nav_in li a {
	color: #000;
	height: 50px;
	line-height: 50px;
}
nav.sub .nav_in li a:hover {
	color: #fff;
}
nav.sub .nav_in li:nth-child(1) {
	background:  url(../../img/common/icon/nav_01.svg) no-repeat 8% 48% / 21px
}
nav.sub .nav_in li:nth-child(2) {
	background:  url(../../img/common/icon/nav_02.svg) no-repeat 18% 48% / 21px
}
nav.sub .nav_in li:nth-child(3) {
	background:  url(../../img/common/icon/nav_03.svg) no-repeat 22% 50% / 19px
}
nav.sub .nav_in li:nth-child(4) {
	background:  url(../../img/common/icon/nav_04.svg) no-repeat 15% 49% / 21px
}
nav.sub .nav_in li:nth-child(5) {
	background:  url(../../img/common/icon/nav_05.svg) no-repeat 24% 49% / 13px
}
.hid_menu{
	display:none;
}

.navigation .lang {
	margin: 0 auto;
	width: 93%;
}
.navigation .lang select {	
	border: 0;
	border-radius: 4px;
	font-style: italic;
	letter-spacing: 1px;
	font-weight: 500;
	font-family: "Lato", "メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	padding: 6px 15px 6px 10px;
	width: 100%;
}


@media screen and (max-width: 480px) {
	.nav_in {
		display: none;
	}



/*ハンバーガーメニュー*/
.hid_menu{
	display: block;
	float:right;
}
.inner_sp{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	background:none;
	z-index:9999;
	-webkit-user-select:none;
	-moz-user-select:none;
	user-select:none;
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	z-index: 999;
}
.navOpen .navigation  {
	right: 0;
	overflow: scroll;
	height:100%;
	display:block;
}
.navBtn {
	display:block;
	width: 25px;
	position: absolute;
	top: 20px;
	right: 15px;
	cursor: pointer;
	padding: 7px;
	z-index:10000 !important;
	background:#fff;
	border-radius:1px;
}
.navBtn span {
	display: block;
	height: 3px;
	width: 100%;
	background:#0A3A87;
	border-radius: 2px;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
.navBtn span:nth-of-type(2),
.navBtn span:nth-of-type(3) {
	margin-top: 5px;
}
.navBtn span:nth-of-type(3){
	position:relative;
}
.navOpen .navBtn span:nth-of-type(1) {
	-webkit-transform: translateY(7px) translateX(0) rotate(45deg);
	-ms-transform: translateY(7px) translateX(0) rotate(45deg);
	transform: translateY(7px) translateX(0) rotate(45deg);
	background:#0A3A87;
}
.navOpen .navBtn span:nth-of-type(2) {
	margin-top: 5px;
	opacity: 0;
	-webkit-transform: translateY(9px);
	-ms-transform: translateY(9px);
	transform: translateY(9px);
	background:#0A3A87;
}
.navOpen .navBtn span:nth-of-type(3) {
	-webkit-transform: translateY(-9px) translateX(0) rotate(-45deg);
	-ms-transform: translateY(-9px) translateX(0) rotate(-45deg);
	transform: translateY(-9px) translateX(0) rotate(-45deg);
	background:#0A3A87;
}

.navigation{
	display:none;
	overflow: auto;
	position: fixed;
	top: 0;
	float:none;
	width: 100%;
	max-width:100%;
	height: 100%;
	z-index:9999;
	height:auto;
	padding-bottom:0px;
}
.navigation ul li {
	float: none;
	width: auto;
	text-align:center;
}
	
.navigation ul li a{
	padding:12px 12px 12px 20px;
	display:block;
	text-align: left;
	color:#fff;
	line-height:120%;
}

.navigation ul li a:hover{
	text-decoration:none;
}
.navigation ul li:first-child{
}

.navigation ul li:last-child{
	width: 100%;
}
.navigation ul li:last-child a {
	width: 95%;
}
	
.navigation ul li a.nest {
}
.btBtn{
	width:80%;
	text-align:center;
	color:#fff;
	padding:10px 0;
	border:2px solid #fff;
	margin:40px auto 20px;
	cursor: pointer;
}


.nav_logo{
	padding:20px;
	border-bottom:2px solid #fff;
	margin-bottom:20px;
	font-size:100%;
	font-weight:bold;
}
.nav_logo a{
	color:#fff;
}

.nav_menu{
	display:flex;
	flex-wrap:wrap;
	margin-bottom:20px;
}
.nav_menu li{
	width:50% !important;
	margin-bottom:10px;
}
.nav_menu li a{
	display:block;
	width:95%;
	margin:0 auto;
	padding:20px 0 !important;
	text-align:center !important;
	background:#fff;
	color:#000 !important;
}
.nav_menu li a span{
	display:block;
	text-align:center;
	font-size:70%;
	color:#0A3A87 !important;
}
.nav_bnr{
}
.nav_bnr ul{
	display:flex;
	flex-wrap:wrap;
}
.nav_bnr li{
	width:50% !important;
	margin-bottom:20px;
}
.nav_bnr li a{
	display:block;
	width:92%;
	margin:0 auto;
	padding:20px 0 !important;
	text-align:center !important;
	color:#fff !important;
	position:relative;
	background:rgba(0,0,0,0.5);
	text-shadow:0 0 2px #000;
	line-height:40px;
	overflow: hidden;
}
.nav_bnr li a:hover{
	opacity:1.0 !important;
	filter: alpha(opacity=100) !important;        /* ie lt 8 */
	-ms-filter: "alpha(opacity=100)" !important;  /* ie 8 */
	background:rgba(0,0,0,0.2) !important;
}
.nav_bnr li a span{
	display:block;
	text-align:center;
	font-size:70%;
}
.nav_bnr ul li a span.new {
    top: 0px;
    display: block;
    position: absolute;
    right: -40px;
    width: 120px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background: #D43A49;
    color: #fff;
    transform: rotate(35deg);
    z-index: 1;
    font-size:80%!important;
}

.nav_bnr li:nth-child(5){
	width:100% !important;
}
.nav_bnr li:nth-child(5) a{
	width:98%;
	font-size:180%;
	line-height:80px !important;
}
.nav_bnr li:nth-child(5) a span{
	display:inline;
	margin-left:20px;
	font-size:100%;
}

.nav_bnr li:nth-child(5) a span.new{
	font-size:55%!important;
	right: -35px;
    top: 5px;
}

.nav_bnr li a:before{
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:-5;
}

.nav_other{
}
.nav_other ul{
	display:flex;
	flex-wrap:wrap;
}
.nav_other ul li{
	width:50%;
	margin-bottom:10px;
}
.nav_other ul li a{
	width:90%;
	margin:0 auto;
	display:block;
	padding:10px 0;
	text-align:center;
	background:#fff;
	color:#000;
}

.nav_other ul li a span:nth-child(2) {
	display: block;
	text-align: center;
	font-size: 70%;
	color: #0A3A87 !important;
	line-height: 1;
}

.sp_tel {
	margin: 30px 0;
}
.sp_tel span {
	color: #fff;
	text-align: center;
	font-size: 21px;
	display: block;
	font-family: Lato;
	font-style: italic;
	font-weight: 600;
}


.search{
	margin:30px auto;
	width:98%;
	display:flex;
	flex-wrap:wrap;
}
.search form{
	padding:0;
	margin:0;
	width:100%;
}
.search form input.txt{
	padding:10px 5px 10px 45px;
	border: none;
	border-radius:4px;
	width:80%;
	margin:0 auto !important;
	display:block;
	font-size:12px;
	line-height:18px;
	background:url(../../img/common/nav/search_icon.svg) left 10px center no-repeat #fff;
	background-size:24px 24px;
}
.search form input.btn{
	display:block;
	width:50%;
	margin:20px auto  0!important;
	padding:10px 0;
	text-align:center;
	font-size:14px;
	line-height:18px;
	border:none;
	background:#0A3A87;
	color:#fff;
	cursor:pointer;
    transition: all 0.5s ease 0s !important;
    -webkit-transition: all 0.5s ease 0s !important;
}
.search form input.btn:hover{
	background:#072d6b;
}
.inner_sp .line {
	display: block;
	text-align: center;
}
.inner_sp .line img {
	height: 36px;
}

}
