@charset "utf-8";

/* ==========================================================================
 
 -----------------------------------------
	INDEX
 -----------------------------------------

	--------------------
	サブページ共通内容の設定
	--------------------
	1.サブページ　共通設定
	2.固定ページ　共通設定
	3.投稿ページ　共通設定


	--------------------
	各個別ページ独自の設定
	--------------------
	1.aboutページ　本文設定部分
	3.otherpage設定部分


	--------------------
		各サイドバー設定
	--------------------

	1.サブページ【 共通 】サイドメニュー設定
	2.シングルページ【 single.php/category.php/date.php 】サイドメニュー設定		
	3.個別ページ【 page-〇〇.php 】サイドメニュー設定
	4.メディアクエリ設定

========================================================================== */


/************************************************************************************************************************
サブページ共通設定
*************************************************************************************************************************/
body{
	background-color: #fcfbf9;
}

/* メニューをfixedさせた分だけ、下にずらすため */
#contents{
	padding-top:180px;
	padding-bottom:50px;
}


/*パンくずリスト*/
/*Bootstrapのデフォルトbreadcrumb設定を上書き*/
.breadcrumb{
	position:relative;
	/*top:20px;*/
	
	width:100%;
	/*height:20px;*/
	padding: 0.5rem 1rem;

	margin-top:15px;
	margin-bottom:15px;
	
	font-size:8px;	font-size:0.8rem;
	font-weight:500;
	
	background-color: transparent;
	/*color:#FFF;*/
}
.breadcrumb-item i{
	margin-right:5px;
}


/* サブコンテンツのカード全般 */
.card{
	margin-bottom: 20px;
	overflow:hidden;
}



/* > lg(992)の場合*/
@media screen and (max-width: 991px) {
}

/* md(768) < の場合*/
@media screen and (min-width: 768px) {
}

/* > md(768)の場合*/
@media screen and (max-width: 767px) {
	/* メニューをfixedさせた分だけ、下にずらすため */
	#contents{
		padding-top:150px;
		padding-bottom:30px;
	}
}





/* レスポンシブルテーブル */

table.resptable{ 
	width: 100%;
	border-collapse: collapse;
}

.resptable th {
	padding: 15px 5px;
	background: #344465;
	color: #fff; 
	font-weight: bold;
	text-align: center;
}

.resptable tr{
	background: #eee;
}.resptable tr:nth-of-type(odd) {
	background: #ddd;
}

.resptable td{
	padding: 15px 5px !important;
	/*padding: 0 !important;*/

	border: 3px solid #fff;
	text-align: center;
	/*line-height: 3.0;*/
}

.resptable td a{
	/*display: block;*/
	/*padding: 10px 5px;*/
	/*height: 100%;*/
	/*width: 100%;*/
	/*line-height: 3.0;*/
	/*color: #344465;*/
	color: #0F7FFE;
}

.resptable td a i{
	margin-right: 3px;
}
.resptable td a:hover{
	color: #66CCFE;
}


/* > md(768)の場合*/
@media screen and (max-width: 767px) {
	.resptable tr{
		background: #eee;
	}.resptable tr:nth-of-type(odd) {
		background: #eee;
	}

	.resptable tr{
		display: block;
	}
	.resptable th{
		display: list-item !important;
		list-style: none !important;
		/*border: none !important;*/
		border: 2px solid #fff;
		text-align: left !important;
		padding: 15px 20px !important; 
	}
	.resptable td{
		display: list-item !important;
		list-style: none !important;
		/*border: none !important;*/
		border: 2px solid #fff;
		text-align: left !important;
		padding: 10px 25px !important; 
	}
}
/* END レスポンシブルテーブル */










/************************************************************************************************************************
国際交流ページ設定
*************************************************************************************************************************/

/* 部活　タイトル設定 */
#internationalexchange .pageentry .subtitle{
	display:flex;

	/*上下の配置方法*/
	align-items:center;

	margin:10px 0px 10px 0px;
	padding:5px 0 5px 15px;
	
	font-weight:500;
	/*text-indent:15px;*/
	letter-spacing:2px;
	
	border-left:solid 3px;
}


#internationalexchange .pageentry .subtitle1{
	position: relative;
	padding:18px 10px 18px 18px;
  color: #fff;
  border-radius: 10px;
  background: #314566;
	margin-bottom: 20px;
}
#internationalexchange .pageentry .subtitle1::after {
	position: absolute;
  bottom: -9px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #314566 transparent transparent transparent;
}


#internationalexchange .pageentry .subtitle2{
	position: relative;
  display: inline-block;
  height: 64px;
  margin-left: 30px;
	padding:10px 10px 10px 10px;
  color: #fff;
  background: #314566;
}
#internationalexchange .pageentry .subtitle2::before {
	position: absolute;
  top: 0;
  left: -30px;
  content: '';
  border-width: 32px 30px 32px 0;
  border-style: solid;
  border-color: transparent #314566 transparent transparent;
}

#internationalexchange .pageentry .subtitle2::after {
  position: absolute;
  top: calc(50% - 7px);
  left: -10px;
  width: 14px;
  height: 14px;
  content: '';
  border-radius: 50%;
  background: #fff;
}




/* 部活　写真イメージの設定 */
#internationalexchange .photoarea{
	/* display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	align-content: flex-start; */


	padding: 5px;
	display: grid;
	grid-template-columns: repeat(auto-fit, 150px);
	grid-auto-rows: 150px;
	grid-gap: 10px;
	justify-content: center;
}
#internationalexchange .photoarea a{
	/* padding: 5px; */
}

/* > lg(992)の場合*/
@media screen and (max-width: 991px) {
}
/* > md(768)の場合*/
@media screen and (max-width: 767px) {
	#internationalexchange .photoarea{
		padding: 5px;
		display: grid;
		grid-template-columns: repeat(auto-fit, 120px);
		grid-auto-rows: 120px;
		grid-gap: 5px;
		justify-content: center;
	}
}
/* > sm(576)の場合*/
@media screen and (max-width: 575px) {
	#internationalexchange .photoarea{
		padding: 0px;
		display: grid;
		grid-template-columns: repeat(auto-fit, 90px);
		grid-auto-rows: 90px;
		grid-gap: 3px;
		justify-content: center;
	}
}





/* ショートカットボタンの設定*/
#internationalexchange .pageentry .shortcutbtn{
	padding: 0px 20px;
}#internationalexchange .pageentry .shortcutbtn div{
	padding: 5px 3px;
}
#internationalexchange .pageentry .shortcutbtn a{
	display: block;
	text-align: left;
	padding: 10px 10px;
	/* margin: 10px 5px; */
	border-radius: 5px;
}



/* 那賀カラーのアウトラインボタン */
#internationalexchange .pageentry .btn-outline-nagacolor{
	color: #314566;
	border-color: #314566;
}
#internationalexchange .pageentry .btn-outline-nagacolor:hover{
	color: #fff;
	background-color: #314566;
}


/* 記事一覧 */
#internationalexchange #koteipagepostlist{
	position: relative;
	background-color: #fcfbf9;
	/* min-height: 500px; */
	padding-top: 10px;
	padding-bottom: 50px;
	overflow: hidden;
}
#internationalexchange #koteipagepostlist.report{
	/*min-height: 500px;*/
	overflow: auto;
	text-align: left;
}
#internationalexchange #koteipagepostlist.report ul{
	padding: 0;
	margin: 0;
	-ms-text-overflow: hidden;
	    text-overflow: hidden;
}
#internationalexchange #koteipagepostlist.report li{
	position:relative;
	height:auto;
	margin: 0;
}
#internationalexchange #koteipagepostlist.report li:not(:last-child){
	/* border-bottom:#ddd dotted 1px;	 */
	border-bottom:#ccc dotted 1px;	
}
/*aタグを親タグであるliタグと同じ大きさにする*/
#internationalexchange #koteipagepostlist.report ul li a.item{
	display: block;
	width:100%;
	text-decoration: none;
	padding-top:20px;
	padding-bottom:20px;
	color:#666;
}
/* 特殊対応：aタグの中にrowを入れているので選択範囲が広がるのを防ぐ */
#internationalexchange #koteipagepostlist.report ul li a.item .row{
	padding: 0;
	margin: 0;
}
#internationalexchange #koteipagepostlist.report li a:hover{
	/* background: #f3f3f3; */
	background: #eeeeee;
}


/*日付*/
#internationalexchange #koteipagepostlist.report .date{
	position:relative;
	line-height:2;
	
	padding-left:10px;
	padding-right:0px;
	padding-bottom: 5px;
}

/*NEW*/
#internationalexchange #koteipagepostlist.report .date .badge{
	margin-right:5px;
	padding: 5px;
}


/*カテゴリ　現状はカテゴリ表示しない*/
#internationalexchange #koteipagepostlist.report .category{
	margin-left: 20px;
}
#internationalexchange #koteipagepostlist.report .category .badge{/*aタグ内のテキスト*/
	padding: 5px;
}
#internationalexchange #koteipagepostlist.report .category .badge:hover{
	background-color:#999;
}

/* #internationalexchange #koteipagepostlist.report .category .badge-primary{
	background-color: #ffa100;
}
#internationalexchange #koteipagepostlist.report .category .badge-success{
	background-color: #95ed7b;
}
#internationalexchange #koteipagepostlist.report .category .badge-danger{
	background-color: #fd96ff;
}
#internationalexchange #koteipagepostlist.report .category .badge-info{
	background-color: #96d5ff;
}
#internationalexchange #koteipagepostlist.report .category .badge-light{
	background-color: #0F7FFE;
	color:#fff;
}
#internationalexchange #koteipagepostlist.report .category .badge-dark{
	background-color: #929000;
	color:#fff;
} */



/*タイトル*/
#internationalexchange #koteipagepostlist.report .newstitle{
	position:relative;
	line-height:1.5;
	
	padding-top:5px;	
	padding-left:10px;
	padding-right:10px;
	color:#666;
}

/*続きを見る*/
#internationalexchange #koteipagepostlist.report .viewbadge{
	display:-webkit-flex;
	display:flex;
	
	/*上下の配置方法*/
	-webkit-align-items:flex-end;
	align-items:flex-end;
		
	/*左右の配置方法*/
	-webkit-justify-content:flex-end; /* Safari */
	justify-content:flex-end;

	padding-left:5px;
	padding-right:5px;
	padding-top: 5px;	
}
#internationalexchange #koteipagepostlist.report .viewbadge .badge{
	padding: 5px;
	font-size:7px;font-size:0.7rem;
	font-weight: 400;
	background-color:#ccc;
}




/* > lg(992)の場合*/
@media screen and (max-width: 991px) {
	#internationalexchange #koteipagepostlist.report ul li a.item{
		padding-top:15px;
		padding-bottom:15px;
	}
}

/* md(768) < の場合*/
@media screen and (min-width: 768px) {
}

/* > md(768)の場合*/
@media screen and (max-width: 767px) {
	#internationalexchange #koteipagepostlist.report ul li a.item{
		padding-top:10px;
		padding-bottom:10px;
	}
}

/* > sm(576)の場合*/
@media screen and (max-width: 575px) {
	#internationalexchange #koteipagepostlist.report{
		padding:10px;
	}
}




















/************************************************************************************************************************
部活ページ 部活詳細ページ設定
*************************************************************************************************************************/

/* 部活　タイトル設定 */
#clubdetail .pageentry .subtitle{
	display:flex;

	/*上下の配置方法*/
	align-items:center;

	margin:10px 0px 10px 0px;
	padding:5px 0 5px 15px;
	
	font-weight:500;
	/*text-indent:15px;*/
	letter-spacing:2px;
	
	border-left:solid 3px;
}


#clubdetail .pageentry .subtitle1{
	position: relative;
	padding:18px 10px 18px 18px;
  color: #fff;
  border-radius: 10px;
  background: #314566;
	margin-bottom: 20px;
}
#clubdetail .pageentry .subtitle1::after {
	position: absolute;
  bottom: -9px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #314566 transparent transparent transparent;
}


#clubdetail .pageentry .subtitle2{
	position: relative;
  display: inline-block;
  height: 64px;
  margin-left: 30px;
	padding:10px 10px 10px 10px;
  color: #fff;
  background: #314566;
}
#clubdetail .pageentry .subtitle2::before {
	position: absolute;
  top: 0;
  left: -30px;
  content: '';
  border-width: 32px 30px 32px 0;
  border-style: solid;
  border-color: transparent #314566 transparent transparent;
}

#clubdetail .pageentry .subtitle2::after {
  position: absolute;
  top: calc(50% - 7px);
  left: -10px;
  width: 14px;
  height: 14px;
  content: '';
  border-radius: 50%;
  background: #fff;
}



/* 部活　きいちゃんイメージ */
#bukatsuimg img{
	position: sticky;
	padding:10px 50px 10px 50px;
	top:80px;
}


/* > lg(992)の場合*/
@media screen and (max-width: 991px) {
	#bukatsuimg img{
		position: sticky;
		padding:10px 30px 10px 30px;
		top:100px;
	}
}

/* md(768) < の場合*/
@media screen and (min-width: 768px) {
}

/* > md(768)の場合*/
@media screen and (max-width: 767px) {
}

/* > sm(576)の場合*/
@media screen and (max-width: 575px) {
}


/* 部活　写真イメージの設定 */
#clubdetail .photoarea{
	/* display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	align-content: flex-start; */


	padding: 5px;
	display: grid;
	grid-template-columns: repeat(auto-fit, 150px);
	grid-auto-rows: 150px;
	grid-gap: 10px;
	justify-content: center;
}
#clubdetail .photoarea a{
	/* padding: 5px; */
}

/* > lg(992)の場合*/
@media screen and (max-width: 991px) {
}
/* > md(768)の場合*/
@media screen and (max-width: 767px) {
	#clubdetail .photoarea{
		padding: 5px;
		display: grid;
		grid-template-columns: repeat(auto-fit, 120px);
		grid-auto-rows: 120px;
		grid-gap: 5px;
		justify-content: center;
	}
}
/* > sm(576)の場合*/
@media screen and (max-width: 575px) {
	#clubdetail .photoarea{
		padding: 0px;
		display: grid;
		grid-template-columns: repeat(auto-fit, 90px);
		grid-auto-rows: 90px;
		grid-gap: 3px;
		justify-content: center;
	}
}




/* ショートカットボタンの設定*/
#clubdetail .pageentry .shortcutbtn{
	padding: 0px 20px;
}#clubdetail .pageentry .shortcutbtn div{
	padding: 5px 3px;
}
#clubdetail .pageentry .shortcutbtn a{
	display: block;
	text-align: left;
	padding: 10px 10px;
	/* margin: 10px 5px; */
	border-radius: 5px;
}



/* 那賀カラーのアウトラインボタン */
#clubdetail .pageentry .btn-outline-nagacolor{
	color: #314566;
	border-color: #314566;
}
#clubdetail .pageentry .btn-outline-nagacolor:hover{
	color: #fff;
	background-color: #314566;
}


/* 記事一覧 */
#bukatsupostlist{
	position: relative;
	background-color: #fcfbf9;
	/* min-height: 500px; */
	padding-top: 10px;
	padding-bottom: 50px;
	overflow: hidden;
}
#bukatsupostlist.report{
	/*min-height: 500px;*/
	overflow: auto;
	text-align: left;
}
#bukatsupostlist.report ul{
	padding: 0;
	margin: 0;
	-ms-text-overflow: hidden;
	    text-overflow: hidden;
}
#bukatsupostlist.report li{
	position:relative;
	height:auto;
	margin: 0;
}
#bukatsupostlist.report li:not(:last-child){
	/* border-bottom:#ddd dotted 1px;	 */
	border-bottom:#ccc dotted 1px;	
}
/*aタグを親タグであるliタグと同じ大きさにする*/
#bukatsupostlist.report ul li a.item{
	display: block;
	width:100%;
	text-decoration: none;
	padding-top:20px;
	padding-bottom:20px;
	color:#666;
}
/* 特殊対応：aタグの中にrowを入れているので選択範囲が広がるのを防ぐ */
#bukatsupostlist.report ul li a.item .row{
	padding: 0;
	margin: 0;
}
#bukatsupostlist.report li a:hover{
	/* background: #f3f3f3; */
	background: #eeeeee;
}


/*日付*/
#bukatsupostlist.report .date{
	position:relative;
	line-height:2;
	
	padding-left:10px;
	padding-right:0px;
	padding-bottom: 5px;
}

/*NEW*/
#bukatsupostlist.report .date .badge{
	margin-right:5px;
	padding: 5px;
}


/*カテゴリ　現状はカテゴリ表示しない*/
#bukatsupostlist.report .category{
	margin-left: 20px;
}
#bukatsupostlist.report .category .badge{/*aタグ内のテキスト*/
	padding: 5px;
}
#bukatsupostlist.report .category .badge:hover{
	background-color:#999;
}

/* #bukatsupostlist.report .category .badge-primary{
	background-color: #ffa100;
}
#bukatsupostlist.report .category .badge-success{
	background-color: #95ed7b;
}
#bukatsupostlist.report .category .badge-danger{
	background-color: #fd96ff;
}
#bukatsupostlist.report .category .badge-info{
	background-color: #96d5ff;
}
#bukatsupostlist.report .category .badge-light{
	background-color: #0F7FFE;
	color:#fff;
}
#bukatsupostlist.report .category .badge-dark{
	background-color: #929000;
	color:#fff;
} */



/*タイトル*/
#bukatsupostlist.report .newstitle{
	position:relative;
	line-height:1.5;
	
	padding-top:5px;	
	padding-left:10px;
	padding-right:10px;
	color:#666;
}

/*続きを見る*/
#bukatsupostlist.report .viewbadge{
	display:-webkit-flex;
	display:flex;
	
	/*上下の配置方法*/
	-webkit-align-items:flex-end;
	align-items:flex-end;
		
	/*左右の配置方法*/
	-webkit-justify-content:flex-end; /* Safari */
	justify-content:flex-end;

	padding-left:5px;
	padding-right:5px;
	padding-top: 5px;	
}
#bukatsupostlist.report .viewbadge .badge{
	padding: 5px;
	font-size:7px;font-size:0.7rem;
	font-weight: 400;
	background-color:#ccc;
}




/* > lg(992)の場合*/
@media screen and (max-width: 991px) {
	#bukatsupostlist.report ul li a.item{
		padding-top:15px;
		padding-bottom:15px;
	}
}

/* md(768) < の場合*/
@media screen and (min-width: 768px) {
}

/* > md(768)の場合*/
@media screen and (max-width: 767px) {
	#bukatsupostlist.report ul li a.item{
		padding-top:10px;
		padding-bottom:10px;
	}
}

/* > sm(576)の場合*/
@media screen and (max-width: 575px) {
	#bukatsupostlist.report{
		padding:10px;
	}
}






/* レスポンシブルテーブル 部活動背景用*/

table.clubtable{ 
	width: 100%;
	border-collapse: collapse;
}

.clubtable th {
	padding: 15px 5px;
	background: #344465;
	color: #fff; 
	font-weight: bold;
	text-align: center;
}

.clubtable tr{
	background: #eee;
}.clubtable tr:nth-of-type(odd) {
	background: #ddd;
}

/* 部活固定ページだけ */
#club .clubtable td{
	position: relative;
	/*padding: 15px 5px !important;*/
	padding: 0 !important;

	width:25%;
	border: 3px solid #fff;
	text-align: center;
	/*line-height: 3.0;*/
}

/* 部活詳細固定ページだけ */
#clubdetail .clubtable td{
	position: relative;
	/*padding: 15px 5px !important;*/
	padding: 0 !important;

	width:20%;
	border: 3px solid #fff;
	text-align: center;
	/*line-height: 3.0;*/
}

/*widthが変わっても縦横比を維持するための策*/
.clubtable td:before{
	padding-top: 75%;
	display: block;
	content: "";
}
.clubtable td a{
	display: block;
	width:100%;
	height:100%;
	position: absolute;
	top:0;
	left: 0;
}

/*width標準サイズ時のみaタグ文字を消すため medeaクエリで元に戻す*/
.clubtable td a{
	text-indent: 100%;
	white-space:nowrap;
	overflow: hidden;
}

/*クラブ紹介のアニメーション用 transition*/
.clubtable .clubback{
	background-position: 0 0;
	transition: background-position 300ms 0s ease-in;
}
.clubtable .clubback:hover{
	background-position: 0 100%;
}

/*クラブ紹介のアニメーション用 keyframe*/
/*.clubtable .clubback:hover{
	animation-name: cbmove;
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction:normal;
    animation-fill-mode:both;
}
@keyframes cbmove{
	0%{
		background-position: 0 0;
	}
	100%{
		background-position: 0 100%;
	}
}
*/


.clubtable .kendo{
	background-image:url("../../images/club/kendo.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .judo{
	background-image:url("../../images/club/judo.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .karatedo{
	background-image:url("../../images/club/karatedo.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .basketball{
	background-image:url("../../images/club/basketball.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .rikujo{
	background-image:url("../../images/club/rikujo.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .takkyu{
	background-image:url("../../images/club/takkyu.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .badminton{
	background-image:url("../../images/club/badminton.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .baseball{
	background-image:url("../../images/club/baseball.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .handball{
	background-image:url("../../images/club/handball.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .volleyball{
	background-image:url("../../images/club/volleyball.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .softtennis{
	background-image:url("../../images/club/softtennis.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .soccer{
	background-image:url("../../images/club/soccer.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .rugby{
	background-image:url("../../images/club/rugby.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .swimming{
	background-image:url("../../images/club/swimming.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .weightlifting{
	background-image:url("../../images/club/weightlifting.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}



/*文化クラブ*/

.clubtable .sado{
	background-image:url("../../images/club/sado.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .kagaku{
	background-image:url("../../images/club/kagaku.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .volunteer{
	background-image:url("../../images/club/volunteer.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .suisogaku{
	background-image:url("../../images/club/suisogaku.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .hoso{
	background-image:url("../../images/club/hoso.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .english{
	background-image:url("../../images/club/english.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .katei{
	background-image:url("../../images/club/katei.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .bijutu{
	background-image:url("../../images/club/bijutu.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .shodo{
	background-image:url("../../images/club/shodo.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .sosaku{
	background-image:url("../../images/club/sosaku.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .engeki{
	background-image:url("../../images/club/engeki.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .photograph{
	background-image:url("../../images/club/photograph.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .shogi{
	background-image:url("../../images/club/shogi.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .shakai{
	background-image:url("../../images/club/shakai.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .kado{
	background-image:url("../../images/club/kado.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .joho{
	background-image:url("../../images/club/joho.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .koto{
	background-image:url("../../images/club/koto.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}
.clubtable .tosho{
	background-image:url("../../images/club/tosho.png");
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	background-size:cover;
	background-position: 0 0;
	cursor:pointer;
}




/* > md(768)の場合*/
@media screen and (max-width: 767px) {
	.clubtable tr{
		background: #eee;
	}.clubtable tr:nth-of-type(odd) {
		background: #eee;
	}

	.clubtable tr{
		display: block;
	}
	.clubtable th{
		display: list-item !important;
		list-style: none !important;
		/*border: none !important;*/
		border: 2px solid #fff;
		text-align: left !important;
		padding: 15px 20px !important; 
	}


	#club .clubtable td{
		display: list-item !important;
		list-style: none !important;
		
		width:100%;
		height:100%;
		background-image: none !important;

		/*border: none !important;*/
		border: 2px solid #fff;
		text-align: left !important;
		padding: 10px 25px !important; 
	}
	#club .clubtable td:before{
		padding-top: 0;
		display: block;
		content: "";
	}

	#clubdetail .clubtable td{
		display: list-item !important;
		list-style: none !important;
		
		width:100%;
		height:100%;
		background-image: none !important;

		/*border: none !important;*/
		border: 2px solid #fff;
		text-align: left !important;
		padding: 10px 25px !important; 
	}
	#clubdetail .clubtable td:before{
		padding-top: 0;
		display: block;
		content: "";
	}

	.clubtable td a{
		display: block;
		width:100%;
		height:100%;
		position: relative;
		top:0;
		left: 0;
	}

	/*width標準サイズ時のみaタグ文字を消すため medeaクエリで元に戻す*/
	.clubtable td a{
		text-indent: 0%;
		white-space: normal;
		overflow-wrap: normal;
	}
}
/* END レスポンシブルテーブル */







/************************************************************************************************************************
学校情報ページ設定
*************************************************************************************************************************/


/* 学校情報のテーブル ここから　*/

#schoolguide table.schooltable{ 
	width: 100%;
	border-collapse: collapse;
	border: solid 2px #666;
}

#schoolguide .schooltable th {
	padding: 15px 5px;
	font-weight: bold;
	text-align: center;
	border: solid 0.5px #999999;
}

#schoolguide .schooltable td{
	position: relative;
	padding: 0;
	text-align: center;
	border: solid 0.5px #999999;
}
/* 
.schooltable .gakka{
	display:block;
} */


/* > md(768)の場合*/
@media screen and (max-width: 767px) {

	#schoolguide table.schooltable{ 
		width: 100%;
		border-collapse: collapse;
		border: solid 2px #666;
	}
	
	#schoolguide .schooltable thead{
		display: none;
	}
	#schoolguide .schooltable tfoot{
		display: none;
	}



	#schoolguide .schooltable tr{
		/* display: block; */
		width: 100%;
		/* display: flex; */
	}
	#schoolguide .schooltable th {
		display: block;
		background: #314566;
		color: #fff;
		font-size:12px;	font-size:1.2rem;
		font-weight: bold;
		text-align: center;
	}
	#schoolguide .schooltable .gakka{
		display: block;
		/* background: #314566; */
		/* color: #fff; */
		font-size:11px;	font-size:1.1rem;
		font-weight: bold;
		text-align: center;
		/* padding:15px 0 !important; */
	}
	#schoolguide .schooltable .non{
		display:none ;
	}

	#schoolguide .schooltable td{
		display:block;
		width: 100%;		
		border: solid 0.3px #999999 !important;

		text-align: right;
		line-height:4;
		font-weight: bold;
		padding: 0 !important;
		padding-right: 20px !important;
	}
	#schoolguide .schooltable td::before{
		content:attr(data-label);
		float:left;
		text-align: left;
		font-weight: bold;
		margin-right: 20px;
		padding-left: 20px;
		background-color: #ccc;

		width: 50%;
	}


}


/* 学校情報のテーブル ここまで　*/



/************************************************************************************************************************
固定ページ共通設定
*************************************************************************************************************************/

/*===============　ページタイトル　===============*/
.pagetitle{
	position:relative;
	width:auto;
	display:block;
	border-left:solid 8px #314566;

	color:#314566;
	font-size:16px;font-size:1.6rem;
	font-weight:500;

	letter-spacing:2px;
	/*line-height:1.5;*/
	text-align:left;

	padding-left:15px;
	margin-left:10px;
	margin-top:10px;
	margin-bottom:20px;
}

/*===============　ページ内容　===============*/
.pageentry{
	position:relative;
	width:auto;
	/*min-height:650px;*/
	border-top:#954c29 dotted 1px;
	
	padding:20px 20px;
	line-height:2.0;
}

/*進路実績で使用*/
.pageentry .w100{
	width: 100px;
}
.pageentry .w150{
	width: 150px;
}
/*歴史沿革で使用*/
.pageentry .w200{
	width: 200px;
}
.pageentry .w250{
	width: 250px;
}

/*　ページ内容　＞　.card内部　＞　本文　＞　サブタイトル（固定ページ用）　*/
.pageentry .subtitle{
	display:-webkit-flex;
	display:flex;

	/*上下の配置方法*/
	-webkit-align-items:center;
	align-items:center;

	margin:10px 0px 10px 5px;
	padding:2px 0 2px 15px;

	font-weight:500;
	/*text-indent:15px;*/
	letter-spacing:2px;

	border-left:solid 3px;
}


/*　ページ内容　＞　.card内部　＞　本文　＞　テーブルスタイル（固定ページ用）　*/

/*テーブル基本設定の場合*/
.pageentry table td{
	padding: 5px;
}
.pageentry table span{
	display: inline-block;
}

/*テーブルpattern0の場合*/
.pageentry table.pattern0 {
    margin: 20px 0;
    border-collapse: separate;
    border-spacing: 2px 2px;
    border: 1px solid #ddd;
}

.pageentry table.pattern0 th {
	padding: 10px;
	vertical-align: middle;
	text-align: left;
	line-height: 1.5;
	background: #ddd;
}

.pageentry table.pattern0 td {
    padding: 10px;
    vertical-align: middle;
    text-align: left;
	background: #eee;
}

/*テーブルpattern1の場合*/
.pageentry table.pattern1 {
    margin: 20px 0;
    border-collapse: separate;
    border-spacing: 2px 2px;
    border: 1px solid #ddd;
}

.pageentry table.pattern1 th {
	padding: 10px;
	vertical-align: middle;
	text-align: left;
	line-height: 1.5;
	background-image:url("../../images/common/parts/backline1.png");	
	color: #fff;
}

.pageentry table.pattern1 td {
    padding: 10px;
    vertical-align: middle;
    text-align: left;
	background: #eee;
}

/*テーブルpattern2の場合*/
.pageentry table.pattern2 {
    margin: 20px 0;
    border-collapse: separate;
    border-spacing: 2px 2px;
    border: 1px solid #ddd;
}

.pageentry table.pattern2 th {
	padding: 10px;
	vertical-align: middle;
	text-align: left;
	line-height: 1.5;
	background-image:url("../../images/common/parts/backline2.png");	
	color: #fff;
}

.pageentry table.pattern2 td {
    padding: 10px;
    vertical-align: middle;
    text-align: left;
	background: #eee;
}

/*テーブルpattern3の場合*/
.pageentry table.pattern2 {
    margin: 20px 0;
    border-collapse: separate;
    border-spacing: 2px 2px;
    border: 1px solid #ddd;
}

.pageentry table.pattern3 th {
	padding: 10px;
	vertical-align: middle;
	text-align: left;
	line-height: 1.5;
	background-image:url("../../images/common/parts/backline3.png");	
	color: #fff;
}

.pageentry table.pattern3 td {
    padding: 10px;
    vertical-align: middle;
    text-align: left;
	background: #eee;
}


/*文字の配置をクラス指定する場合に使用　校歌　普通科国際科のimg中央に使用*/
.pageentry .textcenter{
	text-align: center;
	padding-top:5px;
	padding-bottom:5px;
}
.pageentry .textright{
	text-align: right;
	padding-top:5px;
	padding-bottom:5px;
}
.pageentry .textleft{
	text-align: left;
	padding-top:5px;
	padding-bottom:5px;
}



/*注意書きの部分*/
.annotate{
	margin-top:10px;
	color:#F33;/*#F6C;*/
	line-height:2.0;
}

.wakutuki{
	/*display:-webkit-flex;
	display:flex;
	-webkit-align-items:center;
	align-items:center;*/

	display: inline-block;
	text-align: center;
	vertical-align: middle;
	
	line-height: 1.0;

	padding:10px;

	letter-spacing:2px;

	border:solid 2px;
}


/*リンク用クラス（クリック時のリンクデータとして活用）*/
.permalink{
	/*display:none;*/
}

/* エラーページ用*/
#errorImage{
	position:relative;
	margin:200px 50px 0px 50px;
}



/************************************************************************************************************************
固定ページ　個別設定
*************************************************************************************************************************/

/*ボタン*/
/* サブコンテンツのボタン内　fontawesome全般 */
#other .btn i{
	margin-right:10px ;
}


#other .pageentry .link{
	padding:20px;
}





/************************************************************************************************************************
投稿ページ共通設定
*************************************************************************************************************************/

/*===============　ページタイトル　===============*/
.topicstitle{
	position:relative;
	width:auto;
	display:block;
	border-left:solid 8px #314566;

	color:#314566;
	font-size:16px;font-size:1.6rem;
	font-weight:500;

	letter-spacing:2px;
	text-align:left;

	padding-left:15px;
	margin-left:10px;
	margin-top:10px;
	margin-bottom:20px;
}

/*===============　投稿ページ内容　===============*/
.topicsentry{
	position:relative;
	width:auto;
	/*min-height:650px;*/
	border-top:#954c29 dotted 1px;
	
	padding:20px 20px;
	line-height:2.0;
}

.topicsentry .w100{
	width: 100px;
}
.topicsentry .w150{
	width: 150px;
}
.topicsentry .w200{
	width: 200px;
}
.topicsentry .w250{
	width: 250px;
}

/*　投稿ページ内容　＞　.card内部　＞　本文　＞　サブタイトル（固定ページ用）　*/
.topicsentry .subtitle{
	display:-webkit-flex;
	display:flex;

	/*上下の配置方法*/
	-webkit-align-items:center;
	align-items:center;

	margin:10px 0px 10px 5px;
	padding:2px 0 2px 15px;

	font-weight:500;
	/*text-indent:15px;*/
	letter-spacing:2px;

	border-left:solid 3px;
}

/*テーブル基本設定の場合*/
.topicsentry table td{
	padding: 5px;
}
.topicsentry table span{
	display: inline-block;
}

/*テーブルpattern0の場合*/
.topicsentry table.pattern0 {
    margin: 20px 0;
    border-collapse: separate;
    border-spacing: 2px 2px;
    border: 1px solid #ddd;
}

.topicsentry table.pattern0 th {
	padding: 10px;
	vertical-align: middle;
	text-align: left;
	line-height: 1.5;
	background: #ddd;
}

.topicsentry table.pattern0 td {
    padding: 10px;
    vertical-align: middle;
    text-align: left;
	background: #eee;
}

/*テーブルpattern1の場合*/
.topicsentry table.pattern1 {
    margin: 20px 0;
    border-collapse: separate;
    border-spacing: 2px 2px;
    border: 1px solid #ddd;
}

.topicsentry table.pattern1 th {
	padding: 10px;
	vertical-align: middle;
	text-align: left;
	line-height: 1.5;
	background-image:url("../../images/common/parts/backline1.png");	
	color: #fff;
}

.topicsentry table.pattern1 td {
    padding: 10px;
    vertical-align: middle;
    text-align: left;
	background: #eee;
}

/*テーブルpattern2の場合*/
.topicsentry table.pattern2 {
    margin: 20px 0;
    border-collapse: separate;
    border-spacing: 2px 2px;
    border: 1px solid #ddd;
}

.topicsentry table.pattern2 th {
	padding: 10px;
	vertical-align: middle;
	text-align: left;
	line-height: 1.5;
	background-image:url("../../images/common/parts/backline2.png");	
	color: #fff;
}

.topicsentry table.pattern2 td {
    padding: 10px;
    vertical-align: middle;
    text-align: left;
	background: #eee;
}

/*テーブルpattern3の場合*/
.topicsentry table.pattern2 {
    margin: 20px 0;
    border-collapse: separate;
    border-spacing: 2px 2px;
    border: 1px solid #ddd;
}

.topicsentry table.pattern3 th {
	padding: 10px;
	vertical-align: middle;
	text-align: left;
	line-height: 1.5;
	background-image:url("../../images/common/parts/backline3.png");	
	color: #fff;
}

.topicsentry table.pattern3 td {
    padding: 10px;
    vertical-align: middle;
    text-align: left;
	background: #eee;
}


/*文字の配置を直接指定する場合に使用*/
.topicsentry .textcenter{
	text-align: center;
	padding-top:5px;
	padding-bottom:5px;
}
.topicsentry .textright{
	text-align: right;
	padding-top:5px;
	padding-bottom:5px;
}
.topicsentry .textleft{
	text-align: left;
	padding-top:5px;
	padding-bottom:5px;
}



/*記事の中の小さい文字用*/
.topicsentry .small{
	margin-top:30px;
	margin-bottom:30px;
	font-size:8px;font-size:0.8rem;
	color:#888;
	line-height:2.0;
}



/* 投稿情報バッジ */
.singleInfo{ /*日付とカテゴリ*/
	position:relative;
	margin:20px 30px 20px 0px;
	color:#fff;
	font-size:10px;	font-size:1.0rem;
	word-wrap:break-word;/*英文の自動改行をさせる為*/
	word-break:break-all;
}

.singleInfo .badge{
	padding: 5px 8px;
}
.singleInfo span{
	margin-right: 10px;
}
.singleInfo span i{
	margin-right: 5px;	
}



/* ページャー */
.pager{
	font-size:10px;font-size:1.0rem;
	margin:10px;
	padding: 0;
}
.pager .previous {
	text-align: left;
}
.pager .next{
	text-align: right;
}
.pager a{
	text-decoration: none;
}
.pager .badge{
	/*display: inline-block; 長いタイトルの場合幅を突き出てしまう対応 */
	padding: 10px 15px;
	margin:10px 10px;
	text-align: center;
	background: #314566;
	color: #FFF;
}
.pager .badge:hover{
	background: #878e9b;
	color: #ccc;
}



/* ページネーション */
.pagination .numall{
	background: #314566 !important;
	color: #FFF !important;	
}
.pagination .current{
	cursor: default;
	background: #314566;
	color: #FFF;
}
.pagination .current:hover{
	cursor: default;
	background: #314566;
	color: #FFF;
}






/************************************************************************************************************************
投稿ページ　【DATE】　設定
*************************************************************************************************************************/
#date .datecard .card-body{
	padding:0;
}
#date .datecard .card-body a{
	display: block;
	padding:20px;
	text-decoration: none;
}
#date .datecard .card-body a:hover{
	background: #f3f3f3;
}
#date .datecard .card-body .topicsentry{
	padding-bottom:0;
}


/************************************************************************************************************************
投稿ページ　【CATEGORY】　設定
*************************************************************************************************************************/
#category .categorycard .card-body{
	/*margin-bottom:10px;*/
	padding:0;
}
#category .categorycard .card-body a{
	display: block;
	padding:20px;
	text-decoration: none;
}
#category .categorycard .card-body a:hover{
	background: #f3f3f3;
}

#category .categorycard .card-body .topicsentry{
	padding-bottom:0;
}


/************************************************************************************************************************
ビジュアル投稿パネル用　設定
*************************************************************************************************************************/

/*投稿イメージの設定部分*/
/*デフォルト設定部分*/
img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
img.alignright {
	margin: 5px 0 5px 20px;
	display: inline;
}

img.alignleft {
	margin: 5px 20px 5px 0;
	display: inline;
}

.alignright {
	float: right;
}

.alignleft {
	float: left
}








/* > lg(992)の場合*/
@media screen and (max-width: 991px) {
}

/* md(768) < の場合*/
@media screen and (min-width: 768px) {
}

/* > md(768)の場合*/
@media screen and (max-width: 767px) {
	.pageentry .w100{
		width: 75px;
	}
	.pageentry .w150{
		width: 113px;
	}
	.pageentry .w200{
		width: 150px;
	}
	.pageentry .w250{
		width: 188px;
	}
	.topicsentry .w100{
		width: 75px;
	}
	.topicsentry .w150{
		width: 113px;
	}
	.topicsentry .w200{
		width: 150px;
	}
	.topicsentry .w250{
		width: 188px;
	}
}

/* > sm(576)の場合*/
@media screen and (max-width: 575px) {
	.pager .previous {
		text-align: center;
	}
	.pager .next{
		text-align: center;
	}

	.pageentry{
		padding:20px 10px;
		line-height:2.0;
	}
	.topicsentry{		
		padding:20px 10px;
		line-height:2.0;
	}


	.pageentry .w100{
		width: 50px;
	}
	.pageentry .w150{
		width: 75px;
	}
	.pageentry .w200{
		width: 100px;
	}
	.pageentry .w250{
		width: 125px;
	}
	.topicsentry .w100{
		width: 50px;
	}
	.topicsentry .w150{
		width: 75px;
	}
	.topicsentry .w200{
		width: 100px;
	}
	.topicsentry .w250{
		width: 125px;
	}

}



/************************************************************************************************************************
サブページ【 共通 】サイドメニュー設定
*************************************************************************************************************************/

/*サブコンテンツのサブメニューカード設定*/
.card.submenu .card-header{
	display:-webkit-flex;
	display:flex;
	
	-webkit-flex-direction:column; /* Safari */
	flex-direction:column;

	/*上下の配置方法*/
	-webkit-align-items:center;
	align-items:center;
		
	/*左右の配置方法*/
	-webkit-justify-content:center; /* Safari */
	justify-content:center;

	/*複数行の左右の配置方法*/
	-webkit-align-content:center; /* Safari */
	align-content:center;

	padding-top:20px;
	padding-bottom:20px;

	background-color: #314566;
	font-size:14px;font-size:1.4rem !important;
	font-weight: 400;
	color: #FFF;
}
.card.submenu .card-header .en{
	color: #ddd;
	font-size:5px;font-size:0.5rem !important;
	font-weight: 200;
	letter-spacing: 0.1em;
	margin-bottom: 0;
}
.card.submenu .card-body{
	padding-top:5px;
	padding-bottom:5px;
}

/*サブコンテンツのピックアップメニューカード設定*/
.card.pickupmenu .card-header{
	display:-webkit-flex;
	display:flex;
	
	-webkit-flex-direction:column; /* Safari */
	flex-direction:column;

	/*上下の配置方法*/
	-webkit-align-items:center;
	align-items:center;
		
	/*左右の配置方法*/
	-webkit-justify-content:center; /* Safari */
	justify-content:center;

	/*複数行の左右の配置方法*/
	-webkit-align-content:center; /* Safari */
	align-content:center;

	padding-top:15px;
	padding-bottom:15px;

	background-color: #fff;
	font-size:9px;font-size:0.9rem !important;
	font-weight:400;
	/*color: #FFF;*/
}
.card.pickupmenu .card-header .en{
	color: #888;
	font-size:5px;font-size:0.5rem !important;
	font-weight: 200;
	letter-spacing: 0.1em;
	margin-bottom: 0;
}
.card.pickupmenu .card-body{
	padding-top:5px;
	padding-bottom:5px;
}



/*サブコンテンツのサブナビゲーションの中身（submenu&pickupの中身）*/
#subnav ul{
	margin: 0;
	padding: 0;

	display:-webkit-flex;
	display:flex;

	-webkit-flex-direction:column; /* Safari */
	flex-direction:column;
	
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:         wrap;
}
#subnav ul li{
	/*padding: 5px 30px;*/
	/*line-height: 1.5;*/
	padding: 0;
	width:100%;	
}
#subnav ul li:not(:last-child){
	border-bottom:solid 1px #eee;
}

#subnav ul li a{
	font-size:9px;font-size:0.9rem;
	/*font-weight: 500;*/
	letter-spacing: 0.1em;
 	color:#666;

 	display: block;
 	width:100%;
 	height:100%;
 	
	line-height: 1.5;
	text-align:left;
	
	padding: 20px 5px;
	text-decoration:none;
}
#subnav ul li a:hover{
	/*color:#888;*/
	background: #f3f3f3;
}
#subnav ul li a i{
	margin-right:10px;
}

.submenu #subnav ul li a i{
	color:#314566;
}
.pickupmenu #subnav ul li a i{
	color:#843333;
}




/************************************************************************************************************************
個別ページ【 page-〇〇.php 】サイドメニュー設定
*************************************************************************************************************************/
/*無し*/


/************************************************************************************************************************
シングルページ【 single.php/category.php/date.php 】サイドメニュー設定
*************************************************************************************************************************/
/*===============　ウィジェットナビ部分の共通設定　===============*/

/*サブコンテンツのサブナビゲーションの中身（submenu&pickupの中身）*/
#widgetnav ul.menu{
	margin: 0;
	padding: 0;
}
#widgetnav .widget:not(:last-child){/*各ウィジェットコンテンツ*/
	padding-bottom:15px;
	margin-bottom:20px;
}

#widgetnav .widget .widgettitle{/*各ウィジェットコンテンツのタイトル*/
	position:relative;
	width:100%;
	
	text-align:center;

	font-size:12px;font-size:1.2rem;
	font-weight:500;
	letter-spacing:2px;

	margin-top:10px;
	margin-bottom:10px;
	padding-top:5px;
	padding-bottom:5px;
	
	border:solid 1px #999;
}
#widgetnav .widget ul{
	margin: 0;
	padding: 0;

	display:-webkit-flex;
	display:flex;

	-webkit-flex-direction:column; /* Safari */
	flex-direction:column;
	
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:         wrap;
}
#widgetnav .widget ul li{
	/*padding: 5px 30px;*/
	/*line-height: 1.5;*/
	padding: 0;
	width:100%;	
}
#widgetnav .widget ul li:not(:last-child){
	border-bottom:solid 1px #eee;
}

#widgetnav .widget ul li a{
	font-size:9px;font-size:0.9rem;
	/*font-weight: 500;*/
	letter-spacing: 0.1em;
 	color:#666;

 	display: block;
 	width:100%;
 	height:100%;
 	
	line-height: 1.5;
	text-align:left;
	
	padding: 20px 5px;
	text-decoration:none;
}
#widgetnav .widget ul li a:hover{
	/*color:#888;*/
	background: #f3f3f3;
}
#widgetnav .widget ul li a i{
	margin-right:10px;
}
.submenu #widgetnav .widget ul li a i{
	color:#314566;
}


/*===============　リセントエントリー（最近の投稿）設定部分　===============*/

/*===============　カテゴリー設定部分　===============*/

/*===============　カレンダー設定部分　===============*/
.widget_calendar{
	display: block;
}
#calendar_wrap{
	display: block;
	overflow: auto;
}
#wp-calendar{
	position:relative;
	width:100%;
	text-align:center;
	font-size:9px;font-size:0.9rem;
	line-height: 2;
}
#wp-calendar th{
	text-align:center;
}
#wp-calendar a{
	font-weight:700;
}
#wp-calendar a:hover{
	font-weight:700;
	color:#9C0;
}
#wp-calendar #prev{
	text-align:left;
}
#wp-calendar #next{
	text-align:right;
}

#wp-calendar thead{
}
#wp-calendar tfoot{
}