@charset "utf-8";


/*	Reset【normalize.css】必要な箇所だけ書く
------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, ul, li { margin: 0; padding: 0; }
ul { list-style: none; }



/*	Common
------------------------------------------------------------ */
body {
/*
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", Meiryo, arial, sans-serif;
*/
	font-family: "SimSun", "sans-serif";
	background: #fff;
	color: #333;
	font-size: 16px;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}

img {
	max-width: 100%;
	height: auto;
}

table {
	width:100%;
	background: #fff;
}

/* ---------- link ---------- 
#contents a {
	text-decoration: none;
	border-bottom: 1px dotted #f66;
	color: #f66;

	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}

#contents a:hover {
	border-bottom: none;
	color: #fcc;
}


a img:hover {
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}
*/



/* Breakpoint
/* ===================================================================
	
	SP	～740px
	PC	741px～
	
=================================================================== */

#wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
}



/*	ヘッダー
------------------------------------------------------------ */
#header {
	position: fixed;
	width: 100%;
	background: #fff;

	-moz-box-shadow: 0px 0px 5px #ccc;
	-webkit-box-shadow: 0px 0px 5px #ccc;
	box-shadow: 0px 0px 5px #ccc;
	
	z-index: 1000;
}

#header div:after {
	content: "";
	clear: both;
	display: block;
}

#header h1 {
	float: left;
}

#header p,
#header ul {
	float:right;
}

#header ul li {
	box-sizing: border-box;
}

#header ul li a {
	display: block;
	text-decoration: none;
	color: #fff;
}

#header .language {
	position: relative;
	*zoom: 1;
	background: #26B9EB;
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", Meiryo, arial, sans-serif;
}

#header .language > li > a {
	position: relative;
	font-size: 14px;
	text-align: center;
}

/* arrow */
#header .language > li > a:after {
	content: "";
	position: absolute;
	top: 52%;
	right: 10px;
	display: block;
	margin-top: -5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	width: 8px;
	height: 8px;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
}

/* drop dwon */
#header .language li ul {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 9999;
}

#header .language li ul li {
	font-size: 14px;
	text-align: center;
}

#header .language li ul li a {
	padding: .8rem 1rem;
	border-top: 1px solid #26B9EB;
	background: #55C8EF;
}

#header .language li ul li a:hover {
	background: #14A8DB;
}

#header .language li ul {
	visibility: hidden;
	opacity: 0;
	transition: 0s;
}

#header .language li ul li a {
	visibility: hidden;
	opacity: 0;
	transition: .5s;
}

#header .logo-cn {
	box-sizing: border-box;
	background: #26b9eb;
	text-align: center;
}


/* --- SP ---------- */
@media screen and (max-width: 740px) {
	
	#header {
		height: 3rem;
	}
	
	#header h1 {
		padding-top: .2rem;
		width: 50%;
	}
	
	#header .logo-cn,
	#header .g-navi-pc,
	#header .language {
		display: none;
	}

	#header .menu-btn-sp a,
	#header .menu-btn-sp a span {
		display: inline-block;
		transition: all .7s;
		box-sizing: border-box;
	}
	
	#header .menu-btn-sp a {
		position: relative;
		margin: .3rem .5rem 0 0;
		border: 1px solid #ddd;
		background: #eee;
		width: 40px;
		height: 38px;
		border-radius: 4px; 
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px; 
	}
	
	#header .menu-btn-sp a span {
		position: absolute;
		left: 0;
		width: 60%;
		height: 3px;
		background-color: #aaa;
		border-radius: 2px;
	}
	
	#header .menu-btn-sp a span:nth-of-type(1) {
		top: 8px;
		left: 8px
	}
	
	#header .menu-btn-sp a span:nth-of-type(2) {
		top: 16px;
		left: 8px
	}
	
	#header .menu-btn-sp a span:nth-of-type(3) {
		bottom: 8px;
		left: 8px
	}	

	#header .menu-btn-sp a:hover {
		background: #ddd;
	}

	.g-navi-sp {
		position: fixed;
		top: 3rem;
		background-color: rgba(255, 255, 255, 0.9);
		box-sizing: border-box;
		width: 100%;
		text-align: center;
		z-index: 900;
	}

	.g-navi-sp li:nth-child(n+5) {
		background-color: rgba(240, 250, 254, 0.9);
	}	

	.g-navi-sp > li {
		position: relative;
		padding: .8rem 0;
		border-bottom: 1px solid #ddd;
	}
		
	.g-navi-sp li a:after {
		content: "";
		position: absolute;
		top: 52%;
		right: 15px;
		display: block;
		margin-top: -7px;
		border-top: 2px solid #26B9EB;
		border-right: 2px solid #26B9EB;
		width: 8px;
		height: 8px;
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
	}
	
	.g-navi-sp li a {
		text-decoration: none;
		color: #333;
	}
	
	.n_sp {
		display:block !important;
	}
}


/* --- PC ---------- */
@media screen and (min-width: 741px) {

	#header {
		height: 4rem;
	}
	
	#header h1 {
		max-width: 210px;
		padding-top: .6rem;
	}

	#header .language {
		border-right: 1px solid #93DCF5;
	}
		
	#header .language > li > a {
		font-weight: bold;
		padding: 1.4rem 1.8rem .2rem .8rem;
		height: 2.4rem;
	}
	
	#header .language li ul li {
		width: 144%;
	}

	#header .g-navi-pc {
		display: table;
		padding-top: 1.4rem;
		border-collapse: separate;
		border-spacing: 1.2rem 0;
		font-size: 16px;
	}
	
	#header .g-navi-pc  li {
		display: table-cell;
	}
	
	#header .g-navi-pc  li a {
		display: block;
		height: 2.4rem;
		text-decoration: none;
		color: #26B9EB;
		font-weight: bold;
	}
	
	#header .g-navi-pc  li a:hover {
		border-bottom: 3px solid #26b9eb;
	}
	
	#header .logo-cn {
		width: 100px;
		height: 4rem;
		padding-top: .9rem;
	}

	.g-navi-sp {
		display: none;
	}

	.n_sp {
		display:none !important;
	}
}



/*	テーブル
------------------------------------------------------------ */
table th,
table td {
	padding: .5rem;
	border: 1px solid #ddd;
	font-size: 14px;
}

table th {
	background: #eee;
	font-weight: normal;
}



/*	フッター
------------------------------------------------------------ */
#footer {
	position: relative;
	background: #26b9eb;
	font-size: 12px;
	color: #fff;
	text-align: center;
}

#footer .to-top a {
	position: fixed;
	/*
	bottom: 9rem;
	*/
	right: 0;
	display: block;
	background: #26b9eb;
	padding: 1.8rem 2rem;
	color: #fff;
	
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
}

#footer .to-top a:after {
	content: "";
	position: absolute;
	top: 42%;
	right: 20px;
	display: block;
	/*
	margin-top: -7px;
	*/
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	width: 15px;
	height: 15px;
	transform: rotate(315deg);
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
}

#footer .to-top a:hover {
	background: #55c8ef;
}


/* --- SP ---------- */
@media screen and (max-width: 740px) {
	
	#footer {
		padding: 1.5rem 0;
	}
	
	#footer .to-top a {
		bottom: 6rem;
	}

}


/* --- PC ---------- */
@media screen and (min-width: 741px) {
	
	#footer {
		padding: 2.5rem 0;
	}
	
	#footer .to-top a {
		bottom: 9rem;
	}
	
}

