@charset "utf-8";
/*Common css*/


/*  Layout
======================================== */


body {
	font-size: 1rem;
	font-family: -apple-system, BlinkMacSystemFont, Roboto,"Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}


/*  header
======================================== */

header {
	display:-webkit-box;
  	display:-ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 12px 20px 10px;
	background-color:#2d287f;
	position:relative;
}

.header_logo h1 .img_ja{
	width: 200px;
	height: auto;	
	color: #fff;
}

.header_logo h1 .img_en{
	width: 300px;
	height: auto;	
	color: #fff;
}

.header_logo h1 a:hover img{
  opacity: 0.7;
  filter: alpha(opacity=80);
  -moz-opacity: 0.5;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.header_box{
	display: -webkit-box;
  	display: -ms-flexbox;
	display: flex;
	color: #FFFFFF;
}

.header_box img{
	width: 20px;
	height: auto;
	margin-right: 20px;
	margin-top: -2px;
}

.header_box a:hover img{
	height: auto;
  opacity: 0.7;
  filter: alpha(opacity=80);
  -moz-opacity: 0.5;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}


.header_lang a{
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.header_lang a{
	text-decoration:none;
	color:#FFFFFF;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.header_lang a:hover{
	opacity: 0.7 ;
}

@media screen and (max-width: 480px) {
	header {
		padding: 15px 15px 10px;
	
	}
	.header_logo h1 img{
		width: 180px;
	}
	
	.header_logo h1 .img_ja{
		width: 200px;
		height: auto;	
		color: #fff;
	}
	
	.header_logo h1 .img_en{
		width: 250px !important;
		height: auto;	
		color: #fff;
	}
	
	.header_box img{
		width: 18px;
		margin-right: 10px;
		margin-top: -1px;
	}
}


/*  search_window
======================================== */

.search_window{
	background-color:#FFFF00;
	position:absolute;
	top: 50px;
	left:0;
	right:0;
	width:50%;
	height: 300px;
	margin: 0 auto;
	display:none;
}

/* header>search
======================================== */

#head_search{
/*	height:0px;
	overflow-y: hidden;*/
	display:none;
	z-index: 200;
	margin: 0px auto;
	padding: 15px 15px 50px;
	width: 90%;
	position:absolute;
	top: 100px;
	left:0;
	right:0;
	background: rgba(45,40,127,0.9);
}

@media screen and (min-width: 960px) {
	#head_search{
		width: 80%;
		max-width: 900px;
	}
}

.head_search_close{
	text-align:right;
}

.head_search_close img{
	width:15px;
	height:auto;
}

.head_search_close a:hover img{
  opacity: 0.7;
  filter: alpha(opacity=80);
  -moz-opacity: 0.5;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}


.head_search_ttl{
	text-align: left;
	margin-bottom: 20px;
	width: 100%;
	color:#FFFFFF;
	font-weight: 600;
	font-size: 1.2rem;
}

.head_search_container{
	margin: 20px;

}


/*  nav
======================================== */


#nav_list {
	display:-webkit-box;
  	display:-ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: center;
	align-content: flex-start;
	flex-wrap: wrap;
	margin: 30px auto;
}

#nav_list a{
	padding:10px 20px;
	margin: 0 4px 5px;
	display:-webkit-box;
  	display:-ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: center;
	text-decoration:none;
	color:#666;
	border: #2d287f solid 2px ;
	border-radius: 20px;
}

#nav_list a:hover{
	color: #fff;
}

#nav_list li {
	font-size:0.9rem;
	list-style: none;
}

#nav_list a:hover{
	color: #fff;
	background: #2d287f;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}



@media screen and (max-width: 480px) {
	#nav_list {
justify-content: flex-start;
		padding: 0 10px;
	}
	#nav_list a{
		display: block;
	}
	#nav_list li {
		font-size:0.8rem;
		margin: 0 2px;
	}
}


/* more_btn
-------------------- */


.more_btn{
	text-align:center;
	margin: 30px 0 0px;
}

.more_btn img{
	width: 100px;
}

.more_btn a:hover img{
  opacity: 0.7;
  filter: alpha(opacity=80);
  -moz-opacity: 0.5;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

/* footer
======================================== */


footer {
	background:#2d287f;
	text-align:right;
	padding: 30px 20px 15px;
}

#footer_copy_w{
	font-size: 0.7rem;
	color:#fff;
	margin-top:30px;
}

#footer_copy_w img{
	width: 24px;
	height: auto;
	padding-right: 10px;
	padding-bottom: 10px;
}


#footer_copy_w a:hover img{
  opacity: 0.7;
  filter: alpha(opacity=80);
  -moz-opacity: 0.5;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

@media screen and (max-width: 480px) {

	footer {
		padding: 10px 15px 10px;
	}
	#footer_copy_w{
		margin-top:20px;
	}

}


