@charset "UTF-8";

/*------------------------------------------
	Default Reset & Base Style Sheet
	『実践Web Standards Design』より抜粋・修正

	1-1.Yahoo UI Library Fonts CSS
	1-2.Universal selector
	1-3.Structure Module
	1-4.Text Module
	1-5.Hypertext Module
	1-6.List Module
	1-7.Edit Module
	1-8.Forms Module
	1-9.Table Module
	1-10.Image Module
	1-11.Object Module

	2-1.global classes
	2-2.basic structure
	2-3.header, main menu, breadcrumb navigation
	2-4.contents
	2-5.footer

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


/*------------------------------------------
	1-1.Yahoo! UI Library: Font CSS

	Copyright (C) 2006 Yahoo! Inc. All rights reserved.
	http://developer.yahoo.com/yui/license.txt
------------------------------------------*/

body {
	font-size: 13px;
	*font-size: small;
	*font: x-small;
}

table {
	font-size: inherit;
	font: 100%;
}

select,
input,
textarea {
	font-size: 99%;
}

/*------------------------------------------
	1-2.Universal selector
------------------------------------------*/

* {
	margin: 0;
	padding: 0;
	line-height: 1.6;
/*	color: #333;*/
	font-size: 100%;
/*	font-weight: normal;*/
	font-style: normal;
}

/*------------------------------------------
	1-3.Structure Module
------------------------------------------*/

body {
	background-color: #fff;
	font-family: Arial, Helvetica, sans-serif;
}

/*------------------------------------------
	1-4.Text Module
------------------------------------------*/

p,
pre,
address,
cite {
	margin: 0.5em 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0.5em 20px;
	font-weight: bold;
}

h1 {
	font-size: 189%;
}

h2 {
	font-size: 159%;
}

h3 {
	font-size: 144%;
}

h4 {
	font-size: 122%;
}

h5 {
	font-size: 107%;
}

h6 {
	font-size: 107%;
}

pre {
	padding: 0.5em 10px;
	border: 3px solid #eee;
	width: auto;
	_width: 95%;
	overflow: scroll;
	color: #3d4263;
	font-family: "Osaka-等幅", monospace;
}

pre[title]:before {
	margin-bottom: 0.4em;
	padding: 0 10px;
	display: block;
	content: attr(title);
	color: black;
	background-color: #eee;
}

blockquote {
	margin: 1.5em 20px 1.5em 40px;
	padding: 1px;
	background-color: #eee;
}

blockquote * {
	color: #888;
}

blockquote[title]:before {
	margin: 2px;
	padding: 0.1em 16px;
	display: block;
	content: attr(title);
	background-color: #fff;
}

blockquote[cite]:after {
	padding: 0.1em 20px;
	display: block;
	content: attr(cite);
	color: #333;
	text-align: right;
}

cite {
	display: block;
	color: #333;
	text-align: right;
}

em,
strong {
	font-style: normal;
	font-weight: bold;
}

code {
	font-family: "Osaka-等幅", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #aaa;
	cursor: help;
}

kbd {
	border: 1px solid #ccc;
	padding: 0 0.3em;
	background-color: #f5f5f5;
	font-family: "Osaka-等幅", monospace;
	text-transform: uppercase;
}

/*------------------------------------------
	1-5.Hypertext Module
------------------------------------------*/

a:link {
	color: #005585;
}

a:visited {
	color: #485270;
}

a:hover {
	color: #b83800;
}

/*------------------------------------------
	1-6.List Module
------------------------------------------*/

ul,
ol,
dl {
	margin: 1em 20px;
	padding: 1px 10px;
	list-style-position: inside;
}

ul,
ol {
	padding-left: 25px;
}

li,
dt,
dd {
	font-size: 100%;
}

dt {
	
}

dd {
	color: #666;
}

li li,
li p,
li pre,
li dt,
li dd,
dd li,
dd p,
dd pre,
dd dt,
dd dd {
	font-size: 100%;
}

li ul,
li ol,
li dl,
li p,
dd ul,
dd ol,
dd dl,
dd p {
	margin: 0 10px;
}

/*------------------------------------------
	1-7.Edit Module
------------------------------------------*/

del {
	color: #666;
	text-decoration: line-through;
}

del[datetime]:before {
	content: "\00ff08"attr(datetime)"\00524a\009664\00ff09";
}

ins {
	border-bottom: 1px dotted #ccc;
	text-decoration: none;
}

ins[datetime]:before {
	content: "\00ff08"attr(datetime)"\004fee\006b6e\00ff09";
}

/*------------------------------------------
	1-8.Forms Module
------------------------------------------*/

form {
	margin: 0.5em 20px;
	padding: 1px 0;
}

form dl,
form p {
	margin: 0.5em 10px;
}

fieldset {
	border: 1px solid #ddd;
}

legend {
	margin: 0 1em;
	padding: 0 10px;
}

input,
textarea {
	padding: 0.1em 10px;
	border: 1px solid #ddd;
	font-family: Arial, Helvetica "ヒラギノ角ゴ Pro W3", sans-serif;
	background-color: #f5f5f5;
}

input {
	line-height: 1.2;
}

input:hover,
textarea:hover {
	border: 1px solid #aaa;
}

input:focus,
textarea:focus {
	border: 1px solid #000;
}

textarea {
	padding: 0.4em 8px;
}

/*------------------------------------------
	1-9.Tables Module
------------------------------------------*/

table {
	margin: 0 20px 0.5em 20px;
	border: 1px solid #aaa;
	background-color: #eee;
}

th,
td {
	padding: 0 10px;
}

th {
	color: #fff;
	background-color: #999;
}

td {
	border: 1px solid #ddd;
	background-color: #fff;
}

/*------------------------------------------
	1-10.Image Module
------------------------------------------*/

/*
a img {
	border: 3px solid #ccc;
}
a:hover img {
	border: 3px solid #bccd56;
}
*/
a img {
	border: 0;
}

/*------------------------------------------
	1-11.Object Module
------------------------------------------*/

object,
embed {
	margin: 1em 20px;
}

/*------------------------------------------
	2-1.Standard classes
------------------------------------------*/

.alignleft,
.align_left {
	text-align: left;
}

img.alignleft,
img.align_left {
	margin: 0 10px 10px 0;
}

.center,
.aligncenter,
.align_center {
	text-align: center;
}

img.alignright,
img.align_right {
	margin: 0 0 10px 10px;
}

.alignright,
.align_right {
	text-align: right;
}

.floatleft,
.float_left {
	float: left;
	margin: 0 15px 10px 0;
}

.floatright,
.float_right {
	float: right;
	margin: 0 0 10px 15px;
}

.halfleft,
.half_left {
	float: left;
	width: 48%;
}

.half_right,
.halfright {
	float: right;
	width: 48%;
}

.clear {
	clear: both;
}

.width160 {
	width: 160px;
}

.width200 {
	width: 200px;
}

.width234 {
	width: 234px;
}

.purple {
	color: #7e04b1;
}

.orange {
	color: #fc9401;
}

.green {
	color: #8cc902;
}

.blue {
	color: #3da9d8;
}

.red {
	color: #ee0000;
}

.big {
	font-size: 150%;
}

.sub,
.small {
	font-size: 85%;
}

.subsub {
	font-size: 75%;
}

.strong {
	font-weight: bold;
}

.solid {
	margin: 15px 0 15px 0;
	padding: 5px 10px 5px 10px;
	border: 1px solid #7e04b1;
}

.double {
	margin: 15px 0 15px 0;
	padding: 5px 10px 5px 10px;
	border: 3px double #7e04b1;
}

a:link,
a:visited,
{
	color: #005585;
	text-decoration: underline;
}

a:hover {
	color: #005585;
	text-decoration: none;
}

/*------------------------------------------
	2-2.Base Structure
------------------------------------------*/

body {
	padding: 0;
	text-align: center;
	background-color: #f5f5f5;
	color: #000000;
}

#wrapper {
	width: 720px;
	margin: 0 auto 0 auto;
	padding: 10px 15px 5px 15px;
	background-color: #ffffff;
	color: #000000;
	text-align: left;
}

#wrapper #header {
	position: relative;
	width: 720px;
	margin: 0 0 15px 0;
}

#wrapper #header_top {
	position: relative;
	width: 720px;
}

#wrapper #mainmenu1 {
	width: 720px;
	height: 40px;
	overflow: hidden;
	margin: 15px 0 0 0;
}

#wrapper #mainmenu2 {
	width: 720px;
	height: 34px;
	overflow: hidden;
	margin: 0 0 15px 0;
}

#wrapper #breadcrumb {
	width: 720px;
	height: 15px;
	margin: -5px 0 -5px 0;
	padding: 0 0 0 0;
	font-size: 85%;
	line-height: 15px;
}

#wrapper #contents {
	width: 720px;
	margin: 15px 0 5px 0;
}

#wrapper #footer {
	width: 720px;
	height: 40px;
	margin: 5px 0 0 0;
}


/*------------------------------------------
	2-3.Header
------------------------------------------*/

#header h1,
#header_top h1 {
	margin: 0;
}

#mainmenu1 ul,
#mainmenu2 ul {
	margin: 0;
	padding: 0;
}

#mainmenu1 ul li,
#mainmenu2 ul li {
	display: inline;
	float: left;
	margin: 0;
	padding: 0;
	list-style: none none;
}

#mainmenu1 ul li {
	width: 144px;
	height: 40px;
}

#mainmenu2 ul li {
	width: 120px;
	height: 34px;
}

#mainmenu1 ul li#mainmenu1-1 {
	background: url(img/mainmenu1-1on.jpg) left top no-repeat;
}

#mainmenu1 ul li#mainmenu1-2 {
	background: url(img/mainmenu1-2on.jpg) left top no-repeat;
}

#mainmenu1 ul li#mainmenu1-3 {
	background: url(img/mainmenu1-3on.jpg) left top no-repeat;
}

#mainmenu1 ul li#mainmenu1-4 {
	background: url(img/mainmenu1-4on.jpg) left top no-repeat;
}

#mainmenu1 ul li#mainmenu1-5 {
	background: url(img/mainmenu1-5on.jpg) left top no-repeat;
}

#mainmenu2 ul li#mainmenu2-1 {
	background: url(img/mainmenu2-1on.jpg) left top no-repeat;
}

#mainmenu2 ul li#mainmenu2-2 {
	background: url(img/mainmenu2-2on.jpg) left top no-repeat;
}

#mainmenu2 ul li#mainmenu2-3 {
	background: url(img/mainmenu2-3on.jpg) left top no-repeat;
}

#mainmenu2 ul li#mainmenu2-4 {
	background: url(img/mainmenu2-4on.jpg) left top no-repeat;
}

#mainmenu2 ul li#mainmenu2-5 {
	background: url(img/mainmenu2-5on.jpg) left top no-repeat;
}

#mainmenu2 ul li#mainmenu2-5-1 {
	background: url(img/mainmenu2-5-1on.jpg) left top no-repeat;
}

#mainmenu2 ul li#mainmenu2-6 {
	background: url(img/mainmenu2-6on.jpg) left top no-repeat;
}

#mainmenu1 ul li a,
#mainmenu2 ul li a {
	display: block;
}

#mainmenu1 ul li a img,
#mainmenu2 ul li a img {
}

#mainmenu1 ul li a:hover img,
#mainmenu2 ul li a:hover img {
	visibility: hidden;
}


/*------------------------------------------
	2-4.Contents
------------------------------------------*/

#contents a:link,
#contents a:visited,
#contents a:hover {
	color: #0000ff;
}

#contents a:link img,
#contents a:visited img,
#contents a:hover img {
	text-decoration: none;
}

#contents h2 {
	margin: 20px 0 10px 0;
	padding: 2px 5px 2px 5px;
	border: 3px double #7e04b1;
	color: #7e04b1;
	font-size: 1.4em;
	text-align: center;
}

#contents h3 {
	margin: 20px 0 10px 0;
	padding: 0 2px 0 8px;
	border-bottom: 1px dotted #7e04b1;
	border-left: 8px solid #7e04b1;
	color: #7e04b1;
	font-size: 1.2em;
}

#contents h4 {
	font-size: 1.1em;
	margin: 15px 5px 5px 5px;
	font-size: 1.1em;
}

#contents p {
	margin: 1em 5px 0.5em 5px;
}

#contents ul,
#contents ol {
	margin: 0 0 0 30px;
	padding: 0;
}

#contents ul li {
	margin: 0;
	padding: 0 0 0 25px;
	background: url(img/list_button1.jpg) left 3px no-repeat;
	list-style: none none;
}

#contents ol li {
	margin: 0 0 0 15px;
	padding: 0 0 0 10px;
	list-style: decimal outside;
}

#contents blockquote {
	margin: 1em 20px 0.5em 20px;
	padding: 2px 5px;
}

#contents table {
	margin: 0 5px 0 5px;
	background: transparent;
	border: 1px solid #7e04b1;
	border-collapse: collapse;
}

#contents table th {
	padding: 2px 5px 2px 5px;
	border: 1px solid #7e04b1;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
}

#contents table td {
	padding: 2px 5px 2px 5px;
	border: 1px solid #7e04b1;
	vertical-align: top;
}

#contents b,
#contents strong {
	font-weight: bold;
}

/* よくあるご質問 */
#contents dl.qanda {
	margin: 20px 10px 20px 10px;
	padding: 0;
}

#contents dl.qanda dt {
	margin: 0 0 10px 0;
	padding: 4px 0 0 35px;
	background: url(img/faq_q.gif) 0 0 no-repeat;
	color: #000000;
	font-weight: bold;
}

#contents dl.qanda dd {
	margin: 10px 0 0 0;
	padding: 4px 0 0 35px;
	background: url(img/faq_a.gif) 0 0 no-repeat;
	color: #000000;
}

#contents dl.qanda dd ul {
	margin: 0;
}

#contents dl.qanda dd ul li {
}

/* 主催・実施・後援・協賛団体 */

#contents dl.partner {
	clear: left;
	margin: 20px 10px 20px 10px;
	padding: 0;
}

#contents dl.partner dt {
	float: left;
	width: 65px;
	margin: 0 0 10px 0;
	color: #000000;
	font-weight: bold;
}

#contents dl.partner dd {
	margin: 0 0 10px 70px;
	color: #000000;
}

/* ダウンロード */

#contents .download {
}

#contents .download a:link,
#contents .donwload a:visited {
	text-decoration: none;
}

#contents .donwload a:hover {
	text-decoration: underline;
}

#contents .download img {
	border: 1px solid #7e04b1;
}


/*------------------------------------------
	2-4-1. contents (top page)
------------------------------------------*/

#contents #top_guiness {
	float: right;
	width: 180px;
	margin-top: 10px;
}

#contents #top_guiness img {
	margin-left: 25px;
	border: 1px solid #7e04b1;
}

#contents #top_double {
	width: 500px;
	padding: 5px 10px 5px 10px;
	border: 3px double #7e04b1;
	line-height: 1.1;
}

#contents #top_double h2 {
	margin: 0 0 5px 0;
	padding: 0 0 0 0;
	border: 0;
	color: #7e04b1;
	font-size: 1.5em;
	line-height: 1;
}

#contents #top_double h2 .sub {
	color: #7e04b1;
	font-size: 0.85em;
}

#contents #top_double table {
	margin: 0 auto 0 auto;
	border: 0;
}

#contents #top_double table th,
#contents #top_double table td {
	padding: 1px 4px 1px 4px;
	border: 0;
	background-color: transparent;
	color: inherit;
}


/*------------------------------------------
	2-5.Footer
------------------------------------------*/

#footer .copyright {
	height: 25px;
	padding: 10px 10px 0 10px;
	text-align: right;
	font-size: 80%;
}
