@charset "UTF-8";

/*------------------------------------------
	Default Reset & Base Style Sheet
	『実践Web Standards Design』より抜粋・修正
	Last Update 2009-08-24

	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
	2-4.contents
	2-5.sidebar
	2-6.footer

	3-1.Google Map

------------------------------------------*/


/*------------------------------------------
	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;
}

.aligncenter,
.align_center {
	text-align: center;
}

.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 {
	float: left;
	width: 48%;
}

.halfright {
	float: right;
	width: 48%;
}

.clear {
	clear: both;
}

.width200 {
	width: 200px;
}

.width234 {
	width: 234px;
}

.sub {
	font-size: 80%;
}

a:link,
a:visited,
{
	color: #005585;
	text-decoration: underline;
}

a:hover {
	color: #005585;
	text-decoration: none;
}

/*------------------------------------------
	2-2.Base Structure
------------------------------------------*/

body {
	background-color: #ffffff;
	padding: 0;
	text-align: center;
}

#wrapper {
	width: 780px;
	margin: 0 auto;
	padding: 0 10px;
	background: f5eaa8;
	color: #000000;
	text-align: left;
	background: transparent url('http://acejapan.org/choco/images/main4.png') repeat-y left top;
}

#wrapper #header_upper {
	width: 780px;
	height: 30px;
	margin: 0 auto 0 auto;
	padding-top: 7px;
	text-align: right;
}

#wrapper #header {
	position: relative;
	width: 780px;
	height: 180px;
}

#wrapper #main,
#wrapper #main_top {
	position: relative;
	width: 780px;
	padding: 0;
}

#wrapper #main #main_up,
#wrapper #main_top #main_up {
/*	background: url('http://acejapan.org/choco/images/main_up.png') repeat-x left top;*/
}

#wrapper #main #main_down,
#wrapper #main_top #main_down {
/*	background: url('http://acejapan.org/choco/images/main_down.png') repeat-x left bottom;*/
}

#wrapper #main #main_down:after,
#wrapper #main_top #main_down:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

#wrapper #main #globalmenu {
	width: 780px;
	height: 60px;
	overflow: hidden;
	background: #f5eaa8;
}

#wrapper #main #breadcrumb {
/*	position: absolute;
	top: 0;
	left: 0;*/
	width: 745px;
	height: 30px;
	padding: 10px 0 0 20px;
	font-size: 85%;
}

#wrapper #main_top #globalmenu_top {
	width: 780px;
	height: 210px;
}

#wrapper #main #globalmenu:after,
#wrapper #main_top #globalmenu_top:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

#wrapper #main #contents {
/*	position: relative;*/
	float: right;
	width: 468px;
	padding: 0 30px 0 0;
}

#wrapper #main_top #contents {
	position: relative;
	float: left;
	width: 468px;
	padding: 0 0 0 30px;
}

#wrapper #main #side {
	float: left;
	width: 234px;
	padding: 0 0 0 30px;
	font-size: 90%;
}

#wrapper #main_top #side {
	float: right;
	width: 234px;
	padding: 0 30px 0 0;
	font-size: 90%;
}

#wrapper #main #footnote,
#wrapper #main_top #footnote {
	clear: both;
	width: 780px;
	padding: 15px 0 10px 0;
	text-align: center;
}

#wrapper #footer {
	width: 780px;
	height: 40px;
	background-color: #7b3135;
	color: #ffffff;
}

/*------------------------------------------
	2-3.Header
------------------------------------------*/

#header_upper img {
	margin-right: 10px;
	vertical-align: middle;
}

#header h1#header_title {
	margin: 0;
}

#header div#header_banner {
	position: absolute;
	right: 50px;
	bottom: 50px;
}

/*------------------------------------------
	2-4.Contents
------------------------------------------*/

#globalmenu ul {
	width: 780px;
	height: 50px;
	margin: 0;
	padding: 00;
}

#globalmenu ul li {
	display: inline;
	float: left;
	width: 156px;
	height: 80px;
	margin: 0;
	padding: 0;
	list-style: none none;
}

#globalmenu ul li#globalmenu1 {
	width: 189px;
}

#globalmenu ul li#globalmenu2,
#globalmenu ul li#globalmenu4 {
	width: 147px;
}

#globalmenu ul li#globalmenu3 {
	width: 148px;
}

#globalmenu ul li#globalmenu5 {
	width: 149px;
}

#globalmenu_top ul {
	margin: 0;
	padding: 30px 0 0 21px;
}

#globalmenu_top ul li {
	display: inline;
	float: left;
	width: 234px;
	height: 110px;
	margin: 0 0 0 9px;
	padding: 0;
	list-style: none none;
}

#contents a:link,
#contents a:visited,
#contents a:hover {
	color: #005585;
	font-weight: bold;
}

#main_top #contents a:link,
#main_top #contents a:visited,
#main_top #contents a:hover {
	color: #005585;
	font-weight: normal;
}

#contents a:link img,
#contents a:visited img,
#contents a:hover img {
	text-decoration: none;
}

#contents h2 {
/*	height: 30px;*/
	margin: 0 0 1em 0;
	padding: 2px 20px 0 40px;
	background: #7b3135 url('http://acejapan.org/choco/images/back_h1_wide.gif');
	color: #ffffff;
	font-size: 1.3em;
}

#contents h2.pagetitle {
	height: auto;
	padding: 0;
	background: transparent none;
	color: #000000;
	font-size: 1.4em;
}

#contents h2.img {
	height: auto;
	margin: 0;
	padding: 0;
	background: transparent none;
}

#contents h2 a:link,
#contents h2 a:visited {
	background: transparent;
	color: #ffffff;
	text-decoration: underline;
}

#contents h2 a:hover {
	background: transparent;
	text-decoration: none;
}

#contents .authordate {
	margin: -0.5em 5px 1em 5px;
	text-align: right;
}

#contents .eachitem {
	margin-bottom: 1.5em;
}

#contents h3 {
	margin: 1em 0 1em 0;
	padding: 0;
	border-bottom: 3px double #7b3135;
	font-size: 1.2em;
}

#contents h4 {
	margin: 1em 0 0.5em 0;
	padding: 0;
	border-bottom: dotted 1px #7b3135;
	font-size: 1.1em;
}

#contents p {
	margin: 1em 5px 0.5em 5px;
}

#contents ul {
	margin: 0 0 0 30px;
	padding: 0;
}

#contents ul#topnews {
	margin-left: 15px;
}

#contents ul li {
	margin: 0;
	padding: 0;
	list-style: outside;
}

#contents ul#topnews li {
	padding-left: 72px;
	text-indent: -72px;
	list-style: none none;
}

#contents ul.list_press li strong {
	font-weight: bold;
}

#contents ul.list_press li p {
	margin: 0 0 0.5em 0;
}

#contents blockquote {
	margin: 1em 20px 0.5em 20px;
	padding: 2px 5px;
	border: 3px double #7b3135;
	background: transparent url('http://acejapan.org/choco/images/td.png') repeat left top;
}

#contents table {
	margin: 0 0.5em 0 0.5em;
	background: transparent;
	border: 3px double #7b3135;
	border-collapse: collapse;
}

#contents table th {
	padding: 2px 5px 2px 5px;
	border: 1px solid #f5eaa8;
	background: transparent url('http://acejapan.org/choco/images/th.png') repeat left top;
	color: #ffffff;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
}

#contents table th label,
#contents table th strong {
	font-weight: bold;
	color: #ffffff;
}

#contents table td {
	padding: 2px 5px 2px 5px;
	border: 1px solid #f5eaa8;
	background: transparent url('http://acejapan.org/choco/images/td.png') repeat left top;
	vertical-align: top;
}

#contents form {
	margin: 0;
}

#contents .banner form {
	margin: 0.5em 0 0.5em 5px;
}

#contents .banner img {
	margin: 0;
	border: 0;
}

#contents form label {
	color: #inherit;
	font-weight: inherit;
}

#contents form input,
#contents form textarea {
	padding: 0.1em;
	line-height: 1.2;
}

#contents b,
#contents strong {
	font-weight: bold;
}

#contents .pageswitch {
	margin: 0.5em 0;
	font-size: 0.85em;
	text-align: center;
}

#contents .toptwitter {
	margin-top: 15px;
}

/*------------------------------------------
	2-5.Sidebar
------------------------------------------*/

#side a:link,
#side a:visited,
#side a:hover {
	color: #005585;
	font-weight: bold;
}

#side .content {
	margin-bottom: 12px;
}
#side h2 {
	margin: 0 0 1em 0;
	padding: 0 15px 0 15px;
	background-color: #e2cd98;
	color: #7b3135;
	font-size: 1.2em;
}

#side h2 a {
	background: transparent;
	text-decoration: underline;
}

#side h2 a:hover {
	background: transparent;
	text-decoration: none;
}

#side ul {
	margin: 0;
	padding: 0;
}

#side ul li {
	margin: 0 0 0 25px;
	padding: 5px 10px 5px 0px;
	list-style: outside disc;
}

#side ul li ul {
}

#side ul li ul li {
	list-style: outside circle;
}

/*------------------------------------------
	2-6.Footer
------------------------------------------*/

#footer .copyright {
	height: 25px;
	padding: 11px 10px 0 10px;
/*	background: #f5eaa8 url('http://acejapan.org/choco/images/copyright.jpg') no-repeat left top;*/
	color: #ffffff;
	text-align: center;
	font-size: 80%;
}

/*------------------------------------------
	3-1.GoogleMap
------------------------------------------*/

.g-maparea {
	margin-botttom:1em;
	margin-left:36px;
	color:#333;
}

.g-maparea #map2 {
	width: 400px;
	height: 320px;
}

.g-maparea #map2 h4 {
	color:#333;
}

.g-maparea #maplinks2 {
}

/*@charset "utf-8";*/
