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


/*//////////////////////////////////////// index ////////////////////////////////////////*/

#indexarea{
	padding-top: 60px;
	padding-bottom: 150px;
}

#indexarea ul{
	width: 960px;
	margin-left: auto;
	margin-right: auto;
	letter-spacing: -.4em;
	text-align: center;
}

#indexarea ul li {
	width: 300px;
	max-width: 300px;
	display: inline-block;
	letter-spacing: normal;
	margin-right: 30px;
	margin-bottom: 50px;
	transition: all 500ms 0s ease;
}

#indexarea ul li:nth-child(3),
#indexarea ul li:nth-child(5){
	margin-right: 0px;
}

#indexarea ul li img{
	max-width: 100%;
	vertical-align: bottom;
}

#indexarea ul li p{
	background-color: #FFF;
	font-size: 16px;
	padding-left: 10px;
	padding-top: 8px;
	height: 80px;
	border-bottom: #33bab0 solid 2px;
	text-align: left;
}

#indexarea ul li p.en{
	font-size: 18px;
}

#indexarea ul li a{
	color: #000;
}

#indexarea ul li:hover{
	transform: scale(1.05,1.05);
	-webkit-transform:scale(1.05,1.05);
	-moz-transform:scale(1.05,1.05);
	-ms-transform:scale(1.05,1.05);
	-o-transform:scale(1.05,1.05);
}

#indexarea ul li:hover a{
	color: #33bab0;
}




/*//////////////////////////////////////// common ////////////////////////////////////////*/


#contents_header{
	background-color: #f5f5f5;
	position: relative;
	height: 150px;
	overflow: hidden;
}


#contents_header h2{
	font-weight: bold;
	letter-spacing: 2px;
	color: #000;
	display: block;
	position: absolute;
	z-index:100;
	width: 100%;
	min-width: 1000px;
	top: 50%;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	line-height: 1.3;
	font-size: 32px;
	z-index: 10;
}

#contents_header h2.en{
	font-weight: 400;
	font-size: 36px;
}


#contents_header div{
	position: absolute;
	top: 0%;
	left: 50%;
	margin-top: -15px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}



table{
	border-collapse:collapse;
	border:0px;
	font-size: 16px;
}

table th{
	background-image: url(../img/tr_line.gif);
	background-position: left bottom;
	background-repeat: repeat-x;
	padding-left: 15px;
	padding-top: 20px;
	padding-bottom: 20px;
	vertical-align: top;
	font-weight: bold;
}

table td{
	background-image: url(../img/td_line.gif);
	background-position: left bottom;
	background-repeat: repeat-x;
	padding-left: 25px;
	padding-top: 20px;
	padding-bottom: 20px;
	vertical-align: top;
}






/*//////////////////////////////////////// business ////////////////////////////////////////*/


#business_area {
	position: relative;
	padding-bottom: 360px;
	overflow: hidden;
}

#business_area > div{
	position: relative;
	z-index: 30;
}


#business_area #airplane_l{
	position: absolute;
	bottom: 50px;
	left: 50%;
	margin-left: -45%;
	z-index: 10;
}

#business_area #airplane_l img{
	/*アニメーションスタート
	margin-left: -100px;
	margin-bottom: -50px;
	*/
}

#business_area #business_drawing{
	position: absolute;
	z-index: 30;
	left: 0px;
	bottom: 0px;
	text-align: right;
	width: 100%;
}

#business_area #business_triangle{
	position: absolute;
	z-index: 15;
	width: 50%;
	left: 50%;
	bottom:0px;
}

#business_area #business_triangle img{
	margin-left: -650px;
}

#business_area h3{
	font-family: Roboto Condensed, sans-serif;
	font-weight: 400;
	font-size: 50px;
	font-style: italic;
	color: #00a3d9;
	text-align: center;
	padding-top: 45px;
	padding-bottom: 10px;
	line-height: 65px;
}

#business_area h4{
	font-size: 30px;
	font-weight: bold;
	text-align: center;
}

#business_area #airplane_m{
	position: absolute;
	top:40px;
	left: 50%;
	margin-top: 0px;
	margin-left: -70px;
	z-index: 20;
}

#business_area div p{
	margin-top: 65px;
	font-size: 16px;
	text-align: center;
	line-height: 34px;
	padding-bottom: 60px;
}

#business_area div{
	position: relative;
	text-align: center;
}

#business_area div figure{
	position: absolute;
	text-align: center;
	z-index: 2;
	top:0;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
}

#rotate_img{
/* keyframes に任意の名前を付ける */
  -moz-animation-name: 'r_zu';
  -webkit-animation-name: 'r_zu';
  animation-name: 'r_zu';
  -goog-ms-animation-name: 'r_zu'; 
 
 /* 1動作(ここでは1回転)あたりの秒数 */
  -moz-animation-duration: 40s;
  -webkit-animation-duration: 40s;
  animation-duration: 40s;
  -goog-ms-animation-duration: 40s;
 
/* 動作の向き、初期値はnormal 、逆再生は alternate */
  -moz-animation-direction: normal;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -goog-ms-animation-direction: normal;
  
/* 動き方 linear, ease, easein, ease-out, ease-in-out */
  -moz-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -goog-ms-animation-timing-function: linear;
  
/* 動作 (ここでは回転) の回数を数値で指定、無限ループは infinite */
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -goog-ms-animation-iteration-count: infinite;
}
 
@-webkit-keyframes 'r_zu' {
  from {
  /* 最初の回転角 */
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -goog-ms-transform: rotate(0deg);
  }
  /* 1動作の最後 ( 1duration 後) の回転角 */
  to {
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -goog-ms-transform: rotate(360deg);
  }
}


#business_zu_info{
	margin-left: 70%;
	margin-top: -70px;
}




/*//////////////////////////////////////// topmessage ////////////////////////////////////////*/

#topmes_area{
	width: 100%;
	background-image: url(../img/topmessage_main_bg.gif);
	background-position: center top;
	background-size: cover;
	overflow: hidden;
}

#topmes_area2{
	width: 100%;
	background-image: url(../img/topmessage_main_bg.gif);
	background-position: center top;
	background-size: cover;
	overflow: hidden;
}

#topmes_main{
	position: relative;
	z-index: 1;
	top:0px;
	width: 100%;
	height: 660px;
	text-align: center;
	z-index: 5;
}

#topmes_main div{
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 5;
}

#topmes_main span{
	position: absolute;
	z-index: 8;
	top:35px;
	left:50%;
	margin-left: 100px;
}


#topmes_text{
	position: relative;
	z-index: 100;
}

#topmes_text article > div{
	font-size: 16px;
	line-height: 28px;
	width: 525px;
	margin-left: 440px;
	
	margin-top: -550px;
	padding-bottom: 150px;
}

#topmes_bg {
	
}

#topmes_bg div{
	position: absolute;
	width: 100%;
	height:100%;
	top:660px;
	background-color: #FFF;

	-webkit-transform: skewY(-4deg);
	-ms-transform: skewY(-4deg);
	transform: skewY(-4deg);

	z-index: 10;
	padding-top: 20px;
	margin-top: -35px;
	margin-left: 0%;
}


#topmes_text article > div > div{
	display: inline-block;
}


#topmes_text h2 {
	background: #FFF;
	padding-left:10px;
	padding-top: 8px;
	padding-bottom: 8px;
}

#topmes_text h3{
	font-size: 33px;
	font-weight: bold;
	line-height: 44px;
	padding-top: 20px;
	padding-bottom: 60px;
}


#topmes_text p{
	text-align:justify;
	text-justify:distribute;
	padding-bottom: 100px;
	line-height: 34px;
}

#topmes_text p#topmes_signature{
	text-align: right;
	font-size: 14px;
	line-height: 20px;
}

#topmes_text p#topmes_signature img{
	margin-top: 10px;
}






/*//////////////////////////////////////// profile ////////////////////////////////////////*/


#profile_area{
	padding-top: 60px;
}
#profile_inner {
	padding-bottom: 150px;
}


#profile_inner > div,
#profile_inner > table{
	width: 890px;
	margin-left: auto;
	margin-right: auto;
}

#profile_inner > table{
	margin-top: 30px;
}

#profile_inner > table a{
	color: #0c9fa0;
}

#profile_inner > table a:hover{
	text-decoration: underline;
}

#profile_inner > table th{
	background-image: url(../img/tr_line.gif);
	background-position: left bottom;
	background-repeat: repeat-x;
	width: 180px;
}


#profile_area .infoarea {
	padding-top: 20px;
}

#profile_area .infoarea dt{
	font-family: Roboto Condensed, sans-serif;
	font-weight: 400;
	font-size: 16px;
	float: left;
	width: 45px;
	height: 24px;
	line-height: 1;
	background-image: url(/common/img/info_line.gif);
	background-repeat: no-repeat;
	background-position: right top;
}

#profile_area .infoarea dt img{
	margin-top: 1px;
}

#profile_area .infoarea dd{
	padding-left: 55px;
	height: 24px;
	line-height: 1;
}


dl.officer_list{
	margin-bottom:10px;
}

dl.officer_list dt{
	display: block;
	float:left;
	width:190px;
	padding: 10px;
	padding-left: 15px;
	background:#f5f5f5;
	font-weight:bold;
	color:#333;
}
dl.officer_list dd{
	display: block;
	padding:10px;
	padding-left: 205px;
	border-bottom:1px dotted #ccc;
}


ul.bussinss_list li{
	margin-left: 1em;
}

ul.bussinss_list li:before{
	content: "";
	display: block;
	float: left;
	background: #2ba8a2;
	width: 8px;
	height: 8px;
	
	margin-top: 8px;
	margin-left: -1em;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;

}

#profile_inner > div.otbox{
	margin-top: 45px;
	border: #2ba8a2 solid 1px;
}

#profile_inner > div.otbox h3{
	background-color: #eaf8f7;
	font-weight: bold;
	font-size: 16px;
	padding: 10px;
	padding-left: 20px;
}

#profile_inner > div.otbox ul{
	padding: 40px;
}
	
#profile_inner > div.otbox ul li{
	width: 46%;
	float: left;
}

#profile_inner > div.otbox ul li:nth-child(2){
	width: 50%;
	float: right;
}

#profile_inner > div.otbox a{
	color: #0c9fa0;
}

#profile_inner > div.otbox a:hover{
	color: #0c9fa0;
	text-decoration: underline;
}




/*//////////////////////////////////////// history ////////////////////////////////////////*/



#history_area{
	padding-top: 60px;
	background-image: url(../img/history_bg.gif);
	background-repeat: no-repeat;
	background-position: left 100% bottom 20px;
}

#history_inner {
	padding-bottom: 150px;
}

#history_inner > ul{
	width: 890px;
	margin-left: auto;
	margin-right: auto;
}

#history_inner > ul li{
	font-size: 16px;
}

#history_inner > ul li:nth-child(2n-1){
	width: 180px;
	float: left;
	padding-left: 15px;
	padding-top: 20px;
	padding-bottom: 20px;
	font-weight: bold;
}

#history_inner > ul li:nth-child(2n-1) span{
	display: inline-block;
	width: 50px;
	text-align: right;
}


#history_inner > ul li:nth-child(2n){
	background-image: url(../img/history_line.gif);
	background-position: left bottom;
	background-repeat: no-repeat;
	padding-left: 200px;
	padding-top: 20px;
	padding-bottom: 20px;
}














/*//////////////////////////////////////// access ////////////////////////////////////////*/



#access_area_nav{
	border-bottom: #e5e5e5 solid 1px;
	text-align: center;
	padding-top: 24px;
	padding-bottom: 10px;
}

#access_area_nav ul li{
	display: inline-block;
	padding-bottom: 10px;
	padding-right: 40px;
}

#access_area_nav ul li a{
	position: relative;
	color: #000;
	padding-left: 16px;
	display: block;
}

#access_area_nav ul li a:hover{
	color: #0492c1;
	text-decoration: underline;
}

#access_area_nav ul li a span:before{
	z-index: 1;
    position: absolute;
    left: 0px;
    top: 8px;
    content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 3px 9px;
	border-color: transparent transparent transparent #00a3d9;

}


#access_inner{
	padding-bottom: 150px;
}














@media screen and (max-width: 640px) {
	
	/*//////////////////////////////////////// index ////////////////////////////////////////*/


	#indexarea{
		padding-top: 10%;
	}

	#indexarea ul{
		width: 80%;
		margin-left: auto;
		margin-right: auto;
		letter-spacing: normal;
		text-align: center;
	}

	#indexarea ul li {
		width: 100%;
		max-width: 300px;
		display: block;
		letter-spacing: normal;
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 50px;
		transition: all 0ms 0s ease;
	}

	#indexarea ul li:nth-child(3),
	#indexarea ul li:nth-child(5){
		margin-right: auto;
	}

	#indexarea ul li img{
		max-width: 100%;
		vertical-align: bottom;
	}

	#indexarea ul li p{
		background-color: #FFF;
		font-size: 16px;
		padding-left: 10px;
		padding-top: 5px;
		padding-bottom: 5px;
		height:auto;
		border-bottom: #33bab0 solid 2px;
		text-align: left;
	}

	#indexarea ul li p.en{
		font-size: 18px;
	}

	#indexarea ul li a{
		color: #000;
	}


	#indexarea ul li:hover{
		transition: all 500ms 0s ease;
		transform: none;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
	} 

















	/*//////////////////////////////////////// common ////////////////////////////////////////*/

	
	
	#contents_header{
		position: relative;
		overflow: hidden;
		
		background-color: #f5f5f5;
		height: auto;
		padding-top: 15%;
		padding-bottom: 15%;
		margin-bottom: 0px;
	}
	
	#contents_header h2{
		font-weight: bold;
		letter-spacing: 2px;
		color: #000;
		display: block;
		position: absolute;
		z-index:100;
		width: 100%;
		min-width: 100%;
		top: 50%;
		text-align: center;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		line-height: 1.3;
		font-size: 28px;
		z-index: 10;
	}

	#contents_header h2.en{
		font-weight: 400;
		font-size: 32px;
	}
	
	
	#contents_header div{
		margin-top: 0px;
	}



	table{
		border-collapse:collapse;
		border:0px;
		font-size: 14px;
	}

	table th{
		padding-left: 1%;
		padding-right: 1%;
		padding-top: 5%;
		padding-bottom: 5%;
		vertical-align: top;
		font-weight: bold;
	}

	table td{
		background-image: url(../img/td_line.gif);
		background-position: right bottom;
		background-repeat: repeat-x;
		padding-left: 1%;
		padding-right: 1%;
		padding-top: 5%;
		padding-bottom: 5%;
		vertical-align: top;
	}

	/*//////////////////////////////////////// business ////////////////////////////////////////*/


	#business_area {
		position: relative;
		padding-bottom: 100px;
		overflow: hidden;
	}

	#business_area > div{
		position: relative;
		z-index: 30;
	}


	#business_area #airplane_l{
		position: relative;
		padding-top: 50px;
		margin-bottom: -20px;
		bottom: 0px;
		left: 50%;
		margin-left: -45%;
		z-index: 10;
		width: 50%;
	}

	#business_area #airplane_l img{
		width: 100%;
		/*
		margin-left: -100px;
		margin-bottom: -50px;
		*/
	}

	#business_area #business_drawing{
		position: absolute;
		z-index: 30;
		right: auto;
		left: -300px;
		bottom: 0px;
	}

	#business_area #business_triangle{
		position: absolute;
		z-index: 15;
		width: 100%;
		bottom:0px;
	}
	
	

	#business_area #business_triangle img{
		margin-left: -500px;
	}

	#business_area h3{
		font-family: Roboto Condensed, sans-serif;
		font-weight: 400;
		font-size: 40px;
		font-style: italic;
		color: #00a3d9;
		text-align: center;
		padding-top: 80px;
		padding-bottom: 10px;
		line-height: 45px;
	}

	#business_area h4{
		font-size: 20px;
		font-weight: bold;
		text-align: center;
	}

	#business_area #airplane_m{
		position: absolute;
		top:30px;
		left: 50%;
		margin-top: 0px;
		margin-left: -30px;
		z-index: 20;
	}
	
	#business_area #airplane_m img{
		width: 60%;
	}

	#business_area div p{
		padding-left: 3%;
		padding-right: 3%;
		margin-top: 65px;
		font-size: 14x;
		text-align:justify;
		text-justify:distribute;
		line-height: 30px;
		padding-bottom: 10%;
	}

	#business_area div{
		position: relative;
		text-align: center;
	}

	#business_area div figure{
		position: absolute;
		text-align: center;
		z-index: 2;
		
		left: 0;
		right: 0;
		margin: auto;
		text-align: center;
	}
	
	#business_area div img{
		max-width: 100%;
	}

	#rotate_img{
	/* keyframes に任意の名前を付ける */
	  -moz-animation-name: 'r_zu';
	  -webkit-animation-name: 'r_zu';
	  animation-name: 'r_zu';
	  -goog-ms-animation-name: 'r_zu'; 

	 /* 1動作(ここでは1回転)あたりの秒数 */
	  -moz-animation-duration: 40s;
	  -webkit-animation-duration: 40s;
	  animation-duration: 40s;
	  -goog-ms-animation-duration: 40s;

	/* 動作の向き、初期値はnormal 、逆再生は alternate */
	  -moz-animation-direction: normal;
	  -webkit-animation-direction: normal;
	  animation-direction: normal;
	  -goog-ms-animation-direction: normal;

	/* 動き方 linear, ease, easein, ease-out, ease-in-out */
	  -moz-animation-timing-function: linear;
	  -webkit-animation-timing-function: linear;
	  animation-timing-function: linear;
	  -goog-ms-animation-timing-function: linear;

	/* 動作 (ここでは回転) の回数を数値で指定、無限ループは infinite */
	  -moz-animation-iteration-count: infinite;
	  -webkit-animation-iteration-count: infinite;
	  animation-iteration-count: infinite;
	  -goog-ms-animation-iteration-count: infinite;
	}

	@-webkit-keyframes 'r_zu' {
	  from {
	  /* 最初の回転角 */
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		-goog-ms-transform: rotate(0deg);
	  }
	  /* 1動作の最後 ( 1duration 後) の回転角 */
	  to {
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		-goog-ms-transform: rotate(360deg);
	  }
	}


	#business_zu_info{
		margin-left: 0px;
		margin-top: 30px;
	}























	/*//////////////////////////////////////// topmessage ////////////////////////////////////////*/


	#topmes_area{
		width: 100%;
		background-image: none;
		overflow: hidden;
	}
	
	#topmes_area2{
		width: 100%;
		background-image: none;
		overflow: hidden;
	}

	#topmes_main{
		position: relative;
		z-index: 1;
		top:0px;
		width: 100%;
		height: 400px;
		overflow: hidden;
		z-index: 5;
	}

	#topmes_main div{
		position: relative;
		left: -50px;
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%);
		z-index: 5;
	}
	
	#topmes_main div img{
		margin-top: -50px;
	}

	#topmes_main span{
		position: absolute;
		z-index: 8;
		top:35px;
		left:60%;
		margin-left: 0px;
	}


	#topmes_text{
		position: relative;
		z-index: 100;
	}

	#topmes_text article > div{
		font-size: 16px;
		line-height: 28px;
		width: 100%;
		margin-left: 0px;

		margin-top: 0px;
		padding-bottom: 150px;
	}

	#topmes_bg {
		
	}

	#topmes_bg div{
		position: absolute;
		width: 100%;
		height:100%;
		top:400px;
		background-color: #FFF;

		-webkit-transform: skewY(-4deg);
		-ms-transform: skewY(-4deg);
		transform: skewY(-4deg);

		z-index: 10;
		padding-top: 20px;
		margin-top: -35px;
		margin-left: 0%;
	}


	#topmes_text article > div > div{
		display: inline-block;
	}

	
	#topmes_text h2 {
		background: #FFF;
		padding: 3%;
		padding-left: 3%;
		padding-top: 0px
	}

	#topmes_text h3{
		font-size: 28px;
		font-weight: bold;
		line-height: 36px;
		padding-top: 10px;
		padding-bottom: 40px;
		padding-left: 3%;
		padding-right: 3%;
	}


	#topmes_text p{
		text-align:justify;
		text-justify:distribute;
		padding-bottom: 100px;
		font-size: 14px;
		line-height: 30px;
		padding-left: 3%;
		padding-right: 3%;
	}

	#topmes_text p#topmes_signature{
		text-align: right;
		font-size: 12px;
		line-height: 18px;
	}

	#topmes_text p#topmes_signature img{
		margin-top: 10px;
	}























	/*//////////////////////////////////////// profile ////////////////////////////////////////*/


	#profile_area{
		padding-top: 10%;
	}
	
	#profile_inner {
		padding-bottom: 150px;
	}


	#profile_inner > div,
	#profile_inner > table{
		width: 100%;
	}
	
	#profile_inner > div img{
		max-width: 100%;
	}

	#profile_inner > table{
		margin-top: 30px;
	}
	
	#profile_inner > table th{
		width: 28%;
	}

	#profile_area .infoarea {
		padding-top: 20px;
	}

	#profile_area .infoarea dt{
		font-family: Roboto Condensed, sans-serif;
		font-weight: 400;
		font-size: 14px;
		float: left;
		width: 45px;
		height: 20px;
		line-height: 1;
		background-image: url(/common/img/info_line.gif);
		background-repeat: no-repeat;
		background-position: right top;
	}

	#profile_area .infoarea dt img{
		margin-top: 1px;
	}

	#profile_area .infoarea dd{
		padding-left: 55px;
		height: 20px;
		line-height: 1;
	}


	dl.officer_list{
		margin-bottom:10px;
	}

	dl.officer_list dt{
		display: block;
		float:none;
		width:100%;
		padding: 5px;
		padding-left: 15px;
		background:#f5f5f5;
		font-weight:bold;
		color:#333;
	}
	dl.officer_list dd{
		display: block;
		padding:5px;
		padding-left: 15px;
		margin-bottom: 10px;
		border-bottom:none;
	}

	ul.bussinss_list li:before{
		margin-top: 7px;
	}



	#profile_inner > div.otbox{
		margin-top: 45px;
		border: #2ba8a2 solid 1px;
	}

	#profile_inner > div.otbox h3{
		background-color: #eaf8f7;
		font-weight: bold;
		font-size: 16px;
		padding: 3%;
		padding-left: 6%;
	}

	#profile_inner > div.otbox ul{
		padding: 6%;
	}

	#profile_inner > div.otbox ul li{
		width: 100%;
		float:none;
		text-align: center;
	}

	#profile_inner > div.otbox ul li:nth-child(2){
		padding-top: 8%;
		width: 100%;
		float:none;
		
		text-align:justify;
		text-justify:distribute;
	}



















	/*//////////////////////////////////////// history ////////////////////////////////////////*/




	#history_area{
		padding-top: 10%;
		background-image: url(../img/history_bg.gif);
		background-repeat: no-repeat;
		background-position: left 200% bottom 20px;
		background-size: 80%;
	}

	#history_inner {
		padding-bottom: 150px;
	}

	
	#history_inner > ul{
		width: 100%;
		padding-left: 2%;
		padding-right: 2%;
		margin-left: auto;
		margin-right: auto;
	}
	
	#history_inner > ul li{
		font-size: 14px;
	}

	#history_inner > ul li:nth-child(2n-1){
		width: 150px;
		float: none;
		padding-left: 5px;
		padding-top: 5px;
		padding-bottom: 5px;
		border-bottom: #78d2f2 solid 1px;

	}

	#history_inner > ul li:nth-child(2n-1) span{
		display: inline-block;
		width: 45px;
		text-align: right;
	}


	#history_inner > ul li:nth-child(2n){
		background-image: none;
		border-bottom: #dddddd solid 1px;
		margin-left: 25px;
		padding-left: 5px;
		padding-top: 10px;
		padding-bottom: 5px;
		margin-bottom: 30px;
	}






















	/*//////////////////////////////////////// access ////////////////////////////////////////*/




	#access_area_nav{
		border-bottom: #e5e5e5 solid 1px;
		text-align: left;
		padding-top: 5%;
		padding-left: 5%;
		padding-right: 5%;
	}

	#access_area_nav ul li{
		display: block;
		padding-bottom: 10px;
		padding-right: 0px;
	}

	





















}





@media screen and (max-width: 480px) {
	
	
	#contents_header h2{
		font-weight: bold;
		letter-spacing: 2px;
		color: #000;
		display: block;
		position: absolute;
		z-index:100;
		width: 100%;
		min-width: 100%;
		top: 50%;
		text-align: center;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		line-height: 1.3;
		font-size: 24px;
		z-index: 10;
	}

	#contents_header h2.en{
		font-weight: 400;
		font-size: 28px;
	}
	
	
	
	#topmes_main div{
		position: relative;
		left: -150px;
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%);
		z-index: 5;
	}
	
	#topmes_main span{
		display: none;
	}

	
	
}




















