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

/*=========================================== 
スマホ向けのレイアウトの指定：～960px 
===========================================*/
@media only screen and (min-width: 0px) {

#container{
	margin:0 auto;
	width:100%;
	color:rgb(75,75,75);
}

header{
	background-color: rgb(237,237,237);
	height: 60px;
	position: relative;
}

.header_inner{
	width: 90%;
	margin: 0 auto;
}

header .logo{
	float:left;
}

header .logo img{
	width: auto;
	height: 60px;
	z-index: 2;
	position: absolute;
	top: 0;
	left: 5%;
}

header .logo h1{
	font-size:10px;
	position:absolute;
	bottom:5px;
	left:50px;
}
}

/* スマホ向けのレイアウトの指定：481px〜 */
@media only screen and (min-width: 480px) {
header .logo h1{
	font-size:12px;	
	bottom:23px;
	left:185px;
}
}

/*=========================================== 
PC向けのレイアウトの指定：961px〜
===========================================*/
@media only screen and (min-width: 961px) {
	
#container{
	margin:0 auto;
	max-width:100vw;
}

/*ヘッダー*/
header{
	width: 100vw;
	height: 100px;
	background: rgb(237,237,237);
	position: relative;
	z-index: 100;
}

.header_inner{
	width: 100%;
	max-width:1200px;
	height: 100px;
	margin: 0 auto;
	justify-content: space-between;
	position: relative;
}

.header_inner .logo img{
	width: 220px;
	height: 100px;
	margin: 0 auto;
	margin-left: 60px;	
	margin-right: auto;
	left: 0;
}

header .logo h1{
	bottom:15px;
	left:130px;
}

nav{
	width: 100%;
	max-width:1200px;
	height: 100px;
	margin: 0 auto;
}

nav ul {
	height: 100px;
	float: right;
}

nav li{
    text-align: center;
    display: inline-block;
    margin: 0px 5px;
    font-size: 0;
}  

nav li a  {
	display: block;
	font-size: 14px;
	color:
	rgb(0,0,0);
	line-height: 50px;
	height: 50px;
	padding: 0 10px;
}  

nav li a:hover{
	opacity:0.6;
	filter:alpha(opacity=85); /* IE 6,7*/
	-ms-filter: "alpha(opacity=85)"; /* IE 8,9 */
	-moz-opacity:0.85; /* FF , Netscape */
	-khtml-opacity: 0.85; /* Safari 1.x */
	zoom:1; /*IE*/
}

.header_btn{
	background: rgb(0,169,255);
	width: 190px;
	border-radius: 4px;
	font-size: 14px;
	margin: 25px 0 25px 10px;
	position: relative;
}

li.header_btn a {color: rgb(255,255,255);}
  
ul.form_list {
    height: 0;
    overflow: hidden;
    transition: 0.4s;
}
  
ul.form_list li {
    width: 100%;
    border-top: 2px solid rgba(255,255,255,0.3);
    margin: 0;
}

.header_btn:hover ul.form_list {height: 100px;}
  
.header_btn a:hover  {  
	opacity:0.6;
	filter:alpha(opacity=85); /* IE 6,7*/
	-ms-filter: "alpha(opacity=85)"; /* IE 8,9 */
	-moz-opacity:0.85; /* FF , Netscape */
	-khtml-opacity: 0.85; /* Safari 1.x */
	zoom:1; /*IE*/  
} 
}