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

* {
	margin:0;
	padding:0;
	list-style:none;
}

div {
	display:block;
}

a img {
    border-style:none;
}

/*----------------------------------------------------
  hover
----------------------------------------------------*/
a {
	color:#000;
	text-decoration:none;
}

a:hover {
	color:#0068B7;
	text-decoration:underline;
}

.hover {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
 
.hover:hover {
    opacity: 0.6;    
    filter: alpha(opacity=60);
}

/*----------------------------------------------------
  selection ドラック時の背景
----------------------------------------------------*/

::selection {
	color:#FFF;
	background:rgba(0, 104, 183, 0.8);
}
 
::-moz-selection {
	color:#FFF;
	background:rgba(0, 104, 183, 0.8);
}

/*----------------------------------------------------
  header
----------------------------------------------------*/
.header {
	width:100%;
	height:650px;
	overflow:hidden;
	border-bottom:solid 1px #ABABAB;
	z-index:1;
}

.h-top-in {
	max-width:960px;
	margin:0 auto;
}

.header-logo {
	float:left;
}

.header-navi {
	float:right;
}

.header-navi p {
	display:block;
	line-height:100px;
	float:left;
	margin:0 10px;
	font-size:11px;
	font-weight:bolder;
}

/*----------------------------------------------------
  navi
----------------------------------------------------*/
.navi {
	width:100%;
	position:fixed;
	background-color:rgba(255,255,255,0.8);
}

.navi-in {
	height:63px;
	margin:0 auto;
}


#menu {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}


.navi-right {
	float:right;
}

#menu li {
	display: block;
	margin: 0;
	padding: 0;
	float:left;
}

#menu img {
	width:100%;
}

#menu .logo {
	width:80px;
	float:left;
}

#menu .logo img.logo2 {
	width:50px;
}

li.navi-li {
	width:120px;
}

li.navi-li a span {
	display:none;
}

#menu li a {
	display: block;
	color: #0068B7;
	text-align: center;
	text-decoration: none;
	line-height:63px;
	font-weight:bold;
	font-size:17px;
	font-family: "Sawarabi Mincho";
}

#menu li.logo a{
	line-height:0;
}

#menu li a:hover {
	background: ;
}

#toggle{ 
	display: none;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

/*----------------------------------------------------
  page-body
----------------------------------------------------*/
.page-body {
	clear:both;
}



/*----------------------------------------------------
  footer
----------------------------------------------------*/
.footer {
	width:100%;
	border-top:solid 1px #CCC;
	position:relative;
	clear:both;
	height:auto;
	position:absolute;
	font-size:13px;
	text-align:center;
	background:#3374b5;
	color:#FFF;
}

.footer-bottom {
	margin-top:120px;
	margin-bottom:10px;
}

.footer strong {
	font-weight:normal;
}



/*----------------------------------------------------
  Smartphone 480px
----------------------------------------------------*/
@media screen and (max-width:480px){
	.header {
	height:350px;
	}
	
	.navi {
	display:none;
	}
	
	.navi-right {
	width:100%;
	}
	
	.footer-bottom {
	margin-top:20px;
	margin-bottom:10px;
	}
	
	.fixed {
	display:none;
	}
	
}

/*----------------------------------------------------
  Tablet 481~768px
----------------------------------------------------*/
@media screen and (min-width:481px) and ( max-width:768px) {
	/*----------------------------------------------------
  	footer
	----------------------------------------------------*/
	#menu li.logo {
	display:none;
	}
}

/*----------------------------------------------------
  Below 769px~980px
----------------------------------------------------*/
@media screen and (min-width:769px) and ( max-width:980px) {
	/*----------------------------------------------------
  	footer
	----------------------------------------------------*/
}

/*----------------------------------------------------
  Above 980px
----------------------------------------------------*/
@media screen and (min-width:980px) {
	/*----------------------------------------------------
  	footer
	----------------------------------------------------*/
	.footer {
	height:auto;
	}
}
