@charset "UTF-8";

/*
	Theme Name: MitoyoCS
	Theme URI: http://www.mitoyocs.jp
	Description: 特定非営利活動法人 三豊市総合型地域文化・スポーツクラブ
	Version: 2.0
	Author: CELESTY DESIGN
	Author URI: http://www.celesty.jp
*/

/****************************************
	CSSリセット
*****************************************/
@import url("reset.css");


/*
メインのブルー（ロゴ、現在位置、リンク）
#004098

メインのブルーよりも濃いブルー
#002b60

鮮やかな水色（リンクのホバー）
#00A0E9

限界まで薄いグレー
#F8F8F8
*/

/****************************************
	一般設定
*****************************************/
.container {
	overflow: hidden; /* ハンバーガーメニューなど枠外にあるものを非表示 */
/*	background: #fff;
	color: #000;
	font-size: 14px;
	font-family:
		'ヒラギノ角ゴ Pro W3',
		'Hiragino Kaku Gothic Pro',
		'メイリオ',
		Meiryo,
		Osaka,
		'ＭＳ Ｐゴシック',
		'MS P Gothic',
		sans-serif;*/
}

table {
	width: 100%;
	border-collapse: collapse;
}
tr:nth-child(odd) {
	background-color: #F8F8F8;
}
table th {
	padding: 10px;
	color: #fff;
	background-color: #0081CC;
	border: 1px dotted #ccc;
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
}
table td {
	padding: 10px 20px;
	border: 1px dotted #ccc;
	vertical-align: middle;
}

/* wp-pagenavi プラグイン用 */
/* プラグイン設定側でデフォルトCSSを不使用に設定する */
.wp-pagenavi {
	padding: 20px 0;
	clear: both;
	text-align:center;
}
	.wp-pagenavi a,
	.wp-pagenavi span {
	 display: inline-block; /* 幅が狭い場合に折り返す */
	color: #999;
	background-color: #FFF;
	border: solid 1px #e0e0d2;
	padding: 8px 15px;
	margin: 0 2px;
	white-space: nowrap;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration:none;
	}
	.wp-pagenavi a:hover{
	 display: inline-block; /* 幅が狭い場合に折り返す */
	color:#FFF; 
	background-color:#00A0E9; 
	border-color:#00A0E9;
	}
	.wp-pagenavi span.current{
	 display: inline-block; /* 幅が狭い場合に折り返す */
	color: #FFF;
	background-color: #004098;
	border-color: #004098;
	font-weight: bold;
	}

/****************************************
　Bootstrap カスタム
*****************************************/
/* ガター無し */
.no-gutter > [class*='col-'] {
	padding-left: 0;
	padding-right: 0;
}



/****************************************
*****************************************

	モバイル用
		- ヘッダー
		- メインナビゲーション
		- パンくずリスト
		- フッター
		- トップページ
		- 下層ページ
		- サイドナビゲーション
		- アイコン
		- お問合せフォーム

*****************************************
*****************************************/

/****************************************
	モバイル用 > ヘッダー
*****************************************/
header {
	z-index: 1;
	min-height: 90px;
}
	header h1 {
		margin: 0;
	}

/* ロゴ */
#logo {
	display: block;
	margin-top: 15px;
	width: 200px;
	height: 55px;
}
	#logo img {
		width: 100%;
		height: 100%;
	}

/* 説明文 */
#description {
	display: none;
}

/* 検索フォーム */
#searchform {
	display: none;
}

/* サブナビゲーション */
#sub-navi {
	display: none;
}

/* トグルボタン */
#naviToggle {
	z-index: 3;
	position: absolute; /* bodyに対して絶対位置指定 */
	right: 15px;
	top: 15px;
	width: 70px;
	height: 60px;
	padding: 10px 5px;
	background-color: #F8F8F8;
	border: 1px solid #ccc;
	border-radius: 4px;
	cursor: pointer;
}
	#naviToggle:hover {
		background-color: #eee;
	}
	#naviToggle div {
		position: relative; /* 子spanの絶対位置指定のための親 */
	}
	#naviToggle span {
		display: block;
		position: absolute; /* 親div に対して絶対位置 */
		left: 25%;
		width: 50%;
		border-bottom: solid 4px #999;
		-webkit-transition: 0.4s ease-in-out; /* 動きに緩急を付ける */
		-moz-transition: 0.4s ease-in-out;
		transition: 0.4s ease-in-out;
	}
	#naviToggle span:nth-child(1) {top: 2px}
	#naviToggle span:nth-child(2) {top: 10px}
	#naviToggle span:nth-child(3) {top: 18px}
	#naviToggle span:nth-child(4) {
		top: 30px;
		left: 0;
		width: 100%;
		font-size: 11px;
		font-weight: bold;
		text-align: center;
		border-bottom: none;
	}

	/* メニューを開いた時のトグルボタンの挙動 */
	.openNavi #naviToggle span:nth-child(1) {
		top: 10px;
		-webkit-transform: rotate(-45deg); /*1番目のspanを-45度に*/
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.openNavi #naviToggle span:nth-child(2),
	.openNavi #naviToggle span:nth-child(3) {
		top: 10px;
		-webkit-transform: rotate(45deg); /*2番目と3番目のspanを45度に*/
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}


/****************************************
	モバイル用 > メインナビゲーション
*****************************************/
#pc-main-navi {
	display: none;
}
#main-navi {
	z-index: 2;
	position: absolute; /* 親divに対して */
	top: 19px;
	right: -100%;
	width: 100%;
	border-top: 4px solid #002b60;
	border-bottom: 4px solid #002b60;
	background: rgba( 0, 65, 142, 0.95 ); /* #004098 */
	-webkit-transition: 0.3s ease-in-out; /* 動きに緩急を付ける */
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
	#main-navi ul {
		margin: 0;
		padding: 0;
	}
	#main-navi a {
		display: block;
		padding: 10px 15px;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		text-decoration: none;
		border-bottom: 1px solid #002b60;
	}
	#main-navi a:hover {
		background: rgba( 0, 43, 96, 0.9 ); /* #002b60 */
		text-decoration: underline;
	}
	/* 英語メニューを非表示 */
	#main-navi span {
		display: none;
	}
	/* サブカテゴリの体裁 */
	#main-navi .sub-menu li a {
		padding-left: 50px;
		font-size: 12px;
		font-weight: normal;
	}

	/* メニューを開いた時の挙動 */
	.openNavi #main-navi {
		-webkit-transform: translateX(-100%);
		-moz-transform: translateX(-100%);
		transform: translateX(-100%);
	}


/****************************************
	モバイル用 > パンくずリスト
*****************************************/
#breadcrumb {
	overflow: hidden;
	margin: 0 -15px;
	padding: 5px 15px;
	font-size: 12px;
	border-top: 1px dotted #ccc;
}
	#breadcrumb ul li {
		float: left;
		margin-right: 5px;
		margin-top: 5px;
		margin-bottom: 5px;
		font-weight: bold;
	}
	#breadcrumb ul li a {
		display: block;
		color: #004098;
		font-weight: normal;
	}
	#breadcrumb ul li a:hover {
		color: #00A0E9;
	}
	#breadcrumb .home {
		padding-left: 20px;
		background: url(images/icon_home.png) 0 0 no-repeat;
	}


/****************************************
	モバイル用 > フッター
*****************************************/
/* ナビゲーションバー */
.footer-bar {
	margin: 50px -15px 0;
	font-size: 13px;
	background-color: #00A0E9;
}
	.footer-bar a {
		position: relative;
		display: block;
		width: 100%;
		padding: 35px 0 20px;
		text-align: center;
		color: #fff;
	}
	.footer-bar a:hover,
	.footer-bar a:visited {
		color: #fff;
	}
	.footer-bar a::before {
		position: absolute;
		display: block;
		content: '';
	}
	.footer-bar a::before {
		z-index: 1;
		top: 22px;
		left: 50%;
		width: 6px;
		height: 6px;
		border-left: 1px solid #fff;
		border-top: 1px solid #fff;
		-webkit-transform: translateX(-3px) rotate(45deg);
		-ms-transform: translateX(-3px) rotate(45deg);
		transform: translateX(-3px) rotate(45deg);
	}

/* フッターメニュー */
.footer-menu ul {
	margin: 0 -15px;
}
	.footer-menu ul li {
		border-bottom: 1px dotted #ccc;
		background-color: #F8F8F8;
	}
	.footer-menu ul li a {
		display: block;
		width: 100%;
		padding: 20px;
		font-size: 12px;
		color: #004098;
	}
	.footer-menu ul li a:hover {
		color: #00A0E9;
		background-color: #eee;
	}
/* 運営団体情報 */
.footer-orginfo {
	margin: 0 -15px;
	padding: 30px 15px;
}
/* コピーライト情報 */
.footer-copyright {
	margin: 0 -15px;
	padding: 30px 15px;
	font-size: 13px;
	text-align: center;
	color: #666;
	border-top: 1px solid #ccc;
}


/****************************************
	モバイル用 > トップページ
*****************************************/
/* 見出し */
.top-label {
	margin: 30px 0 8px;
	padding-left: 10px;
	padding-bottom: 5px;
	border-left:  4px solid #004098;
}
	.top-label h2 {
		margin: 0;
		padding: 1px 0 4px;
		color: #000;
		font-weight: normal;
		font-size: 20px;
	}
	.top-label h3 {
		float: left;
		margin: 0;
		padding: 5px 2px 0;
		color: #004098;
		font-size: 12px;
		font-weight: bold;
		font-family: 'Josefin Sans', sans-serif;
		text-transform: uppercase; /* すべて大文字 */
	}

/* 一覧リンク */	
.link-jump {
	float: right;
}
	.link-jump a {
		position: relative;
		padding-right: 20px;
		color: #004098;
		font-size: 12px;
	}
	.link-jump a:hover {
		color: #00A0E9;
	}
	.link-jump a::after,
	.link-jump a::before {
		position: absolute;
		display: block;
		content: '';
	}
	.link-jump a::after {
		top: -0.1em;
		right: 0em;
		width: 15px;
		height: 15px;
		background-color: #004098;
		border-radius: 100%;
	}
	.link-jump a::before {
		z-index: 1;
		top: 0.3em;
		right: 0.5em;
		width: 5px;
		height: 5px;
		border-right: 1px solid #fff;
		border-bottom: 1px solid #fff;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.link-jump a:hover::after {
		background-color: #00A0E9;
	}

/* トップビジュアル */
.top-visual {
	margin: 0 -15px;
}

/* シーマックス速報 囲み */
.top-seamax ul li {
	padding: 2px 15px;
	font-size: 13px;
	background-color: #F8F8F8;
	border-left:  1px solid #CCC;
	border-right: 1px solid #CCC;
	list-style: none;
}
	.top-seamax ul li:first-child {
		padding-top: 10px;
		border-top: 1px solid #CCC;
		border-radius: 3px 3px 0 0;
	}
	.top-seamax ul li:last-child {
		padding-bottom: 10px;
		border-bottom: 1px solid #CCC;
		border-radius: 0 0 3px 3px;
	}

/* ニュース＆トピックス 囲み */
.top-news ul li {
	padding: 10px;
	margin: 0px;
	border-left:  1px solid #CCC;
	border-right: 1px solid #CCC;
	border-bottom: 1px dotted #CCC;
	list-style: none;
}
	.top-news ul li:first-child {
		border-top: 1px solid #CCC;
		border-radius: 3px 3px 0 0;
	}
	.top-news ul li:last-child {
		border-bottom: 1px solid #CCC;
		border-radius: 0 0 3px 3px;
	}
	.top-news ul li p {
		margin: 0;
		padding-bottom: 5px;
		font-size: 13px;
	}
	.top-news ul li p a {
		color: #004098;
		text-decoration: none;
	}
	.top-news ul li p a:hover,
	.top-news ul li p a:active {
		color: #00A0E9;
		text-decoration: underline;
	}
.top-news-date {
	padding: 0;
	color: #666;
	font-size: 12px;
}

/* イベント情報 囲み */
.top-event ul li {
	display: block;
	float: left;
	margin: 2px;
	padding: 15px 10px;
	text-align: center;
	width: 48%;
	min-height: 350px;
	background-color: #F8F8F8;
	border-radius: 3px;
	list-style: none;
}
	.top-event-title {
		padding-top: 10px;
		color: #004098;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
	}
	.top-event-date {
		padding-top: 8px;
		color: #666;
		font-size: 15px;
		font-weight: bold;
		text-align: center;
	}
	.top-event-end {
		padding-top: 4px;
		color: #FF0000;
		font-size: 12px;
		font-weight: bold;
		text-align: center;
	}

/* トップページ サークル・教室 */
.top-school ul {
}
	.top-school ul li {
		float: left;
		width: 148px;
		margin: 0px;
		border: 1px solid #FFF;
		list-style: none;
	}
	.top-school ul li:first-child {
	}
	.top-school ul li a {
		display: block;
		padding: 10px;
		font-size: 13px;
		background-color: #F8F8F8;
	}
	.top-school ul li a:hover {
		color: #fff;
		background-color: #00A0E9;
	}

/* トップページ ミニカレンダー */
#calendar-mini {
	border-bottom: 1px solid #0081CC;
}
	#calendar-mini caption {
		padding: 5px;
		text-align: center;
		background-color: #0081CC;
	}
	#calendar-mini caption a {
		font-size: 18px;
		color: #FFF;
	}
	#calendar-mini caption a span {
		font-size: 11px;
		color: #FFF;
	}
	#calendar-mini tr {
		background-color: #FFF;
		border-right: 1px solid #0081CC;
		border-left: 1px solid #0081CC;
	}
	#calendar-mini th,
	#calendar-mini td {
		padding: 5px 2px;
		font-size: 12px;
		text-align: center;
	}
	#calendar-mini td.holiday {
		background-color: #FFF;
	}
	#calendar-mini td.reserved {
		background-color: #EEE;
	}
	#calendar-mini td.today {
		color: #FFF;
		background-color: #00A0E9;
		font-weight: bold;
	}
	#calendar-mini td a {
		font-weight: bold;
		text-decoration: underline;
	}

	/* カレンダー凡例 */
	div.sample {
		margin: 10px 0 10px 10px;
		font-size: 11px;
		text-align: center;
	}
	div.sample .today {
		padding: 2px 5px;
		font-weight: bold;
		color: #FFF;
		background-color: #00A0E9;
	}
	div.sample .reserved {
		padding: 2px 5px;
		background-color: #EEE;
	}
	div.sample .link {
		padding: 2px 5px;
		font-weight: bold;
		color: #004098;
		background-color: #EEE;
		text-decoration: underline;
	}


/****************************************
	モバイル用 > 下層ページ
*****************************************/
#page-title {
	margin: 0 -15px 20px; /* 左右断切り */
	padding: 15px;
	background-color: #004098;
}
#page-title h2 {
	margin: 0;
	font-size: 22px;
	color: #fff;
}
#page-title h3 {
	margin: 5px 0 0;
	text-transform: uppercase;
	font-size: 14px;
	font-family: 'Josefin Sans', sans-serif;
	color: #fff;
}

/* 投稿記事 */
.post {
	margin: 0;
	padding: 15px 0 15px;
	border-bottom: 1px dotted #dadada;
}
	.post:first-child {
		/*border-top: 1px dotted #dadada;*/
	}
	.post .eyecatch {
		text-align: center;
	}
	.post .right-align {
		clear: both;
		border-bottom: 	1px dotted #dadada;
		padding-bottom: 1.0em;
		margin-bottom: 2.0em;
	}
	.post p {
		margin-bottom: 0.8em;
	}
	.post h3 {
		margin: 0;
		padding: 10px 0;
	}
	.post h3 a {
		color: #000;
		font-weight: bold;
		font-size: 20px;
	}

/* 中ラベル */
.post h4 {
	margin: 40px -15px 20px;
	padding: 12px 15px 10px;
	font-size: 20px;
	border-top: 2px solid #004098;
	border-bottom: 1px dotted #CCC;
	background-color: #F8F8F8;
/*
	background: -webkit-linear-gradient(top, #fff 0%, #f0f0f0 100%);
	background: linear-gradient(to bottom, #fff 0%, #f0f0f0 100%);
	box-shadow: 0 -1px 0 rgba(255, 255, 255, 1) inset;
*/
}
	.post h4:first-of-type {
		margin-top: 0px;
	}

/* 小ラベル */
.post h5 {
	margin: 30px 2px 10px;
	padding: 0px 8px;
	border-left: 4px solid #004098;
	font-size: 15px;
	font-weight: bold;
}
.post time {
	color: #666;
	font-size: 12px;
}
.post .footnote {
	margin-top: 4px;
	color: #666;
	font-size: 12px;
}

/* ページャ */
.post-navi {
	clear: both;
	overflow: hidden;
		background-color: #eee;
}
	#prev {
		float: right;
		width: 50%;
	}
	#prev a {
		display: block;
		float: right;
		padding: 20px;
		width: 270px;
		text-align: right;
	}
	#prev a:hover {
		background-color: #ccc;
	}
	#next {
		float: left;
		width: 50%;
	}
	#next a {
		display: block;
		float: left;
		padding: 20px;
		width: 270px;
		text-align: left;
	}
	#next a:hover {
		background-color: #ccc;
	}
/*記事内のリスト*/
.post dl dd {
		position: relative;
		padding: 0.2em 1.2em;
		
}
.post dl dd::after {
	display: block;
	content: '';
	position: absolute;
	top: 0.7em;
	left:  0em;
	width: 8px;
	height: 3px;
	border-left: 2px solid #004098;
	border-bottom: 2px solid #004098;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.post div.thumbnail_list {
	margin: 20px 0;
	padding: 10px 5px;
	width: 610px;
	text-align: center;
	/*background-color: #F8F8F8;*/
	overflow: hidden;
}

/* 画像の左寄せ・右寄せ */
.post img.img-left {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
	vertical-align: top;
}
.post img.img-right {
	float: right;
	margin-left: 20px;
	margin-bottom: 20px;
	vertical-align: top;
}

/* お客様の声と改善 */
.tiles {
  display: inline;
  float: right;
  margin-right: 0px;
  margin-left: 0px;
  width: 20px;
}


/****************************************
	モバイル用 > サイドナビゲーション
*****************************************/
#side-navi {
	display: none;
}


/****************************************
	モバイル用 > アイコン
*****************************************/

/* ジャンルアイコン共通 */
.icon-marinewave a,
.icon-seamax a,
.icon-common a,
.icon-type a {
	margin-right: 4px;
	padding: 4px 6px;
	color: #FFF;
	font-size: 11px;
	border-radius: 3px;
}
.icon-marinewave a:hover,
.icon-seamax a:hover,
.icon-common a:hover,
.icon-type a:hover {
	color: #FFF;
	text-decoration: underline;

}
/* マリンウェーブアイコン */
.icon-marinewave a {
	background-color: #8EC31F;
}
/* シーマックスアイコン */
.icon-seamax a {
	background-color: #00A0E9;
}
/* 共通アイコン */
.icon-common a {
	background-color: #FF8000;
}
/* タイプアイコン */
.icon-type a {
	background-color: #E65091;
}
/* 必須アイコン */
.icon-must {
	margin-left: 5px;
	padding: 2px 5px;
	font-size: 12px;
	color: #FFFFFF;
	background-color: #DC3636;
	border: 1px solid #DC3636;
	border-radius: 3px;
}


/****************************************
	モバイル用 > お問合せフォーム
*****************************************/
#contact select,
#contact textarea.contents,
#contact input[type="text"] {
	padding: 10px;
	margin: 0;
	font-size: 1.2em;
	border: 1px solid #ccc;
	/* 角丸 */
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	/* シャドウ */
	-moz-box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
	-webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
	box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
}
#contact select:focus,
#contact textarea:focus,
#contact input[type="text"]:focus {
	box-shadow: 0 0 7px #80D5FF;
	border: 1px solid #80D5FF;
}
/* テキスト入力ボックス */
#contact textarea.contents {
	width: 100%;
	height: 100px;
	resize: vertical;
}
#contact input.short {
	width: 140px;
}
#contact input.middle {
	width: 300px;
}
#contact input.long {
	width: 360px;
}

/* ラジオボタン */
#contact input[type="radio"] {
	display: none;
}
	label.radio {
		position: relative;
		display: inline-block;
		padding: 3px 3px 3px 20px;
		cursor: pointer;
	}
	label.radio::before,
	label.radio::after {
		position: absolute;
		content: '';
		top: 45%;
		border-radius: 100%;
		-webkit-transition: all .2s;
		transition: all .2s;
	}
	label.radio::before {
		left: 0;
		width: 14px;
		height: 14px;
		margin-top: -8px;
		background: #f3f3f3;
		border: 1px solid #ccc;
	}
	label.radio:hover::before {
		background: #fff;
	}
	label.radio::after {
		opacity: 0;
		left: 3px;
		width: 8px;
		height: 8px;
		margin-top: -5px;
		background: #3498db;
		-webkit-transform: scale(2);
		transform: scale(2);
	}
	input[type="radio"]:checked + label.radio::before {
		background: #fff;
		border: 1px solid #3498db;
	}
	input[type="radio"]:checked + label.radio::after {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
#contact .submit {
	text-align : center ;
}
#contact input[type="submit"] {
	padding: 20px 80px;
	margin: 50px auto;
	font-size: 1.2em;
	font-weight: bold;
	color: #FFF;
	border: 1px solid #ccc;
	background-color: #00A0E9;
	/* 角丸 */
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	cursor: pointer;
}
#contact input[type="submit"]:hover {
	background-color: #004098;
}

/* ホールカレンダー */
#calendar select {
	padding: 10px;
	margin: 0 0 10px;
	font-size: 1.2em;
	border: 1px solid #ccc;
	/* 角丸 */
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	/* シャドウ */
	-moz-box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
	-webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
	box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
}
#calendar select:focus {
	box-shadow: 0 0 7px #80D5FF;
	border: 1px solid #80D5FF;
}


/* END モバイル用 */	


/****************************************
*****************************************

	PC用
		- ヘッダー
		- メインナビゲーション
		- パンくずリスト
		- フッター
		- トップページ
		- 下層ページ
		- サイドナビゲーション
		- アイコン
		- お問合せフォーム

*****************************************
*****************************************/
@media (min-width: 768px) {

/****************************************
	PC用 > ヘッダー
*****************************************/
/*説明文*/
#description {
	display: block;
	margin-top: 10px;
	font-size: 12px;
}

/* 検索フォーム */
#searchform {
	display: block;
	float: right;
	width: 177px;
	height: 24px;
	background: url(images/search-form.jpg) no-repeat 0 0;
}
	#s {
		margin-left: 10px;
		width: 140px;
		height: 90%;
		border: 0 none;
		background: none;
		font-size: 12px;
	}
	#searchsubmit {
		position: absolute;
		right: 0;
		width: 24px;
		height: 24px;
		border: 0 none;
		background: none;
		cursor: pointer;
		overflow: hidden;
		text-indent: 100%;
		white-space: nowrap;
	}

/* サブナビゲーション */
#sub-navi {
	display: block;
	margin: 20px 0;
}
	#sub-navi ul li {
		float: right;
		margin-left: 10px;
	}
	#sub-navi ul li a {
		position: relative;
		padding-right: 18px;
		color: #004098;
	}
	#sub-navi ul li a:hover {
		color: #00A0E9;
	}
	#sub-navi ul li a::after,
	#sub-navi ul li a::before {
		position: absolute;
		display: block;
		content: '';
	}
	#sub-navi ul li a::after {
		top: 0.1em;
		right: 0em;
		width: 15px;
		height: 15px;
		background-color: #004098;
		border-radius: 100%;
	}
	#sub-navi ul li a::before {
		z-index: 1;
		top: 0.4em;
		right: 0.45em;
		width: 5px;
		height: 5px;
		border-right: 1px solid #fff;
		border-bottom: 1px solid #fff;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	#sub-navi ul li a:hover::after {
		background-color: #00A0E9;
	}

/* トグルボタン */
#naviToggle {
	display: none;
}


/****************************************
	PC用 > メインナビゲーション
*****************************************/
#main-navi {
	display: none;
}

#pc-main-navi {
	display: block;
	margin-bottom: 10px;
}
	#pc-main-navi a {
		float: left;
		padding: 15px 0;
		color: #000;
		font-size: 13px;
		font-weight: bold;
		text-align: center;
		text-decoration: none;
		border-right: 1px dotted #ccc;
	}
	#pc-main-navi li.first a {
		border-left: 1px dotted #ccc;
	}
	#pc-main-navi a:hover {
		color: #fff;
		background-color: #00A0E9;
	}
	#pc-main-navi a:hover span {
		color: #fff;
	}
	#pc-main-navi span {
		display: block;
		color: #004098;
		font-size: 11px;
		font-weight: bold;
		font-family: 'Josefin Sans', sans-serif;
		text-align: center;
		text-transform: uppercase;
	}
	#pc-main-navi .sub-menu li a {
		display: none;
	}


/****************************************
	PC用 > パンくずリスト
*****************************************/
#breadcrumb {
	margin: 0;
	padding: 5px 0;
	border-top: none;
}

	
/****************************************
	PC用 > フッター
*****************************************/
/* ナビゲーションバー */
.footer-bar {
	margin: 50px 0 0;
}

/* フッターメニュー */
.footer-menu ul {
	margin: 15px 0;
}
	.footer-menu ul li {
		border: none;
		background-color: #fff;
	}
	.footer-menu ul li a {
		padding: 5px 20px;
	}
	.footer-menu ul li a:hover {
		color: #00A0E9;
		background-color: #fff;
	}
/* 運営団体情報 */
.footer-orginfo {
	margin: 0;
	padding: 30px 20px;
	border-top: 1px solid #ccc;
}
/* コピーライト情報 */
.footer-copyright {
	margin: 0;
	padding: 30px 0;
}


/****************************************
	PC用 > 下層ページ
*****************************************/
#page-title {
	margin: 0 0 20px;
	padding: 25px 15px;
/*	background-color: #F8F8F8;
	border-top: 1px dotted #ccc;
	border-bottom: 1px dotted #ccc;
*/}
#page-title h2 {
	display: inline-block;
	margin: 0;
	font-size: 26px;
/*	color: #000;*/
}
#page-title h3 {
	display: inline-block;
	margin: 5px 0 0 10px;
	text-transform: uppercase;
	font-size: 14px;
	font-family: 'Josefin Sans', sans-serif;
/*	color: #004098;*/
}

/* 中ラベル */
.post h4 {
	margin: 40px 0 20px;
}


/****************************************
	PC用 > サイドナビゲーション
*****************************************/
#side-navi {
	display: block;
	overflow: hidden;
	margin: 0 0 5px;
	padding: 3px 3px 0;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #CCC;
}
#side-navi .hgroup {
	display: none;
}
#side-navi .hgroup:hover {
	background: #004BB3;
}
#side-navi h2 a {
	padding: 20px 15px 0;
	display: block;
	color: #fff;
	font-size: 17px;
	line-height: 18px;
	text-decoration: none;
}
#side-navi h3 a {
	padding: 0 15px 20px;
	display: block;
	color: #00A0E9;
	text-transform: uppercase;
	font-family: 'Josefin Sans', sans-serif;
	text-decoration: none;
}
/*サイドナビリンク部分*/
.sidebar-navi {
	margin-bottom: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #FFFFFF;
}
.sidebar-navi ul,
.sidebar-navi li {
	margin: 0;
	padding: 0;
	list-style: none;
	list-style-image: none;
}
.sidebar-navi li {
}
.sidebar-navi a {
	border-top: 1px dotted #dadada;
	display: block;
	padding: 10px 10px 10px 15px;
	font-size: 13px;
	text-decoration: none;
	cursor: pointer;
}
.sidebar-navi li.cat-item:first-child a {
	border-top: none;
}
.sidebar-navi a:hover {
	background: #F8F8F8;
	text-decoration: underline;
}
.sidebar-navi a.header {
	border-top: none;
	padding: 15px 10px;
	background: #0081CC;
	color: #FFFFFF;
	text-decoration: none;
	cursor: text;
}
.sidebar-navi li.current-cat a {
	background: #F8F8F8;
	color: #004098;
	font-weight: bold;
}
.sidebar-navi li.current-cat a:hover {
	background: #F8F8F8;
	text-decoration: none;
	cursor: text;
}

		.blog-category .cat-item a:hover {
			background: #fbfbf3;
		}


} /* END PC用 */	