@charset "utf-8";
/* ---------------------------
	RESET
--------------------------- */
* {
	margin: 0px;
	padding: 0px;
	font-weight: 500;
	box-sizing: border-box;
	line-height: 2em;
	letter-spacing: 0px;
	outline: none;
}
body {
	font-family: sans-serif;
	font-size: 16px;
	color: #222;
	letter-spacing: 1px;
	-webkit-text-size-adjust: 100%;
}
main {
	display: block;
}
a {
	color: #222;
	text-decoration: none;
	transition-property: opacity;
	transition-duration: 0.2s;
}
a:hover {
	opacity: 0.7;
}
a img {
	border-width: 0px;
}
b {
	font-weight: bold;
}
img {
	width: 100%;
	vertical-align: bottom;
}
hr {
	margin-bottom: 40px;
}
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0px;
	margin-bottom: 40px;
}
table th, table td {
	width: 65%;
	text-align: left;
	vertical-align: top;
	vertical-align: top;
	padding-bottom: 20px;
}
table th {
	width: 35%;
	font-weight: bold;
}
ul,li {
	list-style-type: none;
	list-style-position: outside;
}
input, textarea, select {
	border-width: 0;
	background-color: #e8e8e8;
}
input[type="text"], textarea {
	width: 100%;
	padding: 10px;
}
textarea {
	height: 120px;
}
select {
	padding: 5px 20px;
	cursor: pointer;
}
input[type="checkbox"], input[type="radio"] {
	background-color: transparent;
	margin-right: 10px;
	transform: scale(1.2);
}
label {
	cursor: pointer;
	margin-right: 20px;
	
}
.errTxt {
	color: #b44;
	font-size: 80%;
	font-weight: bold;
}
.clearfix:after {
	content: ".";
	display: block;
	height: 0px;
	font-size: 0px;
	clear: both;
	visibility: hidden;
}
.dnone {
	display: none;
}
body > .adsense {
	width: 60%;
	margin: 20px auto;
}

/* ---------------------------
/	common
--------------------------- */
.btns {
	width: 100%;
	text-align: center;
}
button {
	display: inline-block;
}

/* ---------------------------
/	mokuji
--------------------------- */
.mokuji {
	padding-left: 40px;
}

.mokuji a {
	color: #46b;
	text-decoration: underline;
	font-weight: bold;
}

/* ---------------------------
/	header
--------------------------- */
header {
	background-image: url( ../img/bg_header.gif );
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	border-bottom: 1px solid #eee;
	box-shadow: 0 1px 8px rgba( 0, 0, 0, 0.5 );
	z-index: 10000;
}

header h1 {
	padding-left: 2%;;
	font-size: 140%;
	font-weight: bold;
	text-shadow: 0 1px 0 #fff;
	height: 50px;
	line-height: 50px;
}
header .lang {
	position: absolute;
	top: 0;
	right: 20px;
	font-size: 90%;
}
header .lang a {
	font-weight: bold;
	color: #44b;
	text-decoration: underline;
}

header #navWrap {
	width: 98%;
	margin: 0 auto;
	border-top: 1px solid #bbb;
	height: 35px;
	overflow: hidden;
}
header #navWrap ul {
	text-align: center;
	width: 3000px;
	margin: 0 auto;
}
header #navWrap ul li {
	float: left;
}
header #navWrap ul li p {
	display: inline;
	padding: 0;
	margin: 0;
}

header #navWrap ul li p a {
	font-size: 13px;
	padding: 0 15px;
	letter-spacing: 2px;
	line-height: 25px;
	margin: 0;
}

header #navWrap ul li a.active {
	font-weight: bold;
	color: #28d;
	border-bottom: 2px solid #2be;
}

/* ---------------------------
/	main
--------------------------- */
main {
	background: url( ../img/00_background.jpg );
	padding-bottom: 30px;
	padding-top: 110px;
}

main section {
	width: 90%;
	max-width: 960px;
	margin: 0 auto;
	background-color: #fff;
	padding: 40px;
	border-radius: 10px;
	margin-bottom: 40px;
}

main section .chapter {
	font-size: 120%;
	font-weight: bold;
	border-left: 4px solid #222;
	padding-left: 10px;
	line-height: 1.2em;
	margin-bottom: 20px;
}

main section p {
	margin-bottom: 20px;
}
main section .image {
	text-align: center;
	line-height: 1.2em;
	color: #666;
	font-weight: bold;
	font-size: 90%;
	margin: 40px 0;
}
main section .image img {
	width: auto;
	height: auto;
}

/* ---------------------------
/	pagetop
--------------------------- */
#pagetop {
	width: 60px;
	height: 60px;
	background-color: #bbb;
	border-radius: 10px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	opacity: 0.6;
	transition-property: opacity;
	transition-duration: 0.3s;
	z-index: 9999;
}
#pagetop:hover {
	opacity: 1;
}
#pagetop a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
#pagetop a:before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	border-top: 3px solid #f2f2f2;
	border-right: 3px solid #f2f2f2;
	transform: rotate( -45deg );
	position: absolute;
	top: 25px;
	left: 20px;
}

/* ---------------------------
/	footer
--------------------------- */
footer {
	padding-bottom: 10px;
	background-color: #666;
	color: #fff;
}

footer .paging {
	text-align: center;
	color: #ccc;
	padding: 20px 0;
	cursor: default;
}

footer .paging a {
	color: #fff;
	font-weight: bold;
}

footer #copy {
	width: 100%;
	text-align: center;
	font-size: 80%;
	color: #ddd;
	border-top: 1px solid #444;
	position: relative;
	padding-top: 20px;
}
footer #copy:before {
	content: '';
	display: block;
	border-bottom: 1px solid #999;
	position: relative;
	top: -20px;
}


/* /-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/
	-----------------------------------------

	SCREEN -480

	-----------------------------------------
/* -----------------------------------------
/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/ */
@media screen and ( max-width: 480px ) {
/* ---------------------------
/	common
--------------------------- */
body {
	font-size: 14px;
}

/* ---------------------------
/	mokuji
--------------------------- */
.mokuji {
	padding-left: 10px;
}


/* ---------------------------
/	header
--------------------------- */
header h1 {
	padding-left: 1%;;
	font-size: 120%;
}
header .lang {
	right: 10px;
}

/* ---------------------------
/	main
--------------------------- */
main {
	padding-bottom: 40px;
}

main section {
	width: 100%;
	padding: 10px;
}

main section .image {
	line-height: 1.5em;
	margin: 30px 0;
}
main section .image img {
	width: 100%;
}

/* ---------------------------
/	footer
--------------------------- */

/* --------------------------- */
}
