
/**
 * 03-01　アコーディオン
 */
/* アコーディオンのデフォルト（閉） */
.accordion > li {
	cursor: pointer;
	margin: 0 0 5px 0;
	padding: 10px 10px 30px 10px;
	border-radius: 5px;
	background-color: #363535;
	background-image: url(../images/arrow-down.png);
	background-position: bottom center;
	background-repeat: no-repeat;
}
.accordion > li:hover {
	background-color: #a5a5a5;
}
.accordion > li > h2 {
	font-weight: normal;
}
.accordion > li .content {
	display: none;
}
/* アコーディオンが開いたときのスタイル */
.accordion > li.expanded {
	background-color: #ddd;
	background-image: url(../images/arrow-up.png);
}
.accordion > li.expanded > h2 {
	font-weight: bold;
}
.accordion > li.expanded .content {
	margin: 10px 0 0 0;
	padding: 10px 0 0 0;
	border-top: solid 1px #fff;
}

/**
/**
 * 04-01　モーダルウィンドウ
 */
.modalwin {
	position: fixed;
	width: 600px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0px 2px 4px 0 #000;
}
.show {
	display: block;
}
.hide {
	display: none;
}
.modalwin h1 {
	background: #ededed;
	padding: 20px;
	border-radius: 5px 5px 0 0;
	font-size: 1.2em;
}
.modalwin-contents {
	padding: 20px;
}
.modalwin-contents img {
	margin: 0 10px 10px 0;
	float: left;
}
.modalwin-contents p {
	margin: 0 0 1em 0;
	line-height: 1.8em;
}
/* 閉じるボタン */
a.modal-close {
	display: block;
	background-image: url(../images/close.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	right: 0;
}
a.modal-close:hover {
	background-position: -40px 0;
}
a.modal-close:active {
	background-position: -80px 0;
}
/* シェード */
#shade {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #999;
	opacity: 0.9;
}


/**
 * 03-02　ドロップダウンメニュー
 */
.wrapper-menubar {
	height: 45px;
	position: relative;
}
.menubar {
	position: absolute;
	right: 4.1666666%; /* 4.1666666%（40px/960px） */
	bottom: 0;
}
.dropdown-menu {
	width: 197px;
}


/* ボタンのスタイル */
.dropdown-menu > a {
	display: block;
	padding: 5px 0 5px 43px; /* 大会申込み高さ幅 */
	background-color: #393939;
	background-image: url(images/arrow-dropdown4.png);
	background-position: 10px 50%;
	background-repeat: no-repeat;
	color: #fff;
	font-size: 0.9em;
	border-radius: 5px;
}

.dropdown-menu > a:hover {
	background-image: url(images/arrow-dropdown2.png);
	color: #ddd;
}
.dropdown-menu > a:active {
	background-image: url(images/arrow-dropdown3.png);
	color: #a2a2a2;
}

/**
 * RESPONSIVE: スマートフォン向けウィンドウ幅600px以下
 */
@media screen and (max-width:600px) {
	.modalwin {
		width: 90%;
	}	
}

/**
 * 04-02　ウィンドウ上端でグローバルナビゲーションを固定する
 * 04-03　指定した位置でサイドメニューを固定する
 */
.fixed {
	position: fixed;
}
.wrapper-nav-global.fixed {
	width: 100%;
}

/**
 * 04-05　スクロールしてページトップに戻る
 */
/* ページトップに戻るボタンのスタイル */
.pageup {
	margin: 0 0 0 45% ;
	max-width: 500px; 
	height: 30px;
	position: relative;
	background: #004567;
	border: solid 3px #006488;
}
.pageup a {
	display: block;
	width: 60px;
	height: 30px;
	border-radius: 30px 30px 0 0;
	background-color: #000;
	background-image: url(../images/arrow-1.png);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	position: absolute;
	right: 4.1666666%;/* 4.1666666%（40px/960px） */
	bottom: 0;
}
.pageup a:hover {
	background-image: url(../images/arrow-2.png);
}
.pageup a:active {
	background-image: url(../images/arrow-3.png);
}

/**
 * 04-06　スクロール位置に合わせてリンクをハイライトする
 */
/* サイドバーがハイライトしたときのスタイル */
.sidebar ul li a.selected {
	background: url(../images/sidebar-bg4.png) no-repeat 95% 50% #e71f20;　　/* 第54回がハイライトした時の色 */
	color: #fff;
}