@charset "utf-8";


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 15px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover {
	color: #0057ff;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	max-width: 1000px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding: 0 2%;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	border-top: 4px solid #0057ff;	/*上の線の幅、線種、色*/
}
header .inner {
	height: 100px;	/*高さ*/
}
/*ロゴ画像*/
header #logo {
	width: 550px;	/*ロゴ画像の幅*/
	float: left;	/*左に回り込み*/
	margin-top: 30px;	/*ロゴの上にあける余白。上下のバランスをここで調整して下さい。*/
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#contact {
	float: right;		/*右に回り込み*/
	margin-top: 12px;	/*ブロックの上にあける余白。上下のバランスをここで調整して下さい。*/
	width: 350px;		/*ブロック幅*/
	border-radius: 6px;	/*角丸のサイズ*/
	padding: 5px;		/*ボックス内の余白*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	text-align: center;	/*文字をセンタリング*/
}
/*TEL*/
.tel {
	letter-spacing: 0.2em;	/*文字間隔を広くする設定。通常がいいならこの行削除。*/
	font-size: 20px;		/*文字サイズを大きく*/
}
/*TELの受付時間の小文字部分*/
.tel span {
	font-size: 11px;	/*文字サイズを小さく*/
	display: block;
	letter-spacing: 0.1em;	/*文字間隔*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	overflow: hidden;
	position: relative;z-index: 1;
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	border-top: 1px solid #dcdcdc;		/*メニュー上の線の幅、線種、色*/
	border-bottom: 1px solid #dcdcdc;	/*メニュー下の線の幅、線種、色*/
	box-shadow: 0px 10px 40px rgba(0,0,0,0.1);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.2は透明度20%の事。*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 14%;	/*メニュー幅（100÷6個=16.6%）　もし４個にするなら100÷4=25%になる。*/
	font-size: 90%;
}
#menubar li a {
	display:  block;
	text-decoration: none;
	text-align: center;
	line-height: 50px;	/*メニューの高さ*/
	padding-top: 4px;	/*下のブロックの「border-bottom」と「bottom」の数字と合わせる。*/
}
/*下線のアニメーション設定*/
#menubar li::after {
	transition: 0.3s;	/*0.3秒かけてアニメーションを実行する。*/
	content: "";
	display: block;
	border-bottom: 4px solid #0057ff;	/*下線の幅、線種、色。上のブロックの「padding-top」と、下の行の「bottom」の数字と合わせる。*/
	position: relative;left: 0px;bottom: -4px;	/*bottomの数字は上のブロックの「padding-top」と、上の行の「border-bottom」の数字と合わせる。※マイナス記号は残したまま。*/
}
/*マウスオン（hover）。現在表示中（current）。*/
#menubar li:hover::after, #menubar li.current-menu-item::after {
	bottom: 0px;
}
/*メニュー内のspanを非表示に*/
#menubar span {
	display: none;
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*トップページメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	box-shadow: 0px 10px 40px rgba(0,0,0,0.2);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.2は透明度20%の事。*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	overflow: hidden;
	padding: 40px 0;	/*上下、左右に空けるボックス内の余白*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	overflow: hidden;
	float: right;	/*右に回り込み*/
	width: 72%;		/*幅*/
	padding-bottom: 30px;
}
.c1 #main {
	float: none;
	width: 100%;
}
/*メインコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	font-size: 20px;	/*文字サイズ*/
	line-height: 1.4;	/*行間*/
	margin-bottom: 20px;
	padding: 10px 20px;	/*上下、左右への余白*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	border-bottom: 1px solid #dcdcdc;	/*メニュー下の線の幅、線種、色*/
	border-top: 4px solid #0057ff;	/*メニュー下の線の幅、線種、色*/
	box-shadow: 0px 1px 3px rgba(0,0,0,0.15);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
	text-shadow: 0px 2px #fff;	/*テキストの影。右へ、下へ、色。*/
}
/*メインコンテンツのh2タグ内のspanタグ設定（色付き文字部分）*/
#main h2 span {
	display: block;
	color: #0057ff;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広げる設定*/
	padding-left: 5px;
}
/*メインコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 5px 20px;	/*上下、左右への余白*/
	border: 1px solid #dcdcdc;	/*線の幅、線種、色*/
	background: #f8f8f8;		/*背景色*/
}
/*メインコンテンツの段落タグ設定*/
#main p {
	padding: 0 20px 20px;
}
#main p + p {
	margin-top: -5px;
}

/*一覧ページ（list）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	position: relative;
	overflow: hidden;
	width: 92%;			/*ボックス幅*/
	padding: 2%;		/*ボックス内の余白*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	margin: 0 0 20px 1.8%;		/*上、左右、下へのボックスの外に空けるスペース*/
	box-shadow: 0px 10px 20px rgba(0,0,0,0.1);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.1は透明度10%の事。*/
	-webkit-transition: 0.3s;	/*マウスオン時の移り変わるまでの時間設定。0.3秒。*/
	transition: 0.3s;			/*同上*/
}
#main .list a {
	overflow: hidden;
	display: block;
	text-decoration: none;
	padding: 2%;
	margin: -2%;
}
/*マウスオン時の背景色*/
#main .list:hover {
	box-shadow: none !important;	/*ボックスの影をなくす設定*/
}
/*リンクを貼った際に出る「→」マーク*/
#main .list a::before {
	content: "→";	/*出力する文字。変更しても構いませんが機種依存文字は化けるので使わないで下さい。*/
	font-size: 12px;	/*文字サイズ*/
	display: block;
	position: absolute;
	right: 10px;	/*ボックスの右から10pxの場所に配置*/
	bottom: 10px;	/*ボックスの下から10pxの場所に配置*/
	width: 30px;	/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
	background: #ccc;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.2);	/*背景グラデーション。0,0,0は黒の事で、0.3は透明度30%の事。*/
	color: #fff;	/*文字色*/
	border-radius: 50%;	/*角丸のサイズ。50%にすると円になる。*/
}
/*マウスオン時の「→」マーク*/
#main .list a:hover::before {
	background: #0057ff;	/*背景色*/
}
/*ボックス内のh4タグ設定*/
#main .list a h4,
#main .list h4 {
	font-size: 18px;
	padding: 0px;
	color: #0057ff;	/*文字色*/
}
/*ボックス内のp(段落)タグ設定*/
#main .list p {
	line-height: 1.5;
}
/*ボックス内の画像*/
#main .list figure {
	float: left;	/*左に回り込み*/
	width: 20%;		/*画像幅*/
	margin-right: 10px;
}
/*ターム*/
#main .list .terms {
	color: #999;	/*文字色*/
	font-size: 12px;	/*文字サイズ*/
}

/*ブログページ
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .blog {
	overflow: hidden;
	margin-bottom: 20px;	/*ボックス同士の上下に空けるスペース*/
}
#main .blog a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	border: 5px solid #eee;	/*枠線の幅、線種、色*/
	padding: 20px;			/*ボックス内の余白*/
}
/*マウスオン時*/
#main .blog a:hover {
	border: 5px solid #0057ff;	/*マウスオン時の枠線の設定*/
	color: #000;				/*文字色*/
}
/*h3タグの設定*/
#main .blog h3 {
	border: none;
	background: transparent;
	padding: 0;
	color: #0057ff;	/*文字色*/
	font-size: 24px;	/*文字サイズ*/
}
/*段落タグ*/
#main .blog p {
	padding: 0;
}
/*figure画像の設定*/
#main .blog figure {
	float: left;	/*左に回り込み*/
	margin-right: 20px;
}
/*コメント数、日付の行*/
#main .blog .date {
	color: #999;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	margin-top: 10px;	/*上に空けるスペース*/
}

/*ブログページのフィードバック以降のブロック
---------------------------------------------------------------------------*/
/*コメントのリストタグ*/
ol.commentlist {
	color: #999;		/*文字色*/
}
ol.commentlist p {
	padding: 0 !important;
}
/*コメント表示欄の名前と日付*/
.comment-meta, .comment-author {
	display: inline;
	font-weight: bold;	/*太字にする設定*/
}
/*「返信」ボタン*/
.reply a {
	display: block;
	text-decoration: none;
	text-align: center;
	margin-left: auto;
	width: 80px;	/*ボタンの幅*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	box-shadow: 0px 1px 3px rgba(0,0,0,0.15);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
	margin-bottom: 20px;
}
/*「返信」した記事*/
ol.commentlist ul.children {
	margin-left: 40px;	/*返信元の記事とずらす距離*/
}
ol.commentlist > li {
	border-bottom: 1px solid #eee;	/*記事間の境界線*/
	padding: 20px 0;
}
/*コメント入力用フォームボックス（「コメントを残す」のボックス）*/
#respond {
	overflow: hidden;
	border: 5px solid #eee;	/*枠線の幅、線種、色*/
	padding: 20px;			/*ボックス内の余白*/
	color: #999;			/*文字色*/
	margin-bottom: 20px;
}
/*フォームの左側の見出し*/
#respond label {
	display: inline-block;
	width: 20%;
	text-align: right;
	vertical-align: top;
}
/*inputタグ、textareaタグ*/
#respond input, #respond textarea {
	width: 75%;
	border: 1px solid #999;
}
/*「メールアドレスが公開されることはありません・・・」の文章*/
#respond p.comment-notes {
	margin-bottom: 20px;
}
/*「*」マーク*/
.required {
	color: #ff0000 !important;
}
/*「コメントを送信」ボタン*/
#respond input.submit {
	width: auto;
	display: block;
	background: #fff;
	margin: 20px auto 0;
	border-radius: 4px;
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	box-shadow: 0px 1px 3px rgba(0,0,0,0.15);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
}

/* お知らせ下バナー
-------------*/
.colom {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
}

.colom_r{
float:right;
width:30%;
margin:10px 0;
font-size:110%;

}
.colom_r h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both; */
}

.colom_l {
    float: left;
    width: 33%;
    margin: 10px 0 10px 2px;
    font-size: 110%;
}

.colom_l h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both;*/
}

/* 会長プロフィール
-------------*/
.profile {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
}

.profile p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.profile_r{
float:right;
width:48%;
margin:10px 0;
font-size:110%;

}
.profile_r h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both; */
}

.profile_l {
    float: left;
    width: 48%;
    margin: 10px 0;
    font-size: 95%;
}

.profile_l table {
    width: 100%;
}

.profile_l table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	border-bottom:#CCC dotted 3px;
	text-align:left;
}

.profile_l table td {
    width:auto;
	font-weight:normal;
	margin:10px 0;
	border-bottom:#CCC dotted 3px;
	text-align:left;
	padding-left:10px;
}

.profile_l h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both;*/
}

/* 役員紹介
-------------*/
.yakuin {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
}

.yakuin h4{
	color:#06C;
	font-size:180%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both; */
}

.yakuin p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.yakuin_r{
float:right;
width:68%;
margin:10px 0;
font-size:110%;

}
.yakuin_r h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both; */
}

.yakuin_l {
    float: left;
    width: 30%;
    margin: 10px 0;
    font-size: 95%;
}

.yakuin_l table {
    width: 100%;
}

.yakuin_l table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	border-bottom:#CCC dotted 3px;
	text-align:left;
}

.yakuin_l table td {
    width:auto;
	font-weight:normal;
	margin:10px 0;
	border-bottom:#CCC dotted 3px;
	text-align:left;
	padding-left:10px;
}

.yakuin_l h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both;*/
}


/* RC ZC
-------------*/
.rczc {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
	border-bottom:#CCC dotted 3px;
}

.rczc h1{
	color:#FFF;
	font-size:120%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 5px 5px 5px 20px;
    border:none;
	background:#09F;
	border-radius:10px;
    /* clear: both; */
}

.rczc p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.rczc_r{
float:right;
width:68%;
margin:10px 0;
font-size:95%;

}
.rczc_r h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both; */
}

.rczc_l {
    float: left;
    width: 30%;
    margin: 10px 0;
    font-size: 95%;
}

.rczc_l table {
    width: 100%;
}

.rczc_l table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	border-bottom:#CCC dotted 3px;
	text-align:left;
}

.rczc_l table td {
    width:auto;
	font-weight:normal;
	margin:10px 0;
	border-bottom:#CCC dotted 3px;
	text-align:left;
	padding-left:10px;
}

.rczc_l h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both;*/
}
/*スケジュール
-------------*/
.sche {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
}

.sche h1{
	color:#FFF;
	font-size:120%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 5px 5px 5px 20px;
    border:none;
	background:#09F;
	border-radius:10px;
    /* clear: both; */
}

.sche p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.sche table {
    width: 100%;

}


.sche table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	text-align:left;
	border:#CCC solid 1px;
}

.sche table td {
    width:auto;
	font-weight:normal;
	margin:10px 0;
	text-align:left;
	padding-left:10px;
	border:#CCC solid 1px;
}

/*クラブ紹介（ＲＣ・ＺＣ）
-------------*/
.club {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
}

.club h1{
	color:#FFF;
	font-size:120%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 5px 5px 5px 20px;
    border:none;
	background:#09F;
	border-radius:10px;
    /* clear: both; */
}

.club p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.club table {
    width: 100%;

}


.club table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	text-align:left;
}

.club table td {
    width:auto;
	font-weight:normal;
	margin:10px 0;
	text-align:center;
	font-size: 90%;
}

/*クラブ地区紹介　詳細
-------------*/
.club_chiku {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
}

.club_chiku h1{
	color:#FFF;
	font-size:120%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 5px 5px 5px 20px;
    border:none;
	background:#09F;
	border-radius:10px;
    /* clear: both; */
}

.club_chiku p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.club_chiku table {
    width: 100%;

}


.club_chiku table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	text-align:left;
	border:#CCC solid 1px;
	padding:0 10px;
	font-size:90%;
}

.club_chiku table td {
    width:auto;
	font-weight:normal;
	margin:10px 0;
	text-align:left;
	padding:0 10px;
	border:#CCC solid 1px;
	font-size:90%;
}

/*ダウンロード
-------------*/
.down {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
}

.down h1{
	color:#FFF;
	font-size:120%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 5px 5px 5px 20px;
    border:none;
	background:#09F;
	border-radius:10px;
    /* clear: both; */
}

.down p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.down table {
    width: 100%;

}


.down table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	text-align:left;
	border:#CCC solid 1px;
}

.down table td {
    width:auto;
	font-weight:normal;
	margin:10px 0;
	text-align:left;
	padding-left:10px;
	border:#CCC solid 1px;
}



/*クラブ紹介　詳細
-------------*/
.club_syosai {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
}

.club_syosai h1{
	color:#FFF;
	font-size:120%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 5px 5px 5px 20px;
    border:none;
	background:#09F;
	border-radius:10px;
    /* clear: both; */
}

.club_syosai p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.club_syosai table {
    width: 100%;

}


.club_syosai table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	text-align:left;
	border:#CCC solid 1px;
}

.club_syosai table td {
    width:auto;
	font-weight:normal;
	margin:10px 0;
	text-align:left;
	padding-left:10px;
	border:#CCC solid 1px;
	font-size:90%;
}




/* 委員長紹介
-------------*/
.charman {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
	border-bottom:#CCC dotted 3px;
}

.charman h1{
	color:#FFF;
	font-size:120%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 5px 5px 5px 20px;
    border:none;
	background:#09F;
	border-radius:10px;
    /* clear: both; */
}

.charman p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.charman_r{
float:right;
width:68%;
margin:10px 0;
font-size:110%;

}
.charman_r h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both; */
}

.charman_l {
    float: left;
    width: 30%;
    margin: 10px 0;
    font-size: 95%;
}

.charman_l table {
    width: 100%;
}

.charman_l table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	border-bottom:#CCC dotted 3px;
	text-align:left;
}

.charman_l table td {
    width:auto;
	font-weight:normal;
	margin:10px 0;
	border-bottom:#CCC dotted 3px;
	text-align:left;
	padding-left:10px;
}

.charman_l h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both;*/
}


/*　地区内クラブ紹介
*****************************************************/

.region {
    width: 700px;
	clear:both;
}

.region-select {
    width: 700px;
    margin: 0 0 24px 0;
}

.region-select-l {
    width: 220px;
    float: left;
    margin: 12px 15px 0 0;
	height:100px;
}

.region-select-r {
    width: 415px;
    float: right;
	height:100px;
}

.region-map {
    width: 630px;
    position: relative;
}

.region-map ul {
    margin: 0;
    list-style: none;
}


.region-map li.r1 {
    position: absolute;
    top: -30px;
    left: 411px;
}

.region-map li.r2 {
    position: absolute;
    top: 87px;
    left: 257px;
}

.region-map li.r3 {
    position: absolute;
    top: 290px;
    left: 34px;
}

.region-map li.r4 {
    position: absolute;
    top: 698px;
    left: 466px;
}

.region-map li.r5 {
    position: absolute;
    top: 889px;
    left: 264px;
}

.region-map li.r6 {
    position: absolute;
    top: 615px;
    left: 66px;
}

.region-map li.r7 {
	position: absolute;
    top: 918px;
    left: 34px;
}



.back {
    width: 960px;
    text-align: right;
    padding: 0 0 8px 0;
    margin: 0 8px;
}

/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック*/
#sub {
	float: left;	/*左に回り込み*/
	width: 24%;		/*幅*/
	padding-bottom: 30px;
}
.c1 #sub {
	display: none;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	margin-bottom: 0;
	box-shadow: none;
	font-size: 16px;	/*文字サイズ*/
	text-align: center;	/*内容をセンタリング*/
	padding: 15px;		/*ボックス内の余白*/
	border: 1px solid #dcdcdc;	/*メニューの線の幅、線種、色*/
}

/*subコンテンツ内のh2タグ設定*/
#sub h3 {
	margin-bottom: 0;
	box-shadow: none;
	font-size: 90%;	/*文字サイズ*/
	text-align: center;	/*内容をセンタリング*/
	padding: 0;		/*ボックス内の余白*/
	border:none;	/*メニューの線の幅、線種、色*/
	margin-bottom:15px;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub .submenu {
	border-top: solid 1px #dcdcdc;	/*上の線の線種、幅、色*/
}
#sub .submenu a {
	display: block;
}
/*メニュー１個ごとの設定*/
#sub .submenu li {
	padding: 5px 10px;	/*メニュー内の余白。上下、左右への設定。*/
	border-bottom: solid 1px #dcdcdc;	/*下の線の線種、幅、色*/
	border-left: solid 1px #dcdcdc;		/*左の線の線種、幅、色*/
	border-right: solid 1px #dcdcdc;	/*右の線の線種、幅、色*/
}
#sub .submenu li a {
	text-decoration: none;
}
/*liタグが入れ子になった場合*/
#sub .submenu li li {
	padding: 0px 10px;
	border: none;
}
/*h2直下にsubmenuが続いた場合のみ、submenuの上の線を消す設定*/
#sub h2 + ul.submenu {
	border-top: none;
}

/*subコンテンツ内のbox1と、ウィジェットの各メニュー用追加
---------------------------------------------------------------------------*/
#sub .box1,
#sub .widget_archive, #sub .widget_categories, #sub .widget_pages {
	overflow: hidden;
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	border: solid 1px #dcdcdc;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.1) inset;	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.1は透明度10%の事。insetは内側への影、という意味。*/
}
/*h2直下にbox1が続いた場合のみ、box1の上の線を消す設定*/
#sub h2 + .box1 {
	border-top: none;
}

/*subコンテンツ内のlistボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub .list {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	font-size: 12px;				/*文字サイズ*/
	line-height: 1.2;				/*行間*/
	overflow: hidden;
	padding: 10px 0;
}
#sub .list a {
	overflow: hidden;
}
/*subコンテンツ内のbox内のlist内のh2タグ設定*/
#sub .box1 .list h2 {
	padding: 0;
	border: none;
	font-size: 14px;	/*文字サイズ*/
	text-align: left;	/*文字を左側に*/
	font-weight: bold;
}
/*ボックス内の画像の設定*/
#sub .list figure img {
	float: left;	/*左に回り込み*/
	margin-right: 10px;
	width: 25%;		/*画像幅*/
}
/*最後のボックスの下線を消す設定*/
#sub .list:last-child {
	border-bottom: none;
}

/*subブロック内の検索ブロック
---------------------------------------------------------------------------*/
#searchform  {
	text-align: center;	/*文字をセンタリング*/
	padding: 20px 0;	/*上下、左右へのボックス内の余白*/
}
/*デフォルトで出る「検索：」の文字を消す設定*/
#searchform .screen-reader-text {
	display: none;
}

/*ウィジェットカレンダー用
---------------------------------------------------------------------------*/
#wp-calendar {
	background: #fff;	/*背景色*/
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
	font-size: 12px;
}
#wp-calendar, #wp-calendar th, #wp-calendar td {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
}
#wp-calendar a {
	color: #0057ff;	/*リンクテキストの色*/
}

/*カスタムフィールド出力用（擬似テーブル）
---------------------------------------------------------------------------*/
/*ブロック全体*/
ul.post-meta {
	border-top: 1px solid #ccc;	/*ブロックの一番上の線の幅、線種、色*/
	margin-bottom: 20px;
}
/*各行*/
ul.post-meta li {
	border-bottom: 1px solid #ccc;	/*各行ごとの下線の幅、線種、色*/
}
/*各行（左側ブロック）*/
ul.post-meta li .post-meta-key {
	display: inline-block;
	width: 150px;		/*幅*/
	background: #eee;	/*背景色*/
	padding: 10px;		/*ボックス内の余白*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #0057ff;	/*背景色*/
	color: #fff;	/*文字色*/
	font-size: 85%;	/*文字サイズ*/
}
footer a {
	color: #fff;
}
footer a:hover {
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 0;
	text-align: center;
}
#footermenu li {
	display: inline;
	padding: 10px;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #09f;	/*背景色*/
}
#copyright a {
	text-decoration: none;
}

/*お知らせ用の設定
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.news {
	padding: 5px 20px;	/*上下、左右へのボックス内の余白*/
}
/*日付ブロック*/
.news dt {
	float: left;	/*左に回り込み*/
	width: 7em;		/*幅。日付の出力を変更した際はここも調整して下さい。*/
	color: #0057ff;	/*文字色*/
}
/*アイコンとテキストブロック（日付以外の部分）*/
.news dd {
	padding-left: 7em;	/*左に空ける余白。上の日付のwidthと合わせる。*/
	position: relative;
	border-bottom: 1px solid #eee;	/*下線の幅、線種、色*/
}
/*h4見出し*/
.news h4 {
	font-weight: bold;	/*太字にする設定*/
}
/*段落タグ*/
.news p {
	padding: 0 !important;
}
/*コメント*/
.news .comment {
	padding-left: 1em;	/*左に空ける余白。上の「.news dt」や「.news dd」のwidthの値に「1」追加したぐらいでOK。*/
}
/*アイコン（共通）*/
.news .category a {
	display: block;
	text-decoration: none;
	text-align: center;
	width: 8em;		/*幅。ここを変更した場合は上の「.news .comment」の数字も合わせて変更する。*/
	position: absolute;
	top: 5px;
	background: #999;	/*背景色*/
	color: #fff;		/*文字色*/
	border-radius: 2px;	/*角丸のサイズ*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.8;	/*行間*/
	padding: 0 5px;		/*上下、左右へのアイコン内の余白*/
}
/*アイコン「news」*/
.news .category-news .category a {
	background: #0057ff;	/*背景色*/
	color: #FFF;
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	color: #0057ff;	/*文字色*/
	padding-top: 15px;
}
.faq dt a {
	color: #0057ff;	
}
/*回答の設定*/
.faq dd {
	border-bottom: 1px solid #dcdcdc;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}
/*段落タグ*/
.faq p {
	padding: 0 !important;
}

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #f6f5f2;	/*背景色*/
	font-size: 18px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	max-width: 100%;
}
/*ta1内のpタグ*/
.ta1 p {
	padding: 0 !important;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	padding-top: 40px;
}
#pagetop a {
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	background: #0057ff;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	width: 60px;	/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 10px;	/*角丸のサイズ*/
	border: 3px solid #fff;	/*枠線の幅、線種、色*/
	box-shadow: 0px 5px 15px rgba(0,0,0,0.2);	/*ボックスの影*/
	margin-bottom: 20px;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #fff;	/*背景色*/
	color: #0057ff;		/*文字色*/
}

/*ページ内メニュー（サービスページ内でジャンルを指定した場合に出る見出し下のメニュー）
---------------------------------------------------------------------------*/
ul.nav {text-align: center;padding-bottom: 10px;}
ul.nav li {display: inline;padding: 10px;}
ul.nav li.current-cat a {text-decoration: none;color: #0057ff;}

/*ページナビ
---------------------------------------------------------------------------*/
/*ボックス全体*/
.page-numbers {
	clear: both;
	text-align: center;
	padding-bottom: 5px;
	padding-top: 20px;
	margin-bottom: 20px;
}
/*ナビ１個あたりの設定*/
.page-numbers li {
	display: inline;
}
.page-numbers a {
	text-decoration: none;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
}
/*現在表示中の設定*/
.page-numbers li .current,
.page-numbers span {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	font-weight: bold;		/*文字を太字に*/
	background: #eee;		/*背景色*/
	color: #ababab;			/*文字色*/
}
.page-numbers a span {
	background: #fff;		/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	margin: -11px;			/*調整。paddingとborderの数字を合わせてマイナスをつける*/
	color: #666;			/*文字色*/
}
/*マウスオン時の設定*/
.page-numbers a:hover,
.page-numbers a:hover span {
	background: #eee;	/*背景色*/
}
/*下の「.next」の設定の影響をリセット*/
.page-numbers .next {float: none;}

/*前の投稿、次の投稿
---------------------------------------------------------------------------*/
.back {float: left;}
.next {float: right;}

/*固定ページに子ページがある場合のナビメニュー
---------------------------------------------------------------------------*/
div.nav {text-align: center;} 
div.nav a {display: inline-block; margin: 0 5px 20px;}
div.nav a::before {content: "»"}

/*その他
---------------------------------------------------------------------------*/
.look {background: #e5e5e5;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb30 {margin-bottom: 30px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #0057ff;}
.bg1 {background: #f6f5f2;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 24px;letter-spacing: 0.2em;}
.mini1 {font-size: 95%;display: inline-block;line-height: 1.5;}
.sh {display: none;}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	width: auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	border-bottom: 1px solid #dcdcdc;	/*上の線の幅、線種、色*/
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体を非表示にする*/
#contact {
	display: none;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: left;	/*左に回り込み*/
	width: 50%;		/*メニュー幅*/
}
#menubar-s li a {
	display: block;
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	padding: 15px 0;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #dcdcdc;	/*下線の幅、線種、色*/
	border-right: 1px solid #dcdcdc;	/*右線の幅、線種、色*/
}
/*偶数番目のメニューの右側の線を消す*/
#menubar-s li:nth-child(even) a {
	border-right: none;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 28px;		/*上から28pxの場所に配置*/
	right: 2%;		/*右から2%の場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
	background: #fff;		/*背景色*/
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #000;	/*枠線の幅、線種、色*/
	margin-bottom: 7px;			/*バー同士の余白*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}
#main {
	padding-bottom: 80px;
}

/*subコンテンツ内のlistボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub .list {
	font-size: 100%;
	line-height: normal;			/*行間*/
}
/*ボックス内の画像の設定*/
#sub .list figure img {
	width: 15%;		/*画像幅*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*アイコン*/
section#new h2::before {
		float: right;	/*右に回り込み*/
		font-size: 18px;	/*文字サイズ*/
		background: #fff;	/*背景色*/
		border-radius: 50%;	/*角丸のサイズ*/
		width: 30px;		/*幅*/
		line-height: 30px;	/*高さ*/
		text-align: center;	/*文字をセンタリング*/
		border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
		box-shadow: 1px 1px 6px rgba(0,0,0,0.1) inset;	/*内側への影*/
}
/*プラスアイコンの文字*/
section#new h2.close::before {
		content: "＋";
}
/*マイナスアイコンの文字*/
section#new h2.open::before {
		content: "−";
}

/*その他
---------------------------------------------------------------------------*/
.s-n .sub,.m-n {display: none;}
.fl-half{float:left;width:45%;margin-left:3%;}
.sh {display:block;}
.pc {display:none;}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 83%;	/*ロゴ画像の幅*/
	margin-top: 35px; /*ロゴの上にあける余白*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*コンテンツのh2タグの設定*/
#main h2 {
	font-size: 16px;	/*文字サイズ*/
	padding: 5px 10px;	/*上下、左右への余白*/
}

/* お知らせ下バナー
-------------*/
.colom {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
}

.colom_r{
float:right;
width:30%;
margin:10px 0;
font-size:110%;

}
.colom_r h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both; */
}

.colom_l {
    float: left;
    width: 32%;
    margin: 10px 0 10px 2px;
    font-size: 110%;
}

.colom_l h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both;*/
}

/* 会長プロフィール
-------------*/
.profile {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
}

.profile p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.profile_r{
float:right;
width:100%;
margin:10px 0;
font-size:110%;

}
.profile_r h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both; */
}

.profile_l {
    float: left;
    width: 98%;
    margin: 10px 0;
    font-size: 95%;
}

.profile_l table {
    width: 100%;
}

.profile_l table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	border-bottom:#CCC dotted 1px;
	text-align:left;
}

.profile_l table td {
    width:auto;
	font-weight:normal;
	margin:10px 0;
	border-bottom:#CCC dotted 1px;
	text-align:left;
	padding-left:10px;
	padding:10px 0;
}

.profile_l h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both;*/
}

/* 役員紹介
-------------*/
.yakuin {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
}

.yakuin h4{
	color:#06C;
	font-size:150%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
	text-align:center;
    /* clear: both; */
}

.yakuin p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.yakuin_r{
float:none;
width:95%;
margin:10px auto;
font-size:100%;

}
.yakuin_r h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both; */
}

.yakuin_l {
    float: none;
    width: 100%;
    margin: 10px auto;
    font-size: 95%;
	text-align:center;
}

.yakuin_l table {
    width: 100%;
}

.yakuin_l table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	border-bottom:#CCC dotted 3px;
	text-align:left;
}

.yakuin_l table td {
    width:auto;
	font-weight:normal;
	margin:10px 0;
	border-bottom:#CCC dotted 3px;
	text-align:left;
	padding-left:10px;
}

.yakuin_l h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both;*/
}


/* RC ZC
-------------*/
.rczc {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
	border-bottom:#CCC dotted 3px;
}

.rczc h1{
	color:#FFF;
	font-size:120%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 5px 5px 5px 20px;
    border:none;
	background:#09F;
	border-radius:10px;
    /* clear: both; */
}

.rczc p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.rczc_r{
float:right;
width:68%;
margin:10px 0;
font-size:95%;

}
.rczc_r h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both; */
}

.rczc_l {
    float: left;
    width: 30%;
    margin: 10px 0;
    font-size: 95%;
}

.rczc_l table {
    width: 100%;
}

.rczc_l table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	border-bottom:#CCC dotted 3px;
	text-align:left;
}

.rczc_l table td {
    width:auto;
	font-weight:normal;
	margin:10px 0;
	border-bottom:#CCC dotted 3px;
	text-align:left;
	padding-left:10px;
}

.rczc_l h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both;*/
}
/*スケジュール
-------------*/
.sche {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
}

.sche h1{
	color:#FFF;
	font-size:120%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 5px 5px 5px 20px;
    border:none;
	background:#09F;
	border-radius:10px;
    /* clear: both; */
}

.sche p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.sche table {
    width: 100%;

}


.sche table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	text-align:left;
	border:#CCC solid 1px;
}

.sche table td {
    width: auto;
    font-weight: normal;
    margin: 0px 0;
    text-align: left;
    padding-left: 5px;
    border: #CCC solid 1px;
    /* text-align: center; */
    font-size: 90%;
    padding: 5px;
}

/*クラブ紹介（ＲＣ・ＺＣ）
-------------*/
.club {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
}

.club h1{
	color:#FFF;
	font-size:120%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 5px 5px 5px 20px;
    border:none;
	background:#09F;
	border-radius:10px;
    /* clear: both; */
}

.club p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.club table {
    width: 100%;

}


.club table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	text-align:left;
}

.club table td {
    width:auto;
	font-weight:normal;
	margin:10px 0;
	text-align:center;
	font-size: 90%;
	vertical-align: top;
}

/*クラブ地区紹介　詳細
-------------*/
.club_chiku {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
}

.club_chiku h1{
	color:#FFF;
	font-size:120%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 5px 5px 5px 20px;
    border:none;
	background:#09F;
	border-radius:10px;
    /* clear: both; */
}

.club_chiku p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.club_chiku table {
    width: 100%;

}


.club_chiku table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	text-align:left;
	border:#CCC solid 1px;
	padding:0 10px;
	font-size:90%;
}

.club_chiku table td {
    width:auto;
	font-weight:normal;
	margin:10px 0;
	text-align:left;
	padding:0 10px;
	border:#CCC solid 1px;
	font-size:90%;
}

/*ダウンロード
-------------*/
.down {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
}

.down h1{
	color:#FFF;
	font-size:120%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 5px 5px 5px 20px;
    border:none;
	background:#09F;
	border-radius:10px;
    /* clear: both; */
}

.down p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.down table {
    width: 100%;

}


.down table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	text-align:left;
	border:#CCC solid 1px;
}

.down table td {
    width:auto;
	font-weight:normal;
	margin:10px 0;
	text-align:left;
	padding-left:10px;
	border:#CCC solid 1px;
}



/*クラブ紹介　詳細
-------------*/
.club_syosai {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
}

.club_syosai h1{
	color:#FFF;
	font-size:120%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 5px 5px 5px 20px;
    border:none;
	background:#09F;
	border-radius:10px;
    /* clear: both; */
}

.club_syosai p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.club_syosai table {
    width: 100%;

}


.club_syosai table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	text-align:left;
	border:#CCC solid 1px;
}

.club_syosai table td {
    width:auto;
	font-weight:normal;
	margin:10px 0;
	text-align:left;
	padding-left:10px;
	border:#CCC solid 1px;
	font-size:90%;
}




/* 委員長紹介
-------------*/
.charman {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 110%;
    /* border-top: #21ac39 solid 12px; */
	border-bottom:#CCC dotted 3px;
}

.charman h1{
	color:#FFF;
	font-size:120%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 5px 5px 5px 20px;
    border:none;
	background:#09F;
	border-radius:10px;
    /* clear: both; */
}

.charman p {
    clear: both;
    width: 100%;
    margin: 0px 0 10px 0;
    font-size: 95%;
    /* border-top: #21ac39 solid 12px; */
	padding: 0 0px 0px !important;
}

.charman_r{
float:right;
width:68%;
margin:10px 0;
font-size:110%;

}
.charman_r h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both; */
}

.charman_l {
    float: left;
    width: 30%;
    margin: 10px 0;
    font-size: 95%;
}

.charman_l table {
    width: 100%;
}

.charman_l table th {
    width:auto;
	font-weight:normal;
	background:#09F;
	color:#FFF;
	margin:10px 0;
	border-bottom:#CCC dotted 3px;
	text-align:left;
}

.charman_l table td {
    width:auto;
	font-weight:normal;
	margin:10px 0;
	border-bottom:#CCC dotted 3px;
	text-align:left;
	padding-left:10px;
}

.charman_l h4{
	color:#06C;
	font-size:110%;
	font-weight:bold;
    margin-bottom: 5px;
    padding: 0px 0px;
    border:none;
    background:none;
    /* clear: both;*/
}


/*　地区内クラブ紹介
*****************************************************/

.region {
    width: 100%;
	clear:both;
}

.region-select {
    width: 700px;
    margin: 0 0 24px 0;
}

.region-select-l {
    width: 220px;
    float: left;
    margin: 12px 15px 0 0;
	height:100px;
}

.region-select-r {
    width: 415px;
    float: right;
	height:100px;
}

.region-map {
    width: 95%;
    position: relative;
}

.region-map ul {
    margin: 0;
    list-style: none;
}


.region-map li.r1 {
    position: absolute;
    top: -36px;
    left: 165px;
}

.region-map li.r2 {
	position: absolute;
    top: 130px;
    left: 228px;
}

.region-map li.r3 {
	position: absolute;
    top: 195px;
    left: 120px;
}

.region-map li.r4 {
	position: absolute;
    top: 321px;
    left: 236px;
}

.region-map li.r5 {
    position: absolute;
    top: 469px;
    left: 117px;
}

.region-map li.r6 {
    position: absolute;
    top: 469px;
    left: 7px;
}

.region-map li.r7 {
	position: absolute;
    top: 316px;
    left: -2px;
}



.back {
    width: 960px;
    text-align: right;
    padding: 0 0 8px 0;
    margin: 0 8px;
}

/*一覧ページ（list）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list {
	margin: 0;
	width: auto;
	box-shadow: none !important;
	border: none;
	border-bottom: 1px solid #dcdcdc;	/*下線の幅、線種、色*/
}
/*１つ目のメニュー*/
#main .list:first-of-type {
	border-top: 1px solid #dcdcdc;
}
/*リンクを貼った際に出る「→」マーク*/
#main .list a::before {
	right: 0px;	/*ボックスの右から0pxの場所に配置*/
	width: 20px;	/*幅*/
	line-height: 20px;	/*高さ*/
}
/*ボックス内のp(段落)タグ設定*/
#main .list p {
	padding-right: 40px !important;
}

/*ブログページのフィードバック以降のブロック
---------------------------------------------------------------------------*/
/*「返信」した記事*/
ol.commentlist ul.children {
	margin-left: 0px;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
#sub .submenu li {
	padding: 10px;	/*メニュー内の余白*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*アイコン。見出しに装飾用の<span>を使用する場合は下の「margin-top」を適用して上下のバランスをとって下さい。*/
section#new h2::before {
		/*margin-top: 6px;*/
		width: 20px;		/*幅*/
		line-height: 20px;	/*高さ*/
}

/*お知らせ用の設定
---------------------------------------------------------------------------*/
/*コメント*/
.news .comment {
	padding-left: 0;
}
/*コメント内の段落タグ*/
.news .comment p {
	padding: 0 !important;
}
/*アイコン（共通）*/
.news .category a {
	display: none;
}

/*カスタムフィールド出力用（擬似テーブル）
---------------------------------------------------------------------------*/
/*各行（左側ブロック）*/
ul.post-meta li .post-meta-key {
	width: 100px;		/*幅*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.fl-half{float:none;width:100%;margin-left:0;}

}

/***** コンタクトフォーム *****/
.table-contactform7{
  overflow: hidden;
table-layout: fixed;
width:100%;
}
 
.required-contactform7{
  padding: 5px;
  background: #DE8686;
  color: #fff;
  border-radius: 3px;
  margin-right: 3px;
}
 
.unrequired-contactform7{
  padding: 5px;
  background: #BDBDBD;
  color: #fff;
  border-radius: 3px;
  margin-right: 3px;
}
 
.table-contactform7 tr:nth-child(even) {
	background: aliceblue;
}
 
.table-contactform7 th{
  font-weight:bold;
  text-align:left;
  padding:10px;
}

.table-contactform7 td{
  font-weight:bold;
  text-align:left;
  padding:10px;
}
 
.table-contactform7 input,
.table-contactform7 textarea{
  max-width: 90% !important;
  margin: 5px 10px 10px 5px;
}
 
.address-100 input{
  max-width: 90% !important;
  margin: 5px 10px 10px 5px;
}
 
.message-100 textarea{
  width: 100%;
  margin: 5px 10px 10px 5px;
}
 
@media screen and (min-width: 900px){
  .table-contactform7 th{
    width:28%;
  }
    }
     
@media screen and (max-width: 900px){
.table-contactform7{
  display:block;
}     
       
  .table-contactform7 tbody,
  .table-contactform7 tr{
    display: block;
    width: 100%;
  }
  .table-contactform7 th{
  width:100%;
  display:block;
  margin: 0 auto;
  border:none;
}
.table-contactform7 td{
  display: list-item;
  list-style-type:none;
  margin:0;
  padding:0;
  width: 100%;
  border-top: none !important;
}
}

#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
}
#page-top a {
    background: #666;
    text-decoration: none;
    color: #fff;
    width: 100px;
    padding: 30px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
}
#page-top a:hover {
    text-decoration: none;
    background: #999;
}

@media screen and (min-width: 650px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 650px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}